Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/DataTypes.cs @ 15032

Last change on this file since 15032 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
RevLine 
[14777]1namespace HeuristicLab.BenchmarkSuite {
2  using System;
3
4  [Flags]
[15032]5  public enum DataTypes {
[14897]6    None = 0x01, // Required to specify expression dependencies
[14777]7    Integer = 0x02,
8    Float = 0x04,
9    Char = 0x08,
10    String = 0x10,
11    Boolean = 0x20,
12    Name = 0x40,
13    Code = 0x80,
14    Exec = 0x100,
[14875]15    Print = 0x200,
16    IntegerVector = 0x400,
[14897]17    FloatVector = 0x800,
[14875]18    StringVector = 0x1000,
[14897]19    BooleanVector = 0x2000,
[14777]20  }
21}
Note: See TracBrowser for help on using the repository browser.