Last change
on this file since 14875 was
14875,
checked in by pkimmesw, 8 years ago
|
#2665 BenchmarkSuite, all examples, partially tested, VectorExpressions added
|
File size:
795 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.Configuration {
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | using HeuristicLab.Common;
|
---|
5 | using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Interfaces;
|
---|
6 | using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;
|
---|
7 |
|
---|
8 | public interface IReadOnlyPushConfiguration : IDeepCloneable {
|
---|
9 | IReadOnlyDictionary<StackTypes, bool> EnabledStacks { get; }
|
---|
10 | int EvalPushLimit { get; }
|
---|
11 | int MaxDepth { get; }
|
---|
12 | int MaxStringLength { get; }
|
---|
13 | int MaxVectorLength { get; }
|
---|
14 | int MaxPointsInProgram { get; }
|
---|
15 | int MaxPointsInRandomExpression { get; }
|
---|
16 | bool TopLevelPushCode { get; }
|
---|
17 | bool TopLevelPopCode { get; }
|
---|
18 | IReadOnlyErcOptions ErcOptions { get; }
|
---|
19 | IReadOnlyList<string> EnabledExpressions { get; }
|
---|
20 | }
|
---|
21 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.