Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push

File size: 714 bytes
Line 
1using System.Collections.Generic;
2
3namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc {
4  public interface IReadOnlyErcOptions {
5    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; }
15  }
16}
Note: See TracBrowser for help on using the repository browser.