Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs @ 14744

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

#2665 Renamings due to typos, ManagedPool tests, Skip Noops in Debugger

File size: 858 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Configuration {
2  using System.Collections.Generic;
3
4  public interface IReadonlyPushConfiguration {
5    bool IsBooleanStackEnabled { get; }
6    bool IsIntegerStackEnabled { get; }
7    bool IsFloatStackEnabled { get; }
8    bool IsCodeStackEnabled { get; }
9    bool IsNameStackEnabled { get; }
10    double ErcProbability { get; }
11    int EvalPushLimit { get; }
12    int MaxDepth { get; }
13    int MaxPointsInProgram { get; }
14    int MaxPointsInRandomExpression { get; }
15    bool TopLevelPushCode { get; }
16    bool TopLevelPopCode { get; }
17    int MinRandomInteger { get; }
18    int MaxRandomInteger { get; }
19    double MinRandomFloat { get; }
20    double MaxRandomFloat { get; }
21    double NewErcNameProbability { get; }
22
23    IReadOnlyList<string> EnabledExpressions { get; }
24  }
25}
Note: See TracBrowser for help on using the repository browser.