Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPProblemInstance.cs @ 12009

Last change on this file since 12009 was 12009, checked in by ascheibe, 9 years ago

#2212 updated copyright year

File size: 5.0 KB
RevLine 
[6851]1#region License Information
2/* HeuristicLab
[12009]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6851]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
22using System;
23using System.Collections.Generic;
24using System.Linq;
[7934]25using HeuristicLab.Common;
[6851]26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Optimization;
[7934]29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[6851]31using HeuristicLab.PluginInfrastructure;
[7934]32using HeuristicLab.Problems.VehicleRouting.Interfaces;
[6851]33using HeuristicLab.Problems.VehicleRouting.Variants;
34
35namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
36  [Item("MDCVRPProblemInstance", "Represents a multi depot CVRP instance.")]
37  [StorableClass]
[7934]38  public class MDCVRPProblemInstance : MultiDepotVRPProblemInstance, IHeterogenousCapacitatedProblemInstance {
[6851]39    protected IValueParameter<DoubleArray> CapacityParameter {
40      get { return (IValueParameter<DoubleArray>)Parameters["Capacity"]; }
41    }
42    protected IValueParameter<DoubleValue> OverloadPenaltyParameter {
43      get { return (IValueParameter<DoubleValue>)Parameters["EvalOverloadPenalty"]; }
44    }
45
46    public DoubleArray Capacity {
47      get { return CapacityParameter.Value; }
48      set { CapacityParameter.Value = value; }
49    }
50
[7864]51    protected IValueParameter<DoubleValue> CurrentOverloadPenaltyParameter {
52      get { return (IValueParameter<DoubleValue>)Parameters["CurrentOverloadPenalty"]; }
53    }
[6851]54
55    public DoubleValue OverloadPenalty {
56      get {
[7864]57        DoubleValue currentOverloadPenalty = CurrentOverloadPenaltyParameter.Value;
[6851]58        if (currentOverloadPenalty != null)
59          return currentOverloadPenalty;
60        else
[7864]61          return OverloadPenaltyParameter.Value;
62      }
63      set { CurrentOverloadPenaltyParameter.Value = value; }
[6851]64    }
65
66    protected override IEnumerable<IOperator> GetOperators() {
[7934]67      return base.GetOperators()
68        .Where(o => o is IHeterogenousCapacitatedOperator).Cast<IOperator>();
[6851]69    }
70
71    protected override IEnumerable<IOperator> GetAnalyzers() {
72      return ApplicationManager.Manager.GetInstances<ICapacitatedOperator>()
73        .Where(o => o is IAnalyzer)
74        .Cast<IOperator>().Union(base.GetAnalyzers());
75    }
76
77    protected override IVRPEvaluator Evaluator {
78      get {
79        return new MDCVRPEvaluator();
80      }
81    }
[7934]82
[6851]83    [StorableConstructor]
84    protected MDCVRPProblemInstance(bool deserializing) : base(deserializing) { }
85
86    public MDCVRPProblemInstance() {
87      Parameters.Add(new ValueParameter<DoubleArray>("Capacity", "The capacity of each vehicle.", new DoubleArray()));
88      Parameters.Add(new ValueParameter<DoubleValue>("EvalOverloadPenalty", "The overload penalty considered in the evaluation.", new DoubleValue(100)));
[7864]89      Parameters.Add(new OptionalValueParameter<DoubleValue>("CurrentOverloadPenalty", "The current overload penalty considered in the evaluation."));
[6851]90
91      AttachEventHandlers();
92    }
93
94    public override IDeepCloneable Clone(Cloner cloner) {
95      return new MDCVRPProblemInstance(this, cloner);
96    }
97
98    protected MDCVRPProblemInstance(MDCVRPProblemInstance original, Cloner cloner)
99      : base(original, cloner) {
[7934]100      AttachEventHandlers();
[6851]101    }
102
103    [StorableHook(HookType.AfterDeserialization)]
[7934]104    private void AfterDeserialization() {
[6851]105      AttachEventHandlers();
106    }
107
108    private void AttachEventHandlers() {
109      CapacityParameter.ValueChanged += new EventHandler(CapacityParameter_ValueChanged);
110      OverloadPenaltyParameter.ValueChanged += new EventHandler(OverloadPenaltyParameter_ValueChanged);
111      OverloadPenaltyParameter.Value.ValueChanged += new EventHandler(OverloadPenalty_ValueChanged);
112    }
113
114    public override void InitializeState() {
115      base.InitializeState();
116
[7864]117      CurrentOverloadPenaltyParameter.Value = null;
[6851]118    }
119
120    #region Event handlers
121    void CapacityParameter_ValueChanged(object sender, EventArgs e) {
[7852]122      EvalBestKnownSolution();
[6851]123    }
124    void OverloadPenaltyParameter_ValueChanged(object sender, EventArgs e) {
125      OverloadPenaltyParameter.Value.ValueChanged += new EventHandler(OverloadPenalty_ValueChanged);
126      EvalBestKnownSolution();
127    }
128    void OverloadPenalty_ValueChanged(object sender, EventArgs e) {
129      EvalBestKnownSolution();
130    }
131    #endregion
132  }
133}
Note: See TracBrowser for help on using the repository browser.