org.drools.planner.examples.curriculumcourse.solver.curriculumCourseSolverConfig.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"?> <solver> <!--<environmentMode>DEBUG</environmentMode>--> <solutionClass>org.drools.planner.examples.curriculumcourse.domain.CurriculumCourseSchedule</solutionClass> <planningEntityClass>org.drools.planner.examples.curriculumcourse.domain.Lecture</planningEntityClass> <scoreDirectorFactory> <scoreDefinitionType>HARD_AND_SOFT</scoreDefinitionType> <scoreDrl>/org/drools/planner/examples/curriculumcourse/solver/curriculumCourseScoreRules.drl</scoreDrl> </scoreDirectorFactory> <termination> <!-- Official benchmark maximumSecondsSpend allowed on: ge0ffrey's main pc: 429 ge0ffrey's old pc: 1152 --> <maximumSecondsSpend>429</maximumSecondsSpend> <!--<scoreAttained>-0hard/-999999soft</scoreAttained>--> </termination> <constructionHeuristic> <constructionHeuristicType>BEST_FIT_DECREASING</constructionHeuristicType> <!--<constructionHeuristicPickEarlyType>FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING</constructionHeuristicPickEarlyType>--> </constructionHeuristic> <localSearch> <unionMoveSelector> <moveListFactory> <cacheType>PHASE</cacheType> <selectionOrder>SHUFFLED</selectionOrder> <moveListFactoryClass>org.drools.planner.examples.curriculumcourse.solver.move.factory.PeriodChangeMoveFactory</moveListFactoryClass> </moveListFactory> <moveListFactory> <cacheType>PHASE</cacheType> <selectionOrder>SHUFFLED</selectionOrder> <moveListFactoryClass>org.drools.planner.examples.curriculumcourse.solver.move.factory.RoomChangeMoveFactory</moveListFactoryClass> </moveListFactory> <moveListFactory> <cacheType>PHASE</cacheType> <selectionOrder>SHUFFLED</selectionOrder> <moveListFactoryClass>org.drools.planner.examples.curriculumcourse.solver.move.factory.LectureSwapMoveFactory</moveListFactoryClass> </moveListFactory> </unionMoveSelector> <acceptor> <planningEntityTabuSize>10</planningEntityTabuSize> </acceptor> <forager> <minimalAcceptedSelection>900</minimalAcceptedSelection><!-- TODO tweak me --> </forager> </localSearch> </solver>