#region License Information
/* HeuristicLab
* Copyright (C) 2002-2016 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.Data;
using HeuristicLab.Operators;
using HeuristicLab.Optimization;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
using HeuristicLab.Problems.VehicleRouting.Interfaces;
using HeuristicLab.Problems.VehicleRouting.Variants;
namespace HeuristicLab.Problems.VehicleRouting {
///
/// An operator for adaptive constraint relaxation.
///
[Item("PickupViolationsRelaxationVRPAnalyzer", "An operator for adaptively relaxing the pickup constraints.")]
[StorableClass]
public class PickupViolationsRelaxationVRPAnalyzer : SingleSuccessorOperator, IAnalyzer, IPickupAndDeliveryOperator, ISingleObjectiveOperator {
public ILookupParameter ProblemInstanceParameter {
get { return (ILookupParameter)Parameters["ProblemInstance"]; }
}
public ScopeTreeLookupParameter VRPToursParameter {
get { return (ScopeTreeLookupParameter)Parameters["VRPTours"]; }
}
public ScopeTreeLookupParameter QualityParameter {
get { return (ScopeTreeLookupParameter)Parameters["Quality"]; }
}
public ScopeTreeLookupParameter PickupViolationsParameter {
get { return (ScopeTreeLookupParameter)Parameters["PickupViolations"]; }
}
public IValueParameter SigmaParameter {
get { return (IValueParameter)Parameters["Sigma"]; }
}
public IValueParameter PhiParameter {
get { return (IValueParameter)Parameters["Phi"]; }
}
public IValueParameter MinPenaltyFactorParameter {
get { return (IValueParameter)Parameters["MinPenaltyFactor"]; }
}
public IValueParameter MaxPenaltyFactorParameter {
get { return (IValueParameter)Parameters["MaxPenaltyFactor"]; }
}
public ValueLookupParameter ResultsParameter {
get { return (ValueLookupParameter)Parameters["Results"]; }
}
public bool EnabledByDefault {
get { return false; }
}
[StorableConstructor]
protected PickupViolationsRelaxationVRPAnalyzer(bool deserializing) : base(deserializing) { }
public PickupViolationsRelaxationVRPAnalyzer()
: base() {
Parameters.Add(new LookupParameter("ProblemInstance", "The problem instance."));
Parameters.Add(new ScopeTreeLookupParameter("VRPTours", "The VRP tours which should be evaluated."));
Parameters.Add(new ScopeTreeLookupParameter("Quality", "The qualities of the VRP solutions which should be analyzed."));
Parameters.Add(new ScopeTreeLookupParameter("PickupViolations", "The pickup violation of the VRP solutions which should be analyzed."));
Parameters.Add(new ValueParameter("Sigma", "The sigma applied to the penalty factor.", new DoubleValue(0.5)));
Parameters.Add(new ValueParameter("Phi", "The phi applied to the penalty factor.", new DoubleValue(0.5)));
Parameters.Add(new ValueParameter("MinPenaltyFactor", "The minimum penalty factor.", new DoubleValue(0.01)));
Parameters.Add(new ValueParameter("MaxPenaltyFactor", "The maximum penalty factor.", new DoubleValue(100000)));
Parameters.Add(new ValueLookupParameter("Results", "The result collection where the best VRP solution should be stored."));
}
public override IDeepCloneable Clone(Cloner cloner) {
return new PickupViolationsRelaxationVRPAnalyzer(this, cloner);
}
protected PickupViolationsRelaxationVRPAnalyzer(PickupViolationsRelaxationVRPAnalyzer original, Cloner cloner)
: base(original, cloner) {
}
[StorableHook(HookType.AfterDeserialization)]
private void AfterDeserialization() {
// BackwardsCompatibility3.3
#region Backwards compatible code, remove with 3.4
if (!Parameters.ContainsKey("MaxPenaltyFactor")) {
Parameters.Add(new ValueParameter("MaxPenaltyFactor", "The maximum penalty factor.", new DoubleValue(100000)));
}
#endregion
}
public override IOperation Apply() {
IPickupAndDeliveryProblemInstance pdp = ProblemInstanceParameter.ActualValue as IPickupAndDeliveryProblemInstance;
ResultCollection results = ResultsParameter.ActualValue;
ItemArray qualities = QualityParameter.ActualValue;
ItemArray pickupViolations = PickupViolationsParameter.ActualValue;
double sigma = SigmaParameter.Value.Value;
double phi = PhiParameter.Value.Value;
double minPenalty = MinPenaltyFactorParameter.Value.Value;
double maxPenalty = MaxPenaltyFactorParameter.Value.Value;
for (int j = 0; j < qualities.Length; j++) {
qualities[j].Value -= pickupViolations[j].Value * pdp.PickupViolationPenalty.Value;
}
int validCount = 0;
for (int j = 0; j < qualities.Length; j++) {
if (pickupViolations[j].Value == 0)
validCount++;
}
double factor = 1.0 - ((double)validCount / (double)qualities.Length);
double min = pdp.PickupViolationPenalty.Value / (1 + sigma);
double max = pdp.PickupViolationPenalty.Value * (1 + phi);
pdp.CurrentPickupViolationPenalty = new DoubleValue(min + (max - min) * factor);
if (pdp.CurrentPickupViolationPenalty.Value < minPenalty)
pdp.CurrentPickupViolationPenalty.Value = minPenalty;
if (pdp.CurrentPickupViolationPenalty.Value > maxPenalty)
pdp.CurrentPickupViolationPenalty.Value = maxPenalty;
for (int j = 0; j < qualities.Length; j++) {
qualities[j].Value += pickupViolations[j].Value * pdp.CurrentPickupViolationPenalty.Value;
}
if (!results.ContainsKey("Current Pickup Violation Penalty")) {
results.Add(new Result("Current Pickup Violation Penalty", new DoubleValue(pdp.CurrentPickupViolationPenalty.Value)));
} else {
(results["Current Pickup Violation Penalty"].Value as DoubleValue).Value = pdp.CurrentPickupViolationPenalty.Value;
}
return base.Apply();
}
}
}