Changeset 14777 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs
- Timestamp:
- 03/23/17 01:11:18 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs
r14744 r14777 2 2 using System.Collections.Generic; 3 3 4 public interface IReadonlyPushConfiguration { 4 using HeuristicLab.Common; 5 6 public interface IReadOnlyPushConfiguration : IDeepCloneable { 5 7 bool IsBooleanStackEnabled { get; } 6 8 bool IsIntegerStackEnabled { get; } 7 9 bool IsFloatStackEnabled { get; } 10 bool IsCharStackEnabled { get; } 11 bool IsStringStackEnabled { get; } 8 12 bool IsCodeStackEnabled { get; } 9 13 bool IsNameStackEnabled { get; } … … 11 15 int EvalPushLimit { get; } 12 16 int MaxDepth { get; } 17 int MaxStringLength { get; } 13 18 int MaxPointsInProgram { get; } 14 19 int MaxPointsInRandomExpression { get; }
Note: See TracChangeset
for help on using the changeset viewer.