Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7934


Ignore:
Timestamp:
05/30/12 16:46:06 (12 years ago)
Author:
abeham
Message:

#1722: changed name of AfterDeserializationHook in some classes

Location:
trunk/sources
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.LinearAssignment/3.3/LinearAssignmentProblem.cs

    r7873 r7934  
    100100    #region Helpers
    101101    [StorableHook(HookType.AfterDeserialization)]
    102     private void AfterDeserializationHook() {
     102    private void AfterDeserialization() {
    103103      AttachEventHandlers();
    104104    }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/BestVRPSolutionAnalyzer.cs

    r7859 r7934  
    2121
    2222using System.Linq;
     23using HeuristicLab.Common;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Data;
     
    2829using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2930using HeuristicLab.Problems.VehicleRouting.Interfaces;
     31using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    3032using HeuristicLab.Problems.VehicleRouting.Variants;
    31 using HeuristicLab.Common;
    32 using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    3333
    3434namespace HeuristicLab.Problems.VehicleRouting {
     
    8282    public BestVRPSolutionAnalyzer()
    8383      : base() {
    84         Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The problem instance."));
    85         Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
     84      Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The problem instance."));
     85      Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
    8686
    87         Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this VRP instance."));
    88         Parameters.Add(new LookupParameter<VRPSolution>("BestKnownSolution", "The best known solution of this VRP instance."));
     87      Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this VRP instance."));
     88      Parameters.Add(new LookupParameter<VRPSolution>("BestKnownSolution", "The best known solution of this VRP instance."));
    8989
    90         Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the VRP solutions which should be analyzed."));
    91         Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Distance", "The distances of the VRP solutions which should be analyzed."));
    92         Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("VehiclesUtilized", "The utilized vehicles of the VRP solutions which should be analyzed."));
     90      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the VRP solutions which should be analyzed."));
     91      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Distance", "The distances of the VRP solutions which should be analyzed."));
     92      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("VehiclesUtilized", "The utilized vehicles of the VRP solutions which should be analyzed."));
    9393
    94         Parameters.Add(new LookupParameter<VRPSolution>("BestSolution", "The best VRP solution."));
    95         Parameters.Add(new LookupParameter<VRPSolution>("BestValidSolution", "The best valid VRP solution."));
    96         Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best VRP solution should be stored."));
     94      Parameters.Add(new LookupParameter<VRPSolution>("BestSolution", "The best VRP solution."));
     95      Parameters.Add(new LookupParameter<VRPSolution>("BestValidSolution", "The best valid VRP solution."));
     96      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best VRP solution should be stored."));
    9797    }
    9898
     
    106106
    107107    [StorableHook(HookType.AfterDeserialization)]
    108     private void AfterDeserializationHook() {
     108    private void AfterDeserialization() {
    109109      #region Backwards Compatibility
    110110      if (!Parameters.ContainsKey("BestKnownQuality")) {
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPProblemInstance.cs

    r7864 r7934  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Common;
    2826using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    3027using HeuristicLab.Data;
    3128using HeuristicLab.Optimization;
     29using HeuristicLab.Parameters;
     30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3231using HeuristicLab.PluginInfrastructure;
     32using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    34 using HeuristicLab.Common;
    3534
    3635namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3736  [Item("MDCVRPProblemInstance", "Represents a multi depot CVRP instance.")]
    3837  [StorableClass]
    39   public class MDCVRPProblemInstance: MultiDepotVRPProblemInstance, IHeterogenousCapacitatedProblemInstance {
     38  public class MDCVRPProblemInstance : MultiDepotVRPProblemInstance, IHeterogenousCapacitatedProblemInstance {
    4039    protected IValueParameter<DoubleArray> CapacityParameter {
    4140      get { return (IValueParameter<DoubleArray>)Parameters["Capacity"]; }
     
    6665
    6766    protected override IEnumerable<IOperator> GetOperators() {
    68         return base.GetOperators()
    69           .Where(o => o is IHeterogenousCapacitatedOperator).Cast<IOperator>();
     67      return base.GetOperators()
     68        .Where(o => o is IHeterogenousCapacitatedOperator).Cast<IOperator>();
    7069    }
    7170
     
    8180      }
    8281    }
    83    
     82
    8483    [StorableConstructor]
    8584    protected MDCVRPProblemInstance(bool deserializing) : base(deserializing) { }
     
    9998    protected MDCVRPProblemInstance(MDCVRPProblemInstance original, Cloner cloner)
    10099      : base(original, cloner) {
    101         AttachEventHandlers();
     100      AttachEventHandlers();
    102101    }
    103102
    104103    [StorableHook(HookType.AfterDeserialization)]
    105     private void AfterDeserializationHook() {
     104    private void AfterDeserialization() {
    106105      AttachEventHandlers();
    107106    }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWProblemInstance.cs

    r7864 r7934  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Common;
    2826using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    3027using HeuristicLab.Data;
    3128using HeuristicLab.Optimization;
     29using HeuristicLab.Parameters;
     30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3231using HeuristicLab.PluginInfrastructure;
     32using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    34 using HeuristicLab.Common;
    3534
    3635namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3736  [Item("MDCVRPPDTWProblemInstance", "Represents a multi depot CVRPPDTW instance.")]
    3837  [StorableClass]
    39   public class MDCVRPPDTWProblemInstance: MDCVRPTWProblemInstance, IPickupAndDeliveryProblemInstance {
     38  public class MDCVRPPDTWProblemInstance : MDCVRPTWProblemInstance, IPickupAndDeliveryProblemInstance {
    4039    protected IValueParameter<IntArray> PickupDeliveryLocationParameter {
    4140      get { return (IValueParameter<IntArray>)Parameters["PickupDeliveryLocation"]; }
     
    4443      get { return (IValueParameter<DoubleValue>)Parameters["EvalPickupViolationPenalty"]; }
    4544    }
    46    
     45
    4746    public IntArray PickupDeliveryLocation {
    4847      get { return PickupDeliveryLocationParameter.Value; }
     
    6665
    6766    protected override IEnumerable<IOperator> GetOperators() {
    68       return 
     67      return
    6968        ApplicationManager.Manager.GetInstances<IPickupAndDeliveryOperator>()
    7069        .Where(o => !(o is IAnalyzer))
     
    7776        .Cast<IOperator>().Union(base.GetAnalyzers());
    7877    }
    79    
     78
    8079    protected override IVRPEvaluator Evaluator {
    8180      get {
     
    8786      return PickupDeliveryLocation[city - 1];
    8887    }
    89    
     88
    9089    [StorableConstructor]
    9190    protected MDCVRPPDTWProblemInstance(bool deserializing) : base(deserializing) { }
     
    106105    protected MDCVRPPDTWProblemInstance(MDCVRPPDTWProblemInstance original, Cloner cloner)
    107106      : base(original, cloner) {
    108         AttachEventHandlers();
     107      AttachEventHandlers();
    109108    }
    110109
    111110    [StorableHook(HookType.AfterDeserialization)]
    112     private void AfterDeserializationHook() {
     111    private void AfterDeserialization() {
    113112      AttachEventHandlers();
    114113    }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWProblemInstance.cs

    r7864 r7934  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Common;
    2826using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    3027using HeuristicLab.Data;
    3128using HeuristicLab.Optimization;
     29using HeuristicLab.Parameters;
     30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3231using HeuristicLab.PluginInfrastructure;
     32using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    34 using HeuristicLab.Common;
    3534
    3635namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3736  [Item("MDCVRPTWProblemInstance", "Represents a multi depot CVRPTW instance.")]
    3837  [StorableClass]
    39   public class MDCVRPTWProblemInstance: MDCVRPProblemInstance, ITimeWindowedProblemInstance {
     38  public class MDCVRPTWProblemInstance : MDCVRPProblemInstance, ITimeWindowedProblemInstance {
    4039    protected IValueParameter<DoubleArray> ReadyTimeParameter {
    4140      get { return (IValueParameter<DoubleArray>)Parameters["ReadyTime"]; }
     
    9796        .Cast<IOperator>().Union(base.GetAnalyzers());
    9897    }
    99    
     98
    10099    protected override IVRPEvaluator Evaluator {
    101100      get {
     
    103102      }
    104103    }
    105    
     104
    106105    [StorableConstructor]
    107106    protected MDCVRPTWProblemInstance(bool deserializing) : base(deserializing) { }
     
    125124    protected MDCVRPTWProblemInstance(MDCVRPTWProblemInstance original, Cloner cloner)
    126125      : base(original, cloner) {
    127         AttachEventHandlers();
     126      AttachEventHandlers();
    128127    }
    129128
    130129    [StorableHook(HookType.AfterDeserialization)]
    131     private void AfterDeserializationHook() {
     130    private void AfterDeserialization() {
    132131      AttachEventHandlers();
    133132    }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPProblemInstance.cs

    r7864 r7934  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Common;
    2826using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    3027using HeuristicLab.Data;
    3128using HeuristicLab.Optimization;
     29using HeuristicLab.Parameters;
     30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3231using HeuristicLab.PluginInfrastructure;
     32using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    34 using HeuristicLab.Common;
    3534
    3635namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3736  [Item("CVRPProblemInstance", "Represents a single depot CVRP instance.")]
    3837  [StorableClass]
    39   public class CVRPProblemInstance: SingleDepotVRPProblemInstance, IHomogenousCapacitatedProblemInstance {
     38  public class CVRPProblemInstance : SingleDepotVRPProblemInstance, IHomogenousCapacitatedProblemInstance {
    4039    protected IValueParameter<DoubleValue> CapacityParameter {
    4140      get { return (IValueParameter<DoubleValue>)Parameters["Capacity"]; }
     
    6059          return currentOverloadPenalty;
    6160        else
    62           return OverloadPenaltyParameter.Value; }
     61          return OverloadPenaltyParameter.Value;
     62      }
    6363      set { CurrentOverloadPenaltyParameter.Value = value; }
    6464    }
    6565
    6666    protected override IEnumerable<IOperator> GetOperators() {
    67         return base.GetOperators()
    68           .Where(o => o is IHomogenousCapacitatedOperator).Cast<IOperator>();
     67      return base.GetOperators()
     68        .Where(o => o is IHomogenousCapacitatedOperator).Cast<IOperator>();
    6969    }
    7070
     
    8080      }
    8181    }
    82    
     82
    8383    [StorableConstructor]
    8484    protected CVRPProblemInstance(bool deserializing) : base(deserializing) { }
     
    9898    protected CVRPProblemInstance(CVRPProblemInstance original, Cloner cloner)
    9999      : base(original, cloner) {
    100         AttachEventHandlers();
     100      AttachEventHandlers();
    101101    }
    102102
    103103    [StorableHook(HookType.AfterDeserialization)]
    104     private void AfterDeserializationHook() {
     104    private void AfterDeserialization() {
    105105      AttachEventHandlers();
    106106    }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWProblemInstance.cs

    r7864 r7934  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Common;
    2826using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    3027using HeuristicLab.Data;
    3128using HeuristicLab.Optimization;
     29using HeuristicLab.Parameters;
     30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3231using HeuristicLab.PluginInfrastructure;
     32using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    34 using HeuristicLab.Common;
    3534
    3635namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3736  [Item("CVRPPDTWProblemInstance", "Represents a single depot CVRPPDTW instance.")]
    3837  [StorableClass]
    39   public class CVRPPDTWProblemInstance: CVRPTWProblemInstance, IPickupAndDeliveryProblemInstance {
     38  public class CVRPPDTWProblemInstance : CVRPTWProblemInstance, IPickupAndDeliveryProblemInstance {
    4039    protected IValueParameter<IntArray> PickupDeliveryLocationParameter {
    4140      get { return (IValueParameter<IntArray>)Parameters["PickupDeliveryLocation"]; }
     
    4443      get { return (IValueParameter<DoubleValue>)Parameters["EvalPickupViolationPenalty"]; }
    4544    }
    46    
     45
    4746    public IntArray PickupDeliveryLocation {
    4847      get { return PickupDeliveryLocationParameter.Value; }
     
    6665
    6766    protected override IEnumerable<IOperator> GetOperators() {
    68       return 
     67      return
    6968        ApplicationManager.Manager.GetInstances<IPickupAndDeliveryOperator>()
    7069        .Where(o => !(o is IAnalyzer))
     
    7776        .Cast<IOperator>().Union(base.GetAnalyzers());
    7877    }
    79    
     78
    8079    protected override IVRPEvaluator Evaluator {
    8180      get {
     
    8786      return PickupDeliveryLocation[city];
    8887    }
    89    
     88
    9089    [StorableConstructor]
    9190    protected CVRPPDTWProblemInstance(bool deserializing) : base(deserializing) { }
     
    106105    protected CVRPPDTWProblemInstance(CVRPPDTWProblemInstance original, Cloner cloner)
    107106      : base(original, cloner) {
    108         AttachEventHandlers();
     107      AttachEventHandlers();
    109108    }
    110109
    111110    [StorableHook(HookType.AfterDeserialization)]
    112     private void AfterDeserializationHook() {
     111    private void AfterDeserialization() {
    113112      AttachEventHandlers();
    114113    }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWProblemInstance.cs

    r7864 r7934  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Common;
    2826using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    3027using HeuristicLab.Data;
    3128using HeuristicLab.Optimization;
     29using HeuristicLab.Parameters;
     30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3231using HeuristicLab.PluginInfrastructure;
     32using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3333using HeuristicLab.Problems.VehicleRouting.Variants;
    34 using HeuristicLab.Common;
    3534
    3635namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3736  [Item("CVRPTWProblemInstance", "Represents a single depot CVRPTW instance.")]
    3837  [StorableClass]
    39   public class CVRPTWProblemInstance: CVRPProblemInstance, ITimeWindowedProblemInstance {
     38  public class CVRPTWProblemInstance : CVRPProblemInstance, ITimeWindowedProblemInstance {
    4039    protected IValueParameter<DoubleArray> ReadyTimeParameter {
    4140      get { return (IValueParameter<DoubleArray>)Parameters["ReadyTime"]; }
     
    9796        .Cast<IOperator>().Union(base.GetAnalyzers());
    9897    }
    99    
     98
    10099    protected override IVRPEvaluator Evaluator {
    101100      get {
     
    103102      }
    104103    }
    105    
     104
    106105    [StorableConstructor]
    107106    protected CVRPTWProblemInstance(bool deserializing) : base(deserializing) { }
     
    125124    protected CVRPTWProblemInstance(CVRPTWProblemInstance original, Cloner cloner)
    126125      : base(original, cloner) {
    127         AttachEventHandlers();
     126      AttachEventHandlers();
    128127    }
    129128
    130129    [StorableHook(HookType.AfterDeserialization)]
    131     private void AfterDeserializationHook() {
     130    private void AfterDeserialization() {
    132131      AttachEventHandlers();
    133132    }
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPProblemInstance.cs

    r7852 r7934  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
     25using HeuristicLab.Common;
     26using HeuristicLab.Core;
     27using HeuristicLab.Data;
     28using HeuristicLab.Parameters;
     29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Problems.VehicleRouting.Encodings.General;
    2631using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    30 using HeuristicLab.Data;
    31 using HeuristicLab.Optimization;
    32 using HeuristicLab.PluginInfrastructure;
    33 using HeuristicLab.Common;
    34 using HeuristicLab.Problems.VehicleRouting.Encodings.General;
    3532
    3633namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
     
    7269      }
    7370    }
    74    
     71
    7572    protected ValueParameter<DoubleMatrix> CoordinatesParameter {
    7673      get { return (ValueParameter<DoubleMatrix>)Parameters["Coordinates"]; }
     
    174171
    175172    public IVRPEvaluator SolutionEvaluator {
    176       get {       
     173      get {
    177174        return evaluator;
    178175      }
     
    187184      if (distanceMatrix != null)
    188185        distance = distanceMatrix[start, end];
    189       else 
     186      else
    190187        distance = CalculateDistance(start, end);
    191188
     
    199196      startDistance = GetDistance(start, customer, solution);
    200197      endDistance = GetDistance(customer, end, solution);
    201      
     198
    202199      double newDistance = startDistance + endDistance;
    203200
     
    244241    protected abstract IVRPEvaluator Evaluator { get; }
    245242    protected abstract IVRPCreator Creator { get; }
    246    
     243
    247244    [StorableConstructor]
    248245    protected VRPProblemInstance(bool deserializing) : base(deserializing) { }
     
    265262    protected VRPProblemInstance(VRPProblemInstance original, Cloner cloner)
    266263      : base(original, cloner) {
    267       evaluator = Evaluator; 
     264      evaluator = Evaluator;
    268265      AttachEventHandlers();
    269266    }
    270267
    271268    [StorableHook(HookType.AfterDeserialization)]
    272     private void AfterDeserializationHook() {
     269    private void AfterDeserialization() {
    273270      evaluator = Evaluator;
    274271      AttachEventHandlers();
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs

    r7906 r7934  
    2727using HeuristicLab.Core;
    2828using HeuristicLab.Data;
    29 using HeuristicLab.Encodings.PermutationEncoding;
    3029using HeuristicLab.Optimization;
    3130using HeuristicLab.Parameters;
    3231using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3332using HeuristicLab.PluginInfrastructure;
     33using HeuristicLab.Problems.Instances;
    3434using HeuristicLab.Problems.VehicleRouting.Interfaces;
     35using HeuristicLab.Problems.VehicleRouting.Interpreters;
    3536using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    3637using HeuristicLab.Problems.VehicleRouting.Variants;
    37 using HeuristicLab.Problems.Instances;
    38 using System.Reflection;
    39 using HeuristicLab.Problems.VehicleRouting.Interpreters;
    4038
    4139namespace HeuristicLab.Problems.VehicleRouting {
     
    112110
    113111    [Storable]
    114     private List<IOperator> operators; 
     112    private List<IOperator> operators;
    115113
    116114    public IEnumerable<IOperator> Operators {
     
    173171      EventHandler handler = Reset;
    174172      if (handler != null) handler(this, EventArgs.Empty);
    175     } 
     173    }
    176174    #endregion
    177175
    178176    #region Helpers
    179177    [StorableHook(HookType.AfterDeserialization)]
    180     private void AfterDeserializationHook() {
     178    private void AfterDeserialization() {
    181179      AttachEventHandlers();
    182180      AttachProblemInstanceEventHandlers();
     
    204202
    205203        ProblemInstance.EvaluationChanged += new EventHandler(ProblemInstance_EvaluationChanged);
    206       }     
     204      }
    207205    }
    208206
     
    248246    private void SolutionCreatorParameter_ValueChanged(object sender, EventArgs e) {
    249247      ParameterizeSolutionCreator();
    250      
     248
    251249      OnSolutionCreatorChanged();
    252250    }
     
    369367      } else {
    370368        throw new Exception("Cannot find an interpreter for " + data.GetType());
    371       }   
     369      }
    372370    }
    373371  }
Note: See TracChangeset for help on using the changeset viewer.