#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 System; using System.Collections.Generic; using System.Linq; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Optimization; using HeuristicLab.Parameters; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; using HeuristicLab.PluginInfrastructure; using HeuristicLab.Problems.VehicleRouting.Interfaces; using HeuristicLab.Problems.VehicleRouting.Variants; namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { [Item("MDCVRPProblemInstance", "Represents a multi depot CVRP instance.")] [StorableClass] public class MDCVRPProblemInstance : MultiDepotVRPProblemInstance, IHeterogenousCapacitatedProblemInstance { protected IValueParameter CapacityParameter { get { return (IValueParameter)Parameters["Capacity"]; } } protected IValueParameter OverloadPenaltyParameter { get { return (IValueParameter)Parameters["EvalOverloadPenalty"]; } } public DoubleArray Capacity { get { return CapacityParameter.Value; } set { CapacityParameter.Value = value; } } protected IValueParameter CurrentOverloadPenaltyParameter { get { return (IValueParameter)Parameters["CurrentOverloadPenalty"]; } } public DoubleValue OverloadPenalty { get { DoubleValue currentOverloadPenalty = CurrentOverloadPenaltyParameter.Value; if (currentOverloadPenalty != null) return currentOverloadPenalty; else return OverloadPenaltyParameter.Value; } } DoubleValue ICapacitatedProblemInstance.CurrentOverloadPenalty { get { return CurrentOverloadPenaltyParameter.Value; } set { CurrentOverloadPenaltyParameter.Value = value; } } protected override IEnumerable GetOperators() { return base.GetOperators() .Where(o => o is IHeterogenousCapacitatedOperator).Cast(); } protected override IEnumerable GetAnalyzers() { return ApplicationManager.Manager.GetInstances() .Where(o => o is IAnalyzer) .Cast().Union(base.GetAnalyzers()); } protected override IVRPEvaluator Evaluator { get { return new MDCVRPEvaluator(); } } [StorableConstructor] protected MDCVRPProblemInstance(bool deserializing) : base(deserializing) { } public MDCVRPProblemInstance() { Parameters.Add(new ValueParameter("Capacity", "The capacity of each vehicle.", new DoubleArray())); Parameters.Add(new ValueParameter("EvalOverloadPenalty", "The overload penalty considered in the evaluation.", new DoubleValue(100))); Parameters.Add(new OptionalValueParameter("CurrentOverloadPenalty", "The current overload penalty considered in the evaluation.") { Hidden = true }); AttachEventHandlers(); } public override IDeepCloneable Clone(Cloner cloner) { return new MDCVRPProblemInstance(this, cloner); } protected MDCVRPProblemInstance(MDCVRPProblemInstance original, Cloner cloner) : base(original, cloner) { AttachEventHandlers(); } [StorableHook(HookType.AfterDeserialization)] private void AfterDeserialization() { AttachEventHandlers(); } private void AttachEventHandlers() { CapacityParameter.ValueChanged += new EventHandler(CapacityParameter_ValueChanged); OverloadPenaltyParameter.ValueChanged += new EventHandler(OverloadPenaltyParameter_ValueChanged); OverloadPenaltyParameter.Value.ValueChanged += new EventHandler(OverloadPenalty_ValueChanged); } public override void InitializeState() { base.InitializeState(); CurrentOverloadPenaltyParameter.Value = null; } #region Event handlers void CapacityParameter_ValueChanged(object sender, EventArgs e) { EvalBestKnownSolution(); } void OverloadPenaltyParameter_ValueChanged(object sender, EventArgs e) { OverloadPenaltyParameter.Value.ValueChanged += new EventHandler(OverloadPenalty_ValueChanged); EvalBestKnownSolution(); } void OverloadPenalty_ValueChanged(object sender, EventArgs e) { EvalBestKnownSolution(); } #endregion } }