You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -274,21 +279,36 @@ public void operationFeedback(String message, typedef.typeOfProcessFeedback feed
274
279
} elseif (foundOptima.size() > 1) {
275
280
//Not unique
276
281
listener.operationFeedback("Selected Target is not unique There are " + foundOptima.size() + " same targets.", typedef.typeOfProcessFeedback.TargetValueNotUnique);
277
-
support.log("The distance to target is: "+ oldDistance, typeOfLogLevel.INFO);
282
+
support.log("The distance to target is: "+ oldDistance, typeOfLogLevel.INFO);
278
283
} elseif (foundOptima.size() == 1) {
279
284
//Exactly one optimum with selected target value was found
280
285
if (oldDistance > 0.0) {
281
286
//distance not zero --> will adapt selected optimum!
282
287
listener.operationFeedback("Target is unique, will change target value to match distance of 0.0.", typedef.typeOfProcessFeedback.TargetCheckSuccessful);
283
-
support.log("Old distance to target is: "+ oldDistance, typeOfLogLevel.INFO);
288
+
support.log("Old distance to target is: "+ oldDistance, typeOfLogLevel.INFO);
284
289
285
290
} else {
286
291
listener.operationFeedback("Target is unique and distance is 0.0!", typedef.typeOfProcessFeedback.TargetCheckSuccessful);
287
292
}
288
293
}
294
+
support.log("Target value(s) found at: ", typeOfLogLevel.RESULT);
295
+
for (inti = 0; i < foundOptima.size(); i++) {
296
+
support.log("Parameterset: " + i, typeOfLogLevel.RESULT);
297
+
for (intc = 0; c < foundOptima.get(i).getListOfParameters().size(); c++) {
298
+
if (foundOptima.get(i).getListOfParameters().get(c).isIteratable()) {
0 commit comments