Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPProblemInstance.cs @ 17181

Last change on this file since 17181 was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 5.4 KB
RevLine 
[4362]1#region License Information
2/* HeuristicLab
[17181]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[4362]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;
[4362]26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Optimization;
[7934]29using HeuristicLab.Parameters;
[17097]30using HEAL.Attic;
[4362]31using HeuristicLab.PluginInfrastructure;
[7934]32using HeuristicLab.Problems.VehicleRouting.Interfaces;
[4363]33using HeuristicLab.Problems.VehicleRouting.Variants;
[4362]34
35namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
36  [Item("CVRPProblemInstance", "Represents a single depot CVRP instance.")]
[17097]37  [StorableType("CBE1D39B-9BBE-4119-801B-32739D1E8DEE")]
[7934]38  public class CVRPProblemInstance : SingleDepotVRPProblemInstance, IHomogenousCapacitatedProblemInstance {
[4363]39    protected IValueParameter<DoubleValue> CapacityParameter {
40      get { return (IValueParameter<DoubleValue>)Parameters["Capacity"]; }
[4362]41    }
[4363]42    protected IValueParameter<DoubleValue> OverloadPenaltyParameter {
[4362]43      get { return (IValueParameter<DoubleValue>)Parameters["EvalOverloadPenalty"]; }
44    }
45
46    public DoubleValue Capacity {
47      get { return CapacityParameter.Value; }
48      set { CapacityParameter.Value = value; }
49    }
[6711]50
[7864]51    protected IValueParameter<DoubleValue> CurrentOverloadPenaltyParameter {
52      get { return (IValueParameter<DoubleValue>)Parameters["CurrentOverloadPenalty"]; }
53    }
[6711]54
[4362]55    public DoubleValue OverloadPenalty {
[6711]56      get {
[7864]57        DoubleValue currentOverloadPenalty = CurrentOverloadPenaltyParameter.Value;
[6711]58        if (currentOverloadPenalty != null)
59          return currentOverloadPenalty;
60        else
[7934]61          return OverloadPenaltyParameter.Value;
62      }
[12738]63    }
64    DoubleValue ICapacitatedProblemInstance.CurrentOverloadPenalty {
65      get { return CurrentOverloadPenaltyParameter.Value; }
[7864]66      set { CurrentOverloadPenaltyParameter.Value = value; }
[4362]67    }
[4374]68
69    protected override IEnumerable<IOperator> GetOperators() {
[7934]70      return base.GetOperators()
71        .Where(o => o is IHomogenousCapacitatedOperator).Cast<IOperator>();
[4362]72    }
[4363]73
[4374]74    protected override IEnumerable<IOperator> GetAnalyzers() {
75      return ApplicationManager.Manager.GetInstances<ICapacitatedOperator>()
76        .Where(o => o is IAnalyzer)
77        .Cast<IOperator>().Union(base.GetAnalyzers());
78    }
79
[4363]80    protected override IVRPEvaluator Evaluator {
81      get {
82        return new CVRPEvaluator();
83      }
84    }
[7934]85
[4362]86    [StorableConstructor]
[17097]87    protected CVRPProblemInstance(StorableConstructorFlag _) : base(_) { }
[4362]88
89    public CVRPProblemInstance() {
90      Parameters.Add(new ValueParameter<DoubleValue>("Capacity", "The capacity of each vehicle.", new DoubleValue(0)));
[6710]91      Parameters.Add(new ValueParameter<DoubleValue>("EvalOverloadPenalty", "The overload penalty considered in the evaluation.", new DoubleValue(100)));
[12738]92      Parameters.Add(new OptionalValueParameter<DoubleValue>("CurrentOverloadPenalty", "The current overload penalty considered in the evaluation.") { Hidden = true });
[4860]93
94      AttachEventHandlers();
[4362]95    }
[4752]96
97    public override IDeepCloneable Clone(Cloner cloner) {
98      return new CVRPProblemInstance(this, cloner);
99    }
100
101    protected CVRPProblemInstance(CVRPProblemInstance original, Cloner cloner)
102      : base(original, cloner) {
[7934]103      AttachEventHandlers();
[4752]104    }
[4860]105
106    [StorableHook(HookType.AfterDeserialization)]
[7934]107    private void AfterDeserialization() {
[4860]108      AttachEventHandlers();
109    }
110
111    private void AttachEventHandlers() {
112      CapacityParameter.ValueChanged += new EventHandler(CapacityParameter_ValueChanged);
113      CapacityParameter.Value.ValueChanged += new EventHandler(Capacity_ValueChanged);
114      OverloadPenaltyParameter.ValueChanged += new EventHandler(OverloadPenaltyParameter_ValueChanged);
115      OverloadPenaltyParameter.Value.ValueChanged += new EventHandler(OverloadPenalty_ValueChanged);
116    }
117
[6711]118    public override void InitializeState() {
119      base.InitializeState();
120
[7864]121      CurrentOverloadPenaltyParameter.Value = null;
[6711]122    }
123
[4860]124    #region Event handlers
125    void CapacityParameter_ValueChanged(object sender, EventArgs e) {
126      CapacityParameter.Value.ValueChanged += new EventHandler(Capacity_ValueChanged);
[7852]127      EvalBestKnownSolution();
[4860]128    }
129    void Capacity_ValueChanged(object sender, EventArgs e) {
[7852]130      EvalBestKnownSolution();
[4860]131    }
132    void OverloadPenaltyParameter_ValueChanged(object sender, EventArgs e) {
133      OverloadPenaltyParameter.Value.ValueChanged += new EventHandler(OverloadPenalty_ValueChanged);
134      EvalBestKnownSolution();
135    }
136    void OverloadPenalty_ValueChanged(object sender, EventArgs e) {
137      EvalBestKnownSolution();
138    }
139    #endregion
[4362]140  }
141}
Note: See TracBrowser for help on using the repository browser.