org.drools.planner.examples.examination.benchmark.examinationStepLimitSolverBenchmarkConfig.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of drools-planner-examples Show documentation
Show all versions of drools-planner-examples Show documentation
Drools Planner optimizes automated planning by combining metaheuristic search algorithms with rule
engine powered score calculation. This is the drools-planner-examples module which contains examples on how to use
Drools Planner.
<?xml version="1.0" encoding="UTF-8"?> <solverBenchmarkSuite> <benchmarkDirectory>local/data/examination</benchmarkDirectory> <solverStatisticType>BEST_SOLUTION_CHANGED</solverStatisticType> <inheritedSolverBenchmark> <unsolvedSolutionFile>data/examination/unsolved/exam_comp_set1_initialized.xml</unsolvedSolutionFile> <solver> <!--<environmentMode>DEBUG</environmentMode>--> <solutionClass>org.drools.planner.examples.examination.domain.Examination</solutionClass> <planningEntityClass>org.drools.planner.examples.examination.domain.Exam</planningEntityClass> <scoreDrl>/org/drools/planner/examples/examination/solver/examinationScoreRules.drl</scoreDrl> <scoreDefinition> <scoreDefinitionType>HARD_AND_SOFT</scoreDefinitionType> </scoreDefinition> <termination> <maximumStepCount>70</maximumStepCount> </termination> <customSolverPhase> <customSolverPhaseCommandClass>org.drools.planner.examples.examination.solver.solution.initializer.ExaminationStartingSolutionInitializer</customSolverPhaseCommandClass> </customSolverPhase> </solver> </inheritedSolverBenchmark> <solverBenchmark> <solver> <localSearch> <selector> <selector> <moveFactoryClass>org.drools.planner.examples.examination.solver.move.factory.PeriodChangeMoveFactory</moveFactoryClass> </selector> <selector> <moveFactoryClass>org.drools.planner.examples.examination.solver.move.factory.RoomChangeMoveFactory</moveFactoryClass> </selector> <selector> <moveFactoryClass>org.drools.planner.examples.examination.solver.move.factory.ExamSwitchMoveFactory</moveFactoryClass> </selector> </selector> <acceptor> <completeSolutionTabuSize>1000</completeSolutionTabuSize> <completePropertyTabuSize>10</completePropertyTabuSize> </acceptor> <forager> <pickEarlyType>NEVER</pickEarlyType> <minimalAcceptedSelection>1400</minimalAcceptedSelection><!-- TODO tweak me --> </forager> </localSearch> </solver> </solverBenchmark> </solverBenchmarkSuite>