Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/StackTypes.cs @ 14875

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

#2665 BenchmarkSuite, all examples, partially tested, VectorExpressions added

File size: 593 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Stack {
2  using System;
3
4  // Be aware that it is assumed that this values are equal to HeuristicLab.BenchmarkSuite.DataTypes
5  [Flags]
6  public enum StackTypes : ushort {
7    None = 0x00, // Required to specify expression dependencies
8    Integer = 0x02,
9    Float = 0x04,
10    Char = 0x08,
11    String = 0x10,
12    Boolean = 0x20,
13    Name = 0x40,
14    Code = 0x80,
15    Exec = 0x100,
16    Return = 0x200,
17    IntegerVector = 0x400,
18    FloatVector = 0x800,
19    StringVector = 0x1000,
20    BooleanVector = 0x2000
21  }
22}
Note: See TracBrowser for help on using the repository browser.