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/StringVector/StringVectorErcOptions.cs

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