We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 755bd48 commit 83149d3Copy full SHA for 83149d3
1 file changed
core/src/main/kotlin/org/evomaster/core/search/algorithms/MosaAlgorithm.kt
@@ -8,6 +8,7 @@ import org.evomaster.core.logging.LoggingUtil
8
import java.util.ArrayList
9
10
11
+
12
/**
13
* Implementation of MOSA from
14
* "Automated Test Case Generation as a Many-Objective Optimisation Problem with Dynamic
@@ -243,7 +244,7 @@ class MosaAlgorithm<T> : SearchAlgorithm<T>() where T : Individual {
243
244
else if (dominatesX)
245
return -1
246
- else // (dominatesY)
247
+ else (dominatesY)
248
return +1
249
}
250
0 commit comments