Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2665 Added PlushEncoding, ZeroErrorDistributionAnalzer

File size: 707 bytes
Line 
1using System.Collections.Generic;
2
3namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc {
4  using HeuristicLab.Core;
5
6  public interface IReadOnlyErcOptions : IItem {
7    double ErcProbability { get; }
8    IErcItem<int> IntegerErcOptions { get; }
9    IErcItem<double> FloatErcOptions { get; }
10    IErcItem<bool> BooleanErcOptions { get; }
11    IErcItem<char> CharErcOptions { get; }
12    IErcItem<string> StringErcOptions { get; }
13    IErcItem<string> NameErcOptions { get; }
14    IErcItem<IReadOnlyList<int>> IntegerVectorErcOptions { get; }
15    IErcItem<IReadOnlyList<double>> FloatVectorErcOptions { get; }
16    IErcItem<IReadOnlyList<string>> StringVectorErcOptions { get; }
17  }
18}
Note: See TracBrowser for help on using the repository browser.