Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/DataTypes.cs @ 17777

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

#2665 Fixed bias 0 issue, PushExpressionFrequencyAnalyzer, Fixed probability for ERC settings, Fixed enable/disable instructions, Added expression descriptions

File size: 459 bytes
Line 
1namespace HeuristicLab.BenchmarkSuite {
2  using System;
3
4  [Flags]
5  public enum DataTypes {
6    None = 0x01, // 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 = 0x800,
18    StringVector = 0x1000,
19    BooleanVector = 0x2000,
20  }
21}
Note: See TracBrowser for help on using the repository browser.