issues
search
tanzairatier
/
jmoo2
JMOO = Joe's Multi Objective Optimization. Provides a python-based library of usable problems, algorithms, and tools for composition of valuable MOO-research.
1
stars
0
forks
source link
(design and) implement way for jmoo to run algorithms
#2
Closed
tanzairatier
closed
7 years ago
tanzairatier
commented
7 years ago
Basic code flow:
myJmoo = Jmoo.core()
myJmoo.set_algorithms_to_run(RAND, NSGA, NSGAII)
myJmoo.set_problems_to_run(Fonseca, Schaffer, Constrex)
myJmoo.set_stats_to_track(Median, Evaluations, Diversity)
myJmoo.run()
Basic code flow: