/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.optaplanner.core.impl.heuristic.selector.move.generic.chained; import java.util.Arrays; import org.junit.Test; import org.optaplanner.core.impl.domain.solution.descriptor.SolutionDescriptor; import org.optaplanner.core.impl.domain.variable.anchor.AnchorVariableDemand; import org.optaplanner.core.impl.domain.variable.anchor.AnchorVariableSupply; import org.optaplanner.core.impl.domain.variable.descriptor.GenuineVariableDescriptor; import org.optaplanner.core.impl.domain.variable.inverserelation.SingletonInverseVariableDemand; import org.optaplanner.core.impl.domain.variable.inverserelation.SingletonInverseVariableSupply; import org.optaplanner.core.impl.heuristic.selector.SelectorTestUtils; import org.optaplanner.core.impl.score.director.InnerScoreDirector; import org.optaplanner.core.impl.testdata.domain.chained.TestdataChainedAnchor; import org.optaplanner.core.impl.testdata.domain.chained.TestdataChainedEntity; import org.optaplanner.core.impl.testdata.domain.chained.TestdataChainedSolution; import org.optaplanner.core.impl.testdata.util.PlannerTestUtils; import static org.junit.Assert.*; public class TailChainSwapMoveTest { @Test public void isMoveDoable() { GenuineVariableDescriptor<TestdataChainedSolution> variableDescriptor = TestdataChainedEntity.buildVariableDescriptorForChainedObject(); SolutionDescriptor<TestdataChainedSolution> solutionDescriptor = variableDescriptor.getEntityDescriptor().getSolutionDescriptor(); InnerScoreDirector<TestdataChainedSolution> scoreDirector = PlannerTestUtils.mockScoreDirector(solutionDescriptor); TestdataChainedAnchor a0 = new TestdataChainedAnchor("a0"); TestdataChainedEntity a1 = new TestdataChainedEntity("a1", a0); TestdataChainedEntity a2 = new TestdataChainedEntity("a2", a1); TestdataChainedEntity a3 = new TestdataChainedEntity("a3", a2); TestdataChainedAnchor b0 = new TestdataChainedAnchor("b0"); TestdataChainedEntity b1 = new TestdataChainedEntity("b1", b0); TestdataChainedSolution solution = new TestdataChainedSolution("solution"); solution.setChainedAnchorList(Arrays.asList(a0, b0)); solution.setChainedEntityList(Arrays.asList(a1, a2, a3, b1)); scoreDirector.setWorkingSolution(solution); SingletonInverseVariableSupply inverseVariableSupply = scoreDirector.getSupplyManager() .demand(new SingletonInverseVariableDemand(variableDescriptor)); AnchorVariableSupply anchorVariableSupply = scoreDirector.getSupplyManager() .demand(new AnchorVariableDemand(variableDescriptor)); assertEquals(true, new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a2, b0).isMoveDoable(scoreDirector)); assertEquals(true, new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, b1, a1).isMoveDoable(scoreDirector)); assertEquals(true, new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a1, a2).isMoveDoable(scoreDirector)); assertEquals(true, new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a3, a0).isMoveDoable(scoreDirector)); assertEquals(false, new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a1, a1).isMoveDoable(scoreDirector)); assertEquals(false, new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a2, a0).isMoveDoable(scoreDirector)); } @Test public void doMove() { GenuineVariableDescriptor<TestdataChainedSolution> variableDescriptor = TestdataChainedEntity.buildVariableDescriptorForChainedObject(); SolutionDescriptor<TestdataChainedSolution> solutionDescriptor = variableDescriptor.getEntityDescriptor().getSolutionDescriptor(); InnerScoreDirector<TestdataChainedSolution> scoreDirector = PlannerTestUtils.mockScoreDirector(solutionDescriptor); TestdataChainedAnchor a0 = new TestdataChainedAnchor("a0"); TestdataChainedEntity a1 = new TestdataChainedEntity("a1", a0); TestdataChainedEntity a2 = new TestdataChainedEntity("a2", a1); TestdataChainedEntity a3 = new TestdataChainedEntity("a3", a2); TestdataChainedAnchor b0 = new TestdataChainedAnchor("b0"); TestdataChainedEntity b1 = new TestdataChainedEntity("b1", b0); TestdataChainedSolution solution = new TestdataChainedSolution("solution"); solution.setChainedAnchorList(Arrays.asList(a0, b0)); solution.setChainedEntityList(Arrays.asList(a1, a2, a3, b1)); scoreDirector.setWorkingSolution(solution); SingletonInverseVariableSupply inverseVariableSupply = scoreDirector.getSupplyManager() .demand(new SingletonInverseVariableDemand(variableDescriptor)); AnchorVariableSupply anchorVariableSupply = scoreDirector.getSupplyManager() .demand(new AnchorVariableDemand(variableDescriptor)); SelectorTestUtils.assertChain(a0, a1, a2, a3); SelectorTestUtils.assertChain(b0, b1); TailChainSwapMove<TestdataChainedSolution> move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a2, b0); TailChainSwapMove<TestdataChainedSolution> undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, b1); SelectorTestUtils.assertChain(b0, a2, a3); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3); SelectorTestUtils.assertChain(b0, b1); // To tail value move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a2, b1); undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1); SelectorTestUtils.assertChain(b0, b1, a2, a3); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3); SelectorTestUtils.assertChain(b0, b1); } @Test public void doMoveInSameChain() { GenuineVariableDescriptor<TestdataChainedSolution> variableDescriptor = TestdataChainedEntity.buildVariableDescriptorForChainedObject(); SolutionDescriptor<TestdataChainedSolution> solutionDescriptor = variableDescriptor.getEntityDescriptor().getSolutionDescriptor(); InnerScoreDirector<TestdataChainedSolution> scoreDirector = PlannerTestUtils.mockScoreDirector(solutionDescriptor); TestdataChainedAnchor a0 = new TestdataChainedAnchor("a0"); TestdataChainedEntity a1 = new TestdataChainedEntity("a1", a0); TestdataChainedEntity a2 = new TestdataChainedEntity("a2", a1); TestdataChainedEntity a3 = new TestdataChainedEntity("a3", a2); TestdataChainedEntity a4 = new TestdataChainedEntity("a4", a3); TestdataChainedEntity a5 = new TestdataChainedEntity("a5", a4); TestdataChainedEntity a6 = new TestdataChainedEntity("a6", a5); TestdataChainedEntity a7 = new TestdataChainedEntity("a7", a6); TestdataChainedSolution solution = new TestdataChainedSolution("solution"); solution.setChainedAnchorList(Arrays.asList(a0)); solution.setChainedEntityList(Arrays.asList(a1, a2, a3, a4, a5, a6, a7)); scoreDirector.setWorkingSolution(solution); SingletonInverseVariableSupply inverseVariableSupply = scoreDirector.getSupplyManager() .demand(new SingletonInverseVariableDemand(variableDescriptor)); AnchorVariableSupply anchorVariableSupply = scoreDirector.getSupplyManager() .demand(new AnchorVariableDemand(variableDescriptor)); SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); TailChainSwapMove<TestdataChainedSolution> move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a4, a1); TailChainSwapMove<TestdataChainedSolution> undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a4, a3, a2, a5, a6, a7); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a3, a1); undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a3, a2, a4, a5, a6, a7); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a7, a1); undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a7, a6, a5, a4, a3, a2); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a1, a4); undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a7, a6, a5, a2, a3, a4, a1); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a3, a4); undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a7, a6, a5, a4, a3, a2, a1); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a2, a6); undoMove = move.createUndoMove(scoreDirector); move.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a7, a3, a4, a5, a6, a2, a1); undoMove.doMove(scoreDirector); SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); // TODO Currently unsupported because we fail to create a valid undoMove... even though doMove supports it // // To tail value // move = new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a3, a7); // undoMove = move.createUndoMove(scoreDirector); // move.doMove(scoreDirector); // SelectorTestUtils.assertChain(a0, a4, a5, a6, a7, a3, a2, a1); // undoMove.doMove(scoreDirector); // SelectorTestUtils.assertChain(a0, a1, a2, a3, a4, a5, a6, a7); } @Test public void toStringTest() { GenuineVariableDescriptor<TestdataChainedSolution> variableDescriptor = TestdataChainedEntity.buildVariableDescriptorForChainedObject(); SolutionDescriptor<TestdataChainedSolution> solutionDescriptor = variableDescriptor.getEntityDescriptor().getSolutionDescriptor(); InnerScoreDirector<TestdataChainedSolution> scoreDirector = PlannerTestUtils.mockScoreDirector(solutionDescriptor); TestdataChainedAnchor a0 = new TestdataChainedAnchor("a0"); TestdataChainedEntity a1 = new TestdataChainedEntity("a1", a0); TestdataChainedEntity a2 = new TestdataChainedEntity("a2", a1); TestdataChainedEntity a3 = new TestdataChainedEntity("a3", a2); TestdataChainedAnchor b0 = new TestdataChainedAnchor("b0"); TestdataChainedEntity b1 = new TestdataChainedEntity("b1", b0); TestdataChainedSolution solution = new TestdataChainedSolution("solution"); solution.setChainedAnchorList(Arrays.asList(a0, b0)); solution.setChainedEntityList(Arrays.asList(a1, a2, a3, b1)); scoreDirector.setWorkingSolution(solution); SingletonInverseVariableSupply inverseVariableSupply = scoreDirector.getSupplyManager() .demand(new SingletonInverseVariableDemand(variableDescriptor)); AnchorVariableSupply anchorVariableSupply = scoreDirector.getSupplyManager() .demand(new AnchorVariableDemand(variableDescriptor)); assertEquals("a1 {a0} <-tailChainSwap-> b1 {b0}", new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a1, b0).toString()); assertEquals("a1 {a0} <-tailChainSwap-> null {b1}", new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a1, b1).toString()); assertEquals("b1 {b0} <-tailChainSwap-> a1 {a0}", new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, b1, a0).toString()); assertEquals("a1 {a0} <-tailChainSwap-> null {a3}", new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a1, a3).toString()); assertEquals("a2 {a1} <-tailChainSwap-> a1 {a0}", new TailChainSwapMove<>(variableDescriptor, inverseVariableSupply, anchorVariableSupply, a2, a0).toString()); } }