Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/DataTypes.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: 439 bytes
Line 
1namespace HeuristicLab.BenchmarkSuite {
2  using System;
3
4  [Flags]
5  public enum DataTypes : ushort {
6    None = 0x00, // Required to specify expression dependencies
7    Integer = 0x02,
8    Float = 0x04,
9    Char = 0x08,
10    String = 0x10,
11    Boolean = 0x20,
12    Name = 0x40,
13    Code = 0x80,
14    Exec = 0x100,
15    Print = 0x200,
16    IntegerVector = 0x400,
17    FloatVector = 0x700,
18    StringVector = 0x1000,
19  }
20}
Note: See TracBrowser for help on using the repository browser.