Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs @ 16003

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

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

File size: 669 bytes
RevLine 
[15771]1namespace HeuristicLab.Problems.ProgramSynthesis {
[15273]2  public interface IReadOnlyPushConfiguration : IReadOnlyExpressionsConfiguration {
[14744]3    int EvalPushLimit { get; }
4    int MaxDepth { get; }
[14777]5    int MaxStringLength { get; }
[14834]6    int MaxVectorLength { get; }
[15334]7    int MaxProgramLength { get; }
[14744]8    int MaxPointsInRandomExpression { get; }
9    bool TopLevelPushCode { get; }
10    bool TopLevelPopCode { get; }
[15334]11    int MaxClose { get; }
12    double CloseBiasLevel { get; }
[14834]13    IReadOnlyErcOptions ErcOptions { get; }
[15017]14    string FloatStringFormat { get; }
[15334]15    bool TopLevelPushInputArguments { get; }
[15032]16
17    bool IsStackEnabled(StackTypes stackType);
[14744]18  }
19}
Note: See TracBrowser for help on using the repository browser.