Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/01/17 09:28:34 (7 years ago)
Author:
pkimmesw
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Constants/Environment.cs

    r14952 r15017  
    22  public static class PushEnvironment {
    33    public const char VectorStartSymbol = '[';
     4    public const string VectorStartSymbolStr = "[";
    45    public const char VectorEndSymbol = ']';
     6    public const string VectorEndSymbolStr = "]";
    57    public const char VectorSeparatorSymbol = ' ';
     8    public const string VectorSeparatorSymbolStr = " ";
    69
    7     public const char CharacterSymbol = '\'';
     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 = '\'';
    816    public const char StringSymbol = '\"';
     17    public const string CharSymbolStr = "'";
     18    public const string StringSymbolStr = "\"";
    919    public const string NewLine = "\n";
    1020  }
Note: See TracChangeset for help on using the changeset viewer.