Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14952 was 14834, checked in by pkimmesw, 8 years ago

#2665 LexicaseSelector, Performance improvements, UI Fixes, Debugger only shows used stacks, fixed Debugger stepping, Added vector expressions, ERCOptions,

File size: 414 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    public PushStackAttribute(StackTypes stackType) {
10      StackType = stackType;
11    }
12  }
13}
Note: See TracBrowser for help on using the repository browser.