Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (7 years ago)
Author:
pkimmesw
Message:

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/IntegerVector/IntegerVectorErcOptions.cs

    r14897 r14952  
    88  public class IntegerVectorErcOptions : ErcOption<IReadOnlyList<int>> {
    99    public IntegerVectorErcOptions() { }
    10     public IntegerVectorErcOptions(params IWeightedErcValueItem<IReadOnlyList<int>>[] values) : base(true, values) { }
     10    public IntegerVectorErcOptions(params WeightedErcItem<IReadOnlyList<int>>[] values) : base(true, values) { }
    1111
    12     public IntegerVectorErcOptions(bool isEnabled, params IWeightedErcValueItem<IReadOnlyList<int>>[] values) : base(isEnabled, values) { }
     12    public IntegerVectorErcOptions(bool isEnabled, params WeightedErcItem<IReadOnlyList<int>>[] values) : base(isEnabled, values) { }
    1313
    1414    [StorableConstructor]
     
    2020      return new IntegerVectorErcOptions(this, cloner);
    2121    }
     22
     23    public override string ToString() {
     24      return "IntegerVector";
     25    }
    2226  }
    2327}
Note: See TracChangeset for help on using the changeset viewer.