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
listener.operationFeedback("Selected Target is not unique There are " + foundOptima.size() + " same targets.", typedef.typeOfProcessFeedback.TargetValueNotUnique);
341
-
support.log("The distance to target is: " + oldDistance, typeOfLogLevel.INFO);
342
-
} elseif (foundOptima.size() == 1) {
343
-
//Exactly one optimum with selected target value was found
344
-
listener.operationFeedback("Target is unique!", typedef.typeOfProcessFeedback.TargetCheckSuccessful);
345
-
}
346
334
support.log("Target value(s) found at: ", typeOfLogLevel.RESULT);
347
335
for (inti = 0; i < foundOptima.size(); i++) {
348
336
support.log("Parameterset: " + i, typeOfLogLevel.RESULT);
@@ -357,6 +345,20 @@ public void operationFeedback(String message, typedef.typeOfProcessFeedback feed
357
345
support.log("Will set targetvalue to: " + calculatedOptimum.getMeasureValueByMeasureName(targetMeasure.getMeasureName()), typeOfLogLevel.RESULT);
listener.operationFeedback("Selected Target is not unique There are " + foundOptima.size() + " same targets.", typedef.typeOfProcessFeedback.TargetValueNotUnique);
356
+
support.log("The distance to target is: " + oldDistance, typeOfLogLevel.INFO);
357
+
} elseif (foundOptima.size() == 1) {
358
+
//Exactly one optimum with selected target value was found
359
+
listener.operationFeedback("Target is unique!", typedef.typeOfProcessFeedback.TargetCheckSuccessful);
360
+
}
361
+
360
362
break;
361
363
caseSimulationCanceled:
362
364
support.log("Simulation aborted during targetcheck.", typeOfLogLevel.INFO);
0 commit comments