Rev | Line | |
---|
[9565] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 3 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 4 |
|
---|
[9630] | 5 | namespace HeuristicLab.Problems.Robocode {
|
---|
| 6 | [StorableClass]
|
---|
| 7 | public class Number : CodeNode {
|
---|
| 8 | public override int MinimumArity { get { return 0; } }
|
---|
| 9 | public override int MaximumArity { get { return 0; } }
|
---|
[9565] | 10 |
|
---|
[9630] | 11 | [Storable]
|
---|
| 12 | public override string Prefix { get; set; }
|
---|
[9565] | 13 |
|
---|
[9630] | 14 | [Storable]
|
---|
| 15 | public override string Suffix { get; set; }
|
---|
[9565] | 16 |
|
---|
[9630] | 17 | [StorableConstructor]
|
---|
| 18 | private Number(bool deserializing) : base(deserializing) { }
|
---|
| 19 | private Number(Number original, Cloner cloner)
|
---|
| 20 | : base(original, cloner) {
|
---|
| 21 | }
|
---|
[9565] | 22 |
|
---|
[9630] | 23 | public Number()
|
---|
| 24 | : base("Number", "A Number.") {
|
---|
| 25 | this.Prefix = "";
|
---|
| 26 | this.Suffix = "";
|
---|
| 27 | }
|
---|
[9565] | 28 |
|
---|
[9630] | 29 | public override ISymbolicExpressionTreeNode CreateTreeNode() {
|
---|
[9565] | 30 |
|
---|
[9630] | 31 | return new NumberTreeNode();
|
---|
| 32 | }
|
---|
[9565] | 33 |
|
---|
[9630] | 34 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 35 | return new Number(this, cloner);
|
---|
[9565] | 36 | }
|
---|
[9630] | 37 |
|
---|
| 38 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
| 39 | return " " + ((NumberTreeNode)node).Value + " ";
|
---|
| 40 | }
|
---|
| 41 | }
|
---|
[9565] | 42 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.