Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14907 was 14897, checked in by pkimmesw, 8 years ago

#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push

File size: 723 bytes
RevLine 
[14744]1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Configuration {
2  using System.Collections.Generic;
[14897]3  using Base.Erc;
4  using Common;
5  using Stack;
[14744]6
[14777]7  public interface IReadOnlyPushConfiguration : IDeepCloneable {
[14834]8    IReadOnlyDictionary<StackTypes, bool> EnabledStacks { get; }
[14744]9    int EvalPushLimit { get; }
10    int MaxDepth { get; }
[14777]11    int MaxStringLength { get; }
[14834]12    int MaxVectorLength { get; }
[14897]13    int MinPointsInProgram { get; }
[14744]14    int MaxPointsInProgram { get; }
15    int MaxPointsInRandomExpression { get; }
16    bool TopLevelPushCode { get; }
17    bool TopLevelPopCode { get; }
[14834]18    IReadOnlyErcOptions ErcOptions { get; }
[14744]19    IReadOnlyList<string> EnabledExpressions { get; }
20  }
21}
Note: See TracBrowser for help on using the repository browser.