Skip to content
Snippets Groups Projects
Commit 2619ab88 authored by Johannes Mey's avatar Johannes Mey
Browse files

add both random and genetic to benchmarks. note, that gnetic ignores the...

add both random and genetic to benchmarks. note, that gnetic ignores the timeout and random always times out. also, tests take VERY long with genetic.
parent 972705e3
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ import de.tudresden.inf.st.mquat.solving.BenchmarkableSolver; ...@@ -4,6 +4,7 @@ import de.tudresden.inf.st.mquat.solving.BenchmarkableSolver;
import de.tudresden.inf.st.mquat.solving.ilp.ILPDirectSolver; import de.tudresden.inf.st.mquat.solving.ilp.ILPDirectSolver;
import de.tudresden.inf.st.mquat.solving.ilp.ILPExternalSolver; import de.tudresden.inf.st.mquat.solving.ilp.ILPExternalSolver;
import de.tudresden.inf.st.mquat.solving.genetic.GeneticSolver; import de.tudresden.inf.st.mquat.solving.genetic.GeneticSolver;
import de.tudresden.inf.st.mquat.solving.random.RandomSolver;
import de.tudresden.inf.st.mquat.solving.simple.SimpleSolver; import de.tudresden.inf.st.mquat.solving.simple.SimpleSolver;
import ir.ac.ui.eng.ACOSolver; import ir.ac.ui.eng.ACOSolver;
import uniks.EMFeRSolver; import uniks.EMFeRSolver;
...@@ -30,6 +31,7 @@ public class SolverFactory { ...@@ -30,6 +31,7 @@ public class SolverFactory {
new ILPExternalSolver(), new ILPExternalSolver(),
new ILPDirectSolver(), new ILPDirectSolver(),
new SimpleSolver(), new SimpleSolver(),
new RandomSolver(),
new GeneticSolver() new GeneticSolver()
).collect(Collectors.toMap(BenchmarkableSolver::getName, Function.identity())); ).collect(Collectors.toMap(BenchmarkableSolver::getName, Function.identity()));
} }
......
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
"emfer", "emfer",
"ilp-direct", "ilp-direct",
// "ilp-external", // "ilp-external",
"random",
"genetic",
"simple" "simple"
], ],
"timeoutValue": 15, "timeoutValue": 15,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment