Last change
on this file since 17603 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 | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace 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.