Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 15189 was 15017, checked in by pkimmesw, 8 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
RevLine 
[14897]1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Constants {
2  public static class PushEnvironment {
3    public const char VectorStartSymbol = '[';
[15017]4    public const string VectorStartSymbolStr = "[";
[14897]5    public const char VectorEndSymbol = ']';
[15017]6    public const string VectorEndSymbolStr = "]";
[14897]7    public const char VectorSeparatorSymbol = ' ';
[15017]8    public const string VectorSeparatorSymbolStr = " ";
[14897]9
[15017]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 = '\'';
[14897]16    public const char StringSymbol = '\"';
[15017]17    public const string CharSymbolStr = "'";
18    public const string StringSymbolStr = "\"";
[14952]19    public const string NewLine = "\n";
[14897]20  }
21}
Note: See TracBrowser for help on using the repository browser.