Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 18:24:59 (5 years ago)
Author:
gkronber
Message:

#2520: changed HeuristicLab.BioBoost addon to compile with new HL.Persistence

File:
1 edited

Legend:

Unmodified
Added
Removed
  • addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/ProblemDescription/NeighborhoodTable.cs

    r13071 r16575  
    2828using System.Globalization;
    2929using System.Linq;
     30using HEAL.Attic;
    3031
    3132namespace HeuristicLab.BioBoost.ProblemDescription {
    3233 
    33   [StorableClass]
     34  [StorableType("F7026CD3-DA57-4AEE-8AB7-F93BDFCE3CDE")]
    3435  public class NeighborhoodTable : Item, IStringConvertibleMatrix {
    3536
     
    6263    #region Construction & Cloning
    6364    [StorableConstructor]
    64     protected NeighborhoodTable(bool isDeserializing) : base(isDeserializing) {}
     65    protected NeighborhoodTable(StorableConstructorFlag _) : base(_) { }
    6566    protected NeighborhoodTable(NeighborhoodTable orig, Cloner cloner) : base(orig, cloner) {
    6667      table = orig.table.ToDictionary(p => p.Key, p => p.Value);
Note: See TracChangeset for help on using the changeset viewer.