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/Char/CharErcOptions.cs

    r14905 r14952  
    1010    public CharErcOptions() { }
    1111
    12     public CharErcOptions(params IWeightedErcValueItem<int>[] values) : this(true, values) { }
     12    public CharErcOptions(params WeightedErcItem<int>[] values) : this(true, values) { }
    1313
    14     public CharErcOptions(bool isEnabled, params IWeightedErcValueItem<int>[] values) : base(isEnabled, values) { }
     14    public CharErcOptions(bool isEnabled, params WeightedErcItem<int>[] values) : base(isEnabled, values) { }
    1515
    1616    [StorableConstructor]
     
    2626      return GetErcValue(random, Convert.ToChar);
    2727    }
     28
     29    public override string ToString() {
     30      return "Char";
     31    }
    2832  }
    2933}
Note: See TracChangeset for help on using the changeset viewer.