#region License Information
/* HeuristicLab
* Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Encodings.PermutationEncoding;
using HeuristicLab.Parameters;
using HEAL.Attic;
namespace HeuristicLab.Problems.VehicleRouting.Encodings.Zhu {
[Item("ZhuPermutationManipulator", "An operator which manipulates a VRP representation by using a standard permutation manipulator. It is implemented as described in Zhu, K.Q. (2000). A New Genetic Algorithm For VRPTW. Proceedings of the International Conference on Artificial Intelligence.")]
[StorableType("2D0168F4-40E8-4E54-AEAD-E8CEAE355AEB")]
public sealed class ZhuPermutationManipulator : ZhuManipulator {
public IValueLookupParameter InnerManipulatorParameter {
get { return (IValueLookupParameter)Parameters["InnerManipulator"]; }
}
[StorableConstructor]
private ZhuPermutationManipulator(StorableConstructorFlag _) : base(_) { }
public ZhuPermutationManipulator()
: base() {
Parameters.Add(new ValueLookupParameter("InnerManipulator", "The permutation manipulator.", new TranslocationManipulator()));
}
public override IDeepCloneable Clone(Cloner cloner) {
return new ZhuPermutationManipulator(this, cloner);
}
private ZhuPermutationManipulator(ZhuPermutationManipulator original, Cloner cloner)
: base(original, cloner) {
}
protected override void Manipulate(IRandom random, ZhuEncoding individual) {
InnerManipulatorParameter.ActualValue.PermutationParameter.ActualName = VRPToursParameter.ActualName;
IAtomicOperation op = this.ExecutionContext.CreateOperation(
InnerManipulatorParameter.ActualValue, this.ExecutionContext.Scope);
op.Operator.Execute((IExecutionContext)op, CancellationToken);
}
}
}