Free cookie consent management tool by TermsFeed Policy Generator

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

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

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