Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (8 years ago)
Author:
pkimmesw
Message:

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Attributes/PushExpressionAttriubte.cs

    r14908 r14952  
    99    public readonly StackTypes AdditionalStackDependencies;
    1010    public readonly string ExpressionName;
     11    public readonly bool ManipulatesExec;
    1112
    1213    public PushExpressionAttribute(StackTypes stackType, string expressionName, StackTypes additionalStackDependencies = default(StackTypes)) {
     
    1415      AdditionalStackDependencies = additionalStackDependencies;
    1516      ExpressionName = expressionName;
     17      ManipulatesExec = stackType == StackTypes.Exec || AdditionalStackDependencies.HasFlag(StackTypes.Exec);
    1618    }
    1719  }
Note: See TracChangeset for help on using the changeset viewer.