Last change
on this file since 15287 was
15273,
checked in by pkimmesw, 7 years ago
|
#2665 Started Plush Encoding, Added Zero Error Individual Count Analyzer
|
File size:
821 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.Configuration {
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using Base.Erc;
|
---|
4 |
|
---|
5 | using Stack;
|
---|
6 |
|
---|
7 | public interface IReadOnlyPushConfiguration : IReadOnlyExpressionsConfiguration {
|
---|
8 | int Seed { get; }
|
---|
9 | int EvalPushLimit { get; }
|
---|
10 | int MaxDepth { get; }
|
---|
11 | int MaxStringLength { get; }
|
---|
12 | int MaxVectorLength { get; }
|
---|
13 | int MaxPointsInProgram { get; }
|
---|
14 | int MaxPointsInRandomExpression { get; }
|
---|
15 | bool TopLevelPushCode { get; }
|
---|
16 | bool TopLevelPopCode { get; }
|
---|
17 | int MaxParenthesesClose { get; }
|
---|
18 | double ParenthesesCloseBiasLevel { get; }
|
---|
19 | IReadOnlyErcOptions ErcOptions { get; }
|
---|
20 | IReadOnlyList<string> EnabledExpressions { get; }
|
---|
21 | string FloatStringFormat { get; }
|
---|
22 |
|
---|
23 | bool IsStackEnabled(StackTypes stackType);
|
---|
24 | }
|
---|
25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.