Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/17/11 17:16:33 (13 years ago)
Author:
epitzer
Message:

check hooks by method name only (#1530)

Location:
branches/PersistenceSpeedUp/HeuristicLab.Problems.VehicleRouting/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceSpeedUp/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestVRPSolutionAnalyzer.cs

    r5445 r6228  
    9595    public BestVRPSolutionAnalyzer()
    9696      : base() {
    97         Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
     97      Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated."));
    9898      Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities."));
    9999      Parameters.Add(new LookupParameter<DoubleMatrix>("DistanceMatrix", "The matrix which contains the distances between the cities."));
     
    121121
    122122    [StorableHook(HookType.AfterDeserialization)]
    123     private void AfterDeserializationHook() {
     123    private void AfterDeserialization() {
    124124      #region Backwards Compatibility
    125125      if (!Parameters.ContainsKey("BestKnownQuality")) {
  • branches/PersistenceSpeedUp/HeuristicLab.Problems.VehicleRouting/3.3/VehicleRoutingProblem.cs

    r6042 r6228  
    436436    #region Helpers
    437437    [StorableHook(HookType.AfterDeserialization)]
    438     private void AfterDeserializationHook() {
     438    private void AfterDeserialization() {
    439439      #region Backwards Compatibility
    440440      if (!Parameters.ContainsKey("BestKnownSolution")) {
Note: See TracChangeset for help on using the changeset viewer.