Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Constants/Environment.cs @ 15032

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

#2665 Fixed Benchmark Problem Definition, Converted LoopExpressions to stateless expressions, Added several unit test to ensure funcionality, Fixed UI bugs

File size: 854 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Constants {
2  public static class PushEnvironment {
3    public const char VectorStartSymbol = '[';
4    public const string VectorStartSymbolStr = "[";
5    public const char VectorEndSymbol = ']';
6    public const string VectorEndSymbolStr = "]";
7    public const char VectorSeparatorSymbol = ' ';
8    public const string VectorSeparatorSymbolStr = " ";
9
10    public const char ProgramStartSymbol = '(';
11    public const string ProgramStartSymbolStr = "(";
12    public const char ProgramEndSymbol = ')';
13    public const string ProgramEndSymbolStr = ")";
14
15    public const char CharSymbol = '\'';
16    public const char StringSymbol = '\"';
17    public const string CharSymbolStr = "'";
18    public const string StringSymbolStr = "\"";
19    public const string NewLine = "\n";
20  }
21}
Note: See TracBrowser for help on using the repository browser.