Free cookie consent management tool by TermsFeed Policy Generator

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

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

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

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