-
Notifications
You must be signed in to change notification settings - Fork 94
New genetic algorithms #1238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
New genetic algorithms #1238
Conversation
@amidgol what status with this PR? |
hi @amidgol there are conflicts in 1 file. please resolve them |
Hi @arcuri82 , It should be ok now. |
@@ -1367,6 +1367,10 @@ class EMConfig { | |||
@Min(1.0) | |||
var populationSize = 30 | |||
|
|||
@Cfg("Fixed mutation rate") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that is just repeating the name of the variable with spaces between words... need to provide some more info.
import org.evomaster.core.search.algorithms.wts.WtsEvalIndividual | ||
import org.evomaster.core.search.service.SearchAlgorithm | ||
import kotlin.math.max | ||
//Note that this class is not fully tested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put a TODO
here
import org.evomaster.core.EMConfig | ||
import org.evomaster.core.search.Individual | ||
import org.evomaster.core.search.algorithms.wts.WtsEvalIndividual | ||
//Note that this class is not fully tested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put a TODO
here
import org.evomaster.core.search.algorithms.wts.WtsEvalIndividual | ||
import org.evomaster.core.search.service.SearchAlgorithm | ||
import kotlin.math.max | ||
//Note that this class is not fully tested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put a TODO
here
@@ -1124,7 +1124,7 @@ class EMConfig { | |||
var avoidNonDeterministicLogs = false | |||
|
|||
enum class Algorithm { | |||
DEFAULT, SMARTS, MIO, RANDOM, WTS, MOSA, RW | |||
DEFAULT, SMARTS, MIO, RANDOM, WTS, MOSA, RW, StandardGA, MonotonicGA, SteadyStateGA |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a comment stating these 3 are still work-in-progress
No description provided.