Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/LocalImprovement/AlbaLambdaInterchangeLocalImprovementOperator.cs

    r16453 r16462  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    2622using HeuristicLab.Optimization;
    2723using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2925using HeuristicLab.Data;
    3026using HeuristicLab.Common;
    3127using HeuristicLab.Parameters;
    32 using HeuristicLab.Operators;
    3328using HeuristicLab.Problems.VehicleRouting.Interfaces;
    3429
    3530namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
    3631  [Item("AlbaLambdaInterchangeLocalImprovementOperator", "Takes a solution and finds the local optimum with respect to the lambda interchange neighborhood by decending along the steepest gradient.")]
    37   [StorableClass]
     32  [StorableType("84981F03-B886-4ADD-8DB5-C12628404335")]
    3833  public class AlbaLambdaInterchangeLocalImprovementOperator : VRPOperator, IStochasticOperator, ILocalImprovementOperator, ISingleObjectiveOperator {
    3934
     
    7166
    7267    [StorableConstructor]
    73     protected AlbaLambdaInterchangeLocalImprovementOperator(bool deserializing) : base(deserializing) { }
     68    protected AlbaLambdaInterchangeLocalImprovementOperator(StorableConstructorFlag _) : base(_) { }
    7469    protected AlbaLambdaInterchangeLocalImprovementOperator(AlbaLambdaInterchangeLocalImprovementOperator original, Cloner cloner)
    7570      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.