String res = "";
for (Triple<String, Double, Double> pbd : ilsObserver.getMinList()) {
res +=
"(" + ilsObserver.getTheta(pbd.getA()) + ", " + pbd.getB() + ") ; ";
}
ResultReportSection min = new ResultReportSection("Minimum Thetas", res);
section.addSubSection(min);
}