org.opt4j.tutorial.minones.MinOnesModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opt4j-tutorial Show documentation
Show all versions of opt4j-tutorial Show documentation
The tutorial classes for Opt4J
package org.opt4j.tutorial.minones;
import org.opt4j.core.config.annotations.Parent;
import org.opt4j.core.problem.ProblemModule;
import org.opt4j.tutorial.TutorialModule;
@Parent(TutorialModule.class)
public class MinOnesModule extends ProblemModule {
public void config() {
bindProblem(MinOnesDecoder.class, MinOnesDecoder.class, MinOnesEvaluator.class);
}
}