Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push.Base/Erc/IReadOnlyErcOptions.cs @ 16724

Last change on this file since 16724 was 15771, checked in by bburlacu, 7 years ago

#2895: Add solution skeleton for PushGP with genealogy analysis.

File size: 697 bytes
RevLine 
[14897]1using System.Collections.Generic;
2
[15771]3namespace HeuristicLab.Problems.ProgramSynthesis {
[15275]4  using HeuristicLab.Core;
5
6  public interface IReadOnlyErcOptions : IItem {
[14897]7    double ErcProbability { get; }
[14952]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; }
[14897]17  }
18}
Note: See TracBrowser for help on using the repository browser.