Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs @ 17839

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

#2665 Testet Problems, Improved Performance

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