Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2665 simplifier, push solution results view, performance improvements, small bug fixes, ui fixes

File size: 360 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Stack {
2  using System;
3
4  [Flags]
5  public enum StackTypes : 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  }
16}
Note: See TracBrowser for help on using the repository browser.