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/IReadOnlyErcOptions.cs

    r14897 r14952  
    44  public interface IReadOnlyErcOptions {
    55    double ErcProbability { get; }
    6     IErcValueItem<int> IntegerErcOptions { get; }
    7     IErcValueItem<double> FloatErcOptions { get; }
    8     IErcValueItem<bool> BooleanErcOptions { get; }
    9     IErcValueItem<char> CharErcOptions { get; }
    10     IErcValueItem<string> StringErcOptions { get; }
    11     IErcValueItem<string> NameErcOptions { get; }
    12     IErcValueItem<IReadOnlyList<int>> IntegerVectorErcOptions { get; }
    13     IErcValueItem<IReadOnlyList<double>> FloatVectorErcOptions { get; }
    14     IErcValueItem<IReadOnlyList<string>> StringVectorErcOptions { get; }
     6    IErcItem<int> IntegerErcOptions { get; }
     7    IErcItem<double> FloatErcOptions { get; }
     8    IErcItem<bool> BooleanErcOptions { get; }
     9    IErcItem<char> CharErcOptions { get; }
     10    IErcItem<string> StringErcOptions { get; }
     11    IErcItem<string> NameErcOptions { get; }
     12    IErcItem<IReadOnlyList<int>> IntegerVectorErcOptions { get; }
     13    IErcItem<IReadOnlyList<double>> FloatVectorErcOptions { get; }
     14    IErcItem<IReadOnlyList<string>> StringVectorErcOptions { get; }
    1515  }
    1616}
Note: See TracChangeset for help on using the changeset viewer.