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
for (inti = 1; i < simulationResults.size(); i++) {
290
+
support.spinInLabel();
291
+
support.log("Value of measure is: " + String.valueOf(simulationResults.get(i).getMeasureValueByMeasureName(targetMeasure.getMeasureName())), typeOfLogLevel.VERBOSE);
292
+
if (oldDistance > simulationResults.get(i).getMeasureValueByMeasureName(targetMeasure.getMeasureName())) {
for (inti = 1; i < simulationResults.size(); i++) {
306
+
support.spinInLabel();
307
+
support.log("Value of measure is: " + String.valueOf(simulationResults.get(i).getMeasureValueByMeasureName(targetMeasure.getMeasureName())), typeOfLogLevel.VERBOSE);
308
+
if (oldDistance < simulationResults.get(i).getMeasureValueByMeasureName(targetMeasure.getMeasureName())) {
listener.operationFeedback("Selected Target is not unique There are " + foundOptima.size() + " same targets.", typedef.typeOfProcessFeedback.TargetValueNotUnique);
@@ -303,8 +344,8 @@ public void operationFeedback(String message, typedef.typeOfProcessFeedback feed
303
344
//Exactly one optimum with selected target value was found
304
345
if (oldDistance > 0.0) {
305
346
//distance not zero --> will adapt selected optimum!
306
-
listener.operationFeedback("Target is unique, will change target value to match distance of 0.0.", typedef.typeOfProcessFeedback.TargetCheckSuccessful);
307
-
support.log("Old distance to target is: " + oldDistance, typeOfLogLevel.INFO);
347
+
listener.operationFeedback("Target is unique, but distance is not 0.0.", typedef.typeOfProcessFeedback.TargetCheckSuccessful);
348
+
support.log("Distance to target is: " + oldDistance, typeOfLogLevel.INFO);
308
349
309
350
} else {
310
351
listener.operationFeedback("Target is unique and distance is 0.0!", typedef.typeOfProcessFeedback.TargetCheckSuccessful);
0 commit comments