Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Interfaces/IReadOnlyErcOptions.cs @ 14875

Last change on this file since 14875 was 14875, checked in by pkimmesw, 7 years ago

#2665 BenchmarkSuite, all examples, partially tested, VectorExpressions added

File size: 707 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Interfaces {
2  public interface IReadOnlyErcOptions {
3    double ErcProbability { get; }
4    IReadOnlyIntegerErcOptions IntegerErcOptions { get; }
5    IReadOnlyFloatErcOptions FloatErcOptions { get; }
6    IReadOnlyBooleanErcOptions BooleanErcOptions { get; }
7    IReadOnlyCharErcOptions CharErcOptions { get; }
8    IReadOnlyStringErcOptions StringErcOptions { get; }
9    IReadOnlyNameErcOptions NameErcOptions { get; }
10    IReadOnlyVectorErcOptions<int> IntegerVectorErcOptions { get; }
11    IReadOnlyVectorErcOptions<double> FloatVectorErcOptions { get; }
12    IReadOnlyVectorErcOptions<string> StringVectorErcOptions { get; }
13  }
14}
Note: See TracBrowser for help on using the repository browser.