Line | |
---|
1 | namespace 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.