Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push

File size: 723 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Configuration {
2  using System.Collections.Generic;
3  using Base.Erc;
4  using Common;
5  using Stack;
6
7  public interface IReadOnlyPushConfiguration : IDeepCloneable {
8    IReadOnlyDictionary<StackTypes, bool> EnabledStacks { get; }
9    int EvalPushLimit { get; }
10    int MaxDepth { get; }
11    int MaxStringLength { get; }
12    int MaxVectorLength { get; }
13    int MinPointsInProgram { 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.