Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14907 was 14897, checked in by pkimmesw, 8 years ago

#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push

File size: 358 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Constants {
2  public static class PushEnvironment {
3    public const char VectorStartSymbol = '[';
4    public const char VectorEndSymbol = ']';
5    public const char VectorSeparatorSymbol = ' ';
6
7    public const char CharacterSymbol = '\'';
8    public const char StringSymbol = '\"';
9  }
10}
Note: See TracBrowser for help on using the repository browser.