org.drools.planner.examples.nqueens.benchmark.nqueensBenchmarkConfig.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"?> <plannerBenchmark> <benchmarkDirectory>local/data/nqueens</benchmarkDirectory> <parallelBenchmarkCount>AUTO</parallelBenchmarkCount> <warmUpSecondsSpend>30</warmUpSecondsSpend> <inheritedSolverBenchmark> <problemBenchmarks> <xstreamAnnotatedClass>org.drools.planner.examples.nqueens.domain.NQueens</xstreamAnnotatedClass> <inputSolutionFile>data/nqueens/unsolved/unsolvedNQueens32.xml</inputSolutionFile> <inputSolutionFile>data/nqueens/unsolved/unsolvedNQueens64.xml</inputSolutionFile> <writeOutputSolutionEnabled>true</writeOutputSolutionEnabled> <problemStatisticType>BEST_SOLUTION_CHANGED</problemStatisticType> </problemBenchmarks> <solver> <solutionClass>org.drools.planner.examples.nqueens.domain.NQueens</solutionClass> <planningEntityClass>org.drools.planner.examples.nqueens.domain.Queen</planningEntityClass> <scoreDirectorFactory> <scoreDefinitionType>SIMPLE</scoreDefinitionType> <scoreDrl>/org/drools/planner/examples/nqueens/solver/nQueensScoreRules.drl</scoreDrl> </scoreDirectorFactory> <termination> <terminationCompositionStyle>OR</terminationCompositionStyle> <scoreAttained>0</scoreAttained> <maximumSecondsSpend>20</maximumSecondsSpend> </termination> </solver> </inheritedSolverBenchmark> <solverBenchmark> <name>FIRST_FIT</name> <solver> <constructionHeuristic> <constructionHeuristicType>FIRST_FIT</constructionHeuristicType> <constructionHeuristicPickEarlyType>FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING</constructionHeuristicPickEarlyType> </constructionHeuristic> </solver> </solverBenchmark> <solverBenchmark> <name>FIRST_FIT_DECREASING</name> <solver> <constructionHeuristic> <constructionHeuristicType>FIRST_FIT_DECREASING</constructionHeuristicType> <constructionHeuristicPickEarlyType>FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING</constructionHeuristicPickEarlyType> </constructionHeuristic> </solver> </solverBenchmark> <solverBenchmark> <name>BEST_FIT</name> <solver> <constructionHeuristic> <constructionHeuristicType>BEST_FIT</constructionHeuristicType> <constructionHeuristicPickEarlyType>FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING</constructionHeuristicPickEarlyType> </constructionHeuristic> </solver> </solverBenchmark> <solverBenchmark> <name>BEST_FIT_DECREASING</name> <solver> <constructionHeuristic> <constructionHeuristicType>BEST_FIT_DECREASING</constructionHeuristicType> <constructionHeuristicPickEarlyType>FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING</constructionHeuristicPickEarlyType> </constructionHeuristic> </solver> </solverBenchmark> <solverBenchmark> <name>Entity tabu</name> <solver> <constructionHeuristic> <constructionHeuristicType>FIRST_FIT_DECREASING</constructionHeuristicType> <constructionHeuristicPickEarlyType>FIRST_LAST_STEP_SCORE_EQUAL_OR_IMPROVING</constructionHeuristicPickEarlyType> </constructionHeuristic> <localSearch> <changeMoveSelector> <selectionOrder>ORIGINAL</selectionOrder> </changeMoveSelector> <acceptor> <planningEntityTabuSize>5</planningEntityTabuSize> </acceptor> <forager> </forager> </localSearch> </solver> </solverBenchmark> </plannerBenchmark>