Free cookie consent management tool by TermsFeed Policy Generator

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

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

Location:
addons/HeuristicLab.MetaOptimization
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • addons/HeuristicLab.MetaOptimization

    • Property svn:ignore
      •  

        old new  
        88HeuristicLab.MetaOptimization.sln.docstates.suo
        99_ReSharper.HeuristicLab.MetaOptimization
         10packages
  • addons/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Encoding/RangeConstraints/DoubleValueRange.cs

    r8087 r16574  
    55using HeuristicLab.Data;
    66using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     7using HEAL.Attic;
    78
    89namespace HeuristicLab.Problems.MetaOptimization {
    9   [StorableClass]
     10  [StorableType("4D296D1B-020F-49AF-A36A-D4948C4EC0B0")]
    1011  public class DoubleValueRange : Range<DoubleValue> {
    1112
     
    2122    public DoubleValueRange(DoubleValue lowerBound, DoubleValue upperBound, DoubleValue stepSize) : base(lowerBound, upperBound, stepSize) { }
    2223    [StorableConstructor]
    23     protected DoubleValueRange(bool deserializing) : base(deserializing) { }
     24    protected DoubleValueRange(StorableConstructorFlag _) : base(_) { }
    2425    protected DoubleValueRange(DoubleValueRange original, Cloner cloner) : base(original, cloner) { }
    2526    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.