Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Attributes/PushStackAttribute.cs @ 15344

Last change on this file since 15344 was 15289, checked in by pkimmesw, 7 years ago

#2665 Fixed analyzer, fixed Plush encoding + operators, adpated print evaluation according to McPhee

File size: 416 bytes
Line 
1using System;
2
3namespace HeuristicLab.Problems.ProgramSynthesis.Push.Attributes {
4  using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;
5
6  [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
7  public class PushStackAttribute : Attribute {
8    public readonly StackTypes StackType;
9
10    public PushStackAttribute(StackTypes stackType) {
11      StackType = stackType;
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.