Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 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.GrammaticalEvolution/3.4/Mappers/PIGEMapper.cs

    r16453 r16462  
    2828using HeuristicLab.Encodings.IntegerVectorEncoding;
    2929using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131
    3232namespace HeuristicLab.Problems.GrammaticalEvolution {
     
    6868  /// </remarks>
    6969  [Item("PIGEMapper", "Position Independent (PI) Grammatical Evolution Mapper")]
    70   [StorableClass]
     70  [StorableType("AFD85902-C2EA-47F5-8284-BA1759848580")]
    7171  public class PIGEMapper : GenotypeToPhenotypeMapper {
    7272
     
    8686
    8787    [StorableConstructor]
    88     protected PIGEMapper(bool deserializing) : base(deserializing) { }
     88    protected PIGEMapper(StorableConstructorFlag _) : base(_) { }
    8989    protected PIGEMapper(PIGEMapper original, Cloner cloner) : base(original, cloner) { }
    9090    public PIGEMapper() : base() { }
Note: See TracChangeset for help on using the changeset viewer.