Uses of Class
org.optaplanner.core.api.solver.SolverFactory
-
-
Uses of SolverFactory in org.optaplanner.benchmark.api
Methods in org.optaplanner.benchmark.api with parameters of type SolverFactory Modifier and Type Method Description static <Solution_>
PlannerBenchmarkFactoryPlannerBenchmarkFactory. createFromSolverFactory(SolverFactory<Solution_> solverFactory)
Deprecated.static <Solution_>
PlannerBenchmarkFactoryPlannerBenchmarkFactory. createFromSolverFactory(SolverFactory<Solution_> solverFactory, File benchmarkDirectory)
Deprecated. -
Uses of SolverFactory in org.optaplanner.core.api.score
Methods in org.optaplanner.core.api.score with parameters of type SolverFactory Modifier and Type Method Description static <Solution_>
ScoreManager<Solution_>ScoreManager. create(SolverFactory<Solution_> solverFactory)
Uses aSolverFactory
to build aScoreManager
. -
Uses of SolverFactory in org.optaplanner.core.api.solver
Methods in org.optaplanner.core.api.solver that return SolverFactory Modifier and Type Method Description abstract SolverFactory<Solution_>
SolverFactory. cloneSolverFactory()
Deprecated.in favor ofSolverConfig(SolverConfig)
andcreate(SolverConfig)
.static <Solution_>
SolverFactory<Solution_>SolverFactory. create(SolverConfig solverConfig)
Uses aSolverConfig
to build aSolverFactory
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createEmpty()
Deprecated.in favor ofSolverConfig()
andcreate(SolverConfig)
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createEmpty(ClassLoader classLoader)
Deprecated.in favor ofSolverConfig(ClassLoader)
andcreate(SolverConfig)
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createEmptyFromKieContainer(org.kie.api.builder.ReleaseId releaseId)
static <Solution_>
SolverFactory<Solution_>SolverFactory. createEmptyFromKieContainer(org.kie.api.runtime.KieContainer kieContainer)
static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromKieContainer(org.kie.api.runtime.KieContainer kieContainer, SolverConfig solverConfig)
static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromKieContainerXmlResource(String solverConfigResource)
UsesKieServices.getKieClasspathContainer()
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromKieContainerXmlResource(org.kie.api.builder.ReleaseId releaseId, String solverConfigResource)
static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromKieContainerXmlResource(org.kie.api.runtime.KieContainer kieContainer, String solverConfigResource)
static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlFile(File solverConfigFile)
Reads an XML solver configuration from the file system and uses thatSolverConfig
to build aSolverFactory
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlFile(File solverConfigFile, ClassLoader classLoader)
As defined bycreateFromXmlFile(File)
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlInputStream(InputStream in)
Deprecated.in favor ofSolverConfig.createFromXmlInputStream(InputStream)
andcreate(SolverConfig)
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlInputStream(InputStream in, ClassLoader classLoader)
Deprecated.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlReader(Reader reader)
Deprecated.in favor ofSolverConfig.createFromXmlReader(Reader)
andcreate(SolverConfig)
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlReader(Reader reader, ClassLoader classLoader)
Deprecated.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlResource(String solverConfigResource)
Reads an XML solver configuration from the classpath and uses thatSolverConfig
to build aSolverFactory
.static <Solution_>
SolverFactory<Solution_>SolverFactory. createFromXmlResource(String solverConfigResource, ClassLoader classLoader)
As defined bycreateFromXmlResource(String)
.Methods in org.optaplanner.core.api.solver with parameters of type SolverFactory Modifier and Type Method Description static <Solution_,ProblemId_>
SolverManager<Solution_,ProblemId_>SolverManager. create(SolverFactory<Solution_> solverFactory, SolverManagerConfig solverManagerConfig)
-
Uses of SolverFactory in org.optaplanner.core.impl.solver
Subclasses of SolverFactory in org.optaplanner.core.impl.solver Modifier and Type Class Description class
DefaultSolverFactory<Solution_>
Methods in org.optaplanner.core.impl.solver that return SolverFactory Modifier and Type Method Description SolverFactory<Solution_>
DefaultSolverFactory. cloneSolverFactory()
Deprecated.SolverFactory<Solution_>
DefaultSolverManager. getSolverFactory()
Constructors in org.optaplanner.core.impl.solver with parameters of type SolverFactory Constructor Description DefaultSolverManager(SolverFactory<Solution_> solverFactory, SolverManagerConfig solverManagerConfig)
-
Uses of SolverFactory in org.optaplanner.test.impl.score
Constructors in org.optaplanner.test.impl.score with parameters of type SolverFactory Constructor Description AbstractScoreVerifier(SolverFactory<Solution_> solverFactory, Class<? extends Score> expectedScoreClass)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.bendable
Constructors in org.optaplanner.test.impl.score.buildin.bendable with parameters of type SolverFactory Constructor Description BendableScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.bendablebigdecimal
Constructors in org.optaplanner.test.impl.score.buildin.bendablebigdecimal with parameters of type SolverFactory Constructor Description BendableBigDecimalScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.bendablelong
Constructors in org.optaplanner.test.impl.score.buildin.bendablelong with parameters of type SolverFactory Constructor Description BendableLongScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.hardmediumsoft
Constructors in org.optaplanner.test.impl.score.buildin.hardmediumsoft with parameters of type SolverFactory Constructor Description HardMediumSoftScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.hardmediumsoftlong
Constructors in org.optaplanner.test.impl.score.buildin.hardmediumsoftlong with parameters of type SolverFactory Constructor Description HardMediumSoftLongScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.hardsoft
Constructors in org.optaplanner.test.impl.score.buildin.hardsoft with parameters of type SolverFactory Constructor Description HardSoftScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.hardsoftbigdecimal
Constructors in org.optaplanner.test.impl.score.buildin.hardsoftbigdecimal with parameters of type SolverFactory Constructor Description HardSoftBigDecimalScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.hardsoftlong
Constructors in org.optaplanner.test.impl.score.buildin.hardsoftlong with parameters of type SolverFactory Constructor Description HardSoftLongScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.simple
Constructors in org.optaplanner.test.impl.score.buildin.simple with parameters of type SolverFactory Constructor Description SimpleScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.simplebigdecimal
Constructors in org.optaplanner.test.impl.score.buildin.simplebigdecimal with parameters of type SolverFactory Constructor Description SimpleBigDecimalScoreVerifier(SolverFactory<Solution_> solverFactory)
-
Uses of SolverFactory in org.optaplanner.test.impl.score.buildin.simplelong
Constructors in org.optaplanner.test.impl.score.buildin.simplelong with parameters of type SolverFactory Constructor Description SimpleLongScoreVerifier(SolverFactory<Solution_> solverFactory)
-