Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs
- Timestamp:
- 06/12/17 14:11:43 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs
r15017 r15032 3 3 using Base.Erc; 4 4 using Common; 5 6 using HeuristicLab.Core; 7 5 8 using Stack; 6 9 7 public interface IReadOnlyPushConfiguration : IDeepCloneable { 8 IReadOnlyDictionary<StackTypes, bool> EnabledStacks { get; } 10 public interface IReadOnlyPushConfiguration : IItem { 9 11 int EvalPushLimit { get; } 10 12 int MaxDepth { get; } … … 20 22 IReadOnlyList<string> EnabledExpressions { get; } 21 23 string FloatStringFormat { get; } 24 25 bool IsStackEnabled(StackTypes stackType); 22 26 } 23 27 }
Note: See TracChangeset
for help on using the changeset viewer.