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