Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/17 01:11:18 (7 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/Attributes/PushExpressionAttriubte.cs

    r14727 r14777  
    66  [AttributeUsage(AttributeTargets.Class)]
    77  public class PushExpressionAttribute : Attribute {
    8     public readonly StackType StackType;
     8    public readonly StackTypes StackTypes;
     9    public readonly StackTypes AdditionalStackDependencies;
    910    public readonly string ExpressionName;
    1011
    11     public PushExpressionAttribute(StackType stackType, string expressionName) {
    12       this.StackType = stackType;
     12    public PushExpressionAttribute(StackTypes stackTypes, string expressionName, StackTypes additionalStackDependencies = default(StackTypes)) {
     13      this.StackTypes = stackTypes;
     14      this.AdditionalStackDependencies = additionalStackDependencies;
    1315      this.ExpressionName = expressionName;
    1416    }
Note: See TracChangeset for help on using the changeset viewer.