[4369] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4369] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
[8053] | 22 | using HeuristicLab.Common;
|
---|
[4369] | 23 | using HeuristicLab.Core;
|
---|
[8053] | 24 | using HeuristicLab.Data;
|
---|
[4369] | 25 | using HeuristicLab.Optimization;
|
---|
| 26 | using HeuristicLab.Parameters;
|
---|
[16565] | 27 | using HEAL.Attic;
|
---|
[4369] | 28 | using HeuristicLab.Problems.VehicleRouting.Interfaces;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Problems.VehicleRouting.Encodings.General {
|
---|
| 31 | [Item("VRPMoveEvaluator", "Evaluates a VRP move.")]
|
---|
[16565] | 32 | [StorableType("2C1B7479-DCD7-41F7-BB65-D1D714313172")]
|
---|
[4369] | 33 | public abstract class VRPMoveEvaluator : VRPMoveOperator, ISingleObjectiveMoveEvaluator {
|
---|
| 34 | public const string MovePrefix = "Move";
|
---|
[8053] | 35 |
|
---|
[4369] | 36 | public ILookupParameter<DoubleValue> QualityParameter {
|
---|
| 37 | get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
|
---|
| 38 | }
|
---|
| 39 | public ILookupParameter<DoubleValue> MoveQualityParameter {
|
---|
| 40 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
|
---|
| 41 | }
|
---|
[5127] | 42 | public ILookupParameter<DoubleValue> MovePenaltyParameter {
|
---|
| 43 | get { return (ILookupParameter<DoubleValue>)Parameters["MovePenalty"]; }
|
---|
| 44 | }
|
---|
[4369] | 45 |
|
---|
| 46 | [StorableConstructor]
|
---|
[16565] | 47 | protected VRPMoveEvaluator(StorableConstructorFlag _) : base(_) { }
|
---|
[4369] | 48 |
|
---|
| 49 | public VRPMoveEvaluator()
|
---|
| 50 | : base() {
|
---|
| 51 | Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The quality of the solution."));
|
---|
| 52 | Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The relative quality of the move."));
|
---|
[5127] | 53 | Parameters.Add(new LookupParameter<DoubleValue>("MovePenalty", "The penalty applied to the move."));
|
---|
[4369] | 54 | }
|
---|
| 55 |
|
---|
[4752] | 56 | protected VRPMoveEvaluator(VRPMoveEvaluator original, Cloner cloner)
|
---|
| 57 | : base(original, cloner) {
|
---|
| 58 | }
|
---|
| 59 |
|
---|
[4369] | 60 | //helper method to evaluate an updated individual
|
---|
| 61 | protected void UpdateEvaluation(IVRPEncoding updatedTours) {
|
---|
[5867] | 62 | IVRPEvaluator evaluator = ProblemInstance.MoveEvaluator;
|
---|
[4369] | 63 |
|
---|
| 64 | try {
|
---|
| 65 | this.ExecutionContext.Scope.Variables.Add(new Variable(evaluator.VRPToursParameter.ActualName,
|
---|
| 66 | updatedTours));
|
---|
| 67 |
|
---|
| 68 | IAtomicOperation op = this.ExecutionContext.CreateChildOperation(evaluator);
|
---|
[5867] | 69 | op.Operator.Execute((IExecutionContext)op, CancellationToken);
|
---|
[4369] | 70 | }
|
---|
| 71 | finally {
|
---|
| 72 | this.ExecutionContext.Scope.Variables.Remove(evaluator.VRPToursParameter.ActualName);
|
---|
| 73 | }
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | protected abstract void EvaluateMove();
|
---|
| 77 |
|
---|
[10298] | 78 | public override IOperation InstrumentedApply() {
|
---|
[4369] | 79 | EvaluateMove();
|
---|
[8053] | 80 |
|
---|
[10298] | 81 | return base.InstrumentedApply();
|
---|
[4369] | 82 | }
|
---|
| 83 | }
|
---|
| 84 | }
|
---|