Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/17 01:11:18 (8 years ago)
Author:
pkimmesw
Message:

#2665 simplifier, push solution results view, performance improvements, small bug fixes, ui fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs

    r14744 r14777  
    22  using System.Collections.Generic;
    33
    4   public interface IReadonlyPushConfiguration {
     4  using HeuristicLab.Common;
     5
     6  public interface IReadOnlyPushConfiguration : IDeepCloneable {
    57    bool IsBooleanStackEnabled { get; }
    68    bool IsIntegerStackEnabled { get; }
    79    bool IsFloatStackEnabled { get; }
     10    bool IsCharStackEnabled { get; }
     11    bool IsStringStackEnabled { get; }
    812    bool IsCodeStackEnabled { get; }
    913    bool IsNameStackEnabled { get; }
     
    1115    int EvalPushLimit { get; }
    1216    int MaxDepth { get; }
     17    int MaxStringLength { get; }
    1318    int MaxPointsInProgram { get; }
    1419    int MaxPointsInRandomExpression { get; }
Note: See TracChangeset for help on using the changeset viewer.