Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Constants/PushEnvironment.cs @ 17603

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

#2665 Fixed analyzer, fixed Plush encoding + operators, adpated print evaluation according to McPhee

File size: 896 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 char NewLine = '\n';
20    public const string NewLineStr = "\n";
21  }
22}
Note: See TracBrowser for help on using the repository browser.