Last change
on this file since 17021 was
15771,
checked in by bburlacu, 7 years ago
|
#2895: Add solution skeleton for PushGP with genealogy analysis.
|
File size:
880 bytes
|
Rev | Line | |
---|
[15771] | 1 | namespace HeuristicLab.Problems.ProgramSynthesis { |
---|
[15189] | 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 = "\"";
|
---|
[15289] | 19 | public const char NewLine = '\n';
|
---|
| 20 | public const string NewLineStr = "\n";
|
---|
[15189] | 21 | }
|
---|
| 22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.