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 ElseStatement : CodeNode {
|
---|
| 8 | public override int MinimumArity { get { return 1; } }
|
---|
| 9 | public override int MaximumArity { get { return 1; } }
|
---|
[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 ElseStatement(bool deserializing) : base(deserializing) { }
|
---|
| 19 | private ElseStatement(ElseStatement original, Cloner cloner)
|
---|
| 20 | : base(original, cloner) {
|
---|
[9565] | 21 |
|
---|
[9630] | 22 | }
|
---|
[9565] | 23 |
|
---|
[9630] | 24 | public ElseStatement()
|
---|
| 25 | : base("ElseStatement", "An ElseStatement.") {
|
---|
| 26 | this.Prefix = "else";
|
---|
| 27 | this.Suffix = "";
|
---|
| 28 | }
|
---|
[9565] | 29 |
|
---|
[9630] | 30 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 31 | return new ElseStatement(this, cloner);
|
---|
[9565] | 32 | }
|
---|
[9630] | 33 |
|
---|
| 34 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
| 35 | string result = "";
|
---|
| 36 | foreach (ISymbolicExpressionTreeNode c in children)
|
---|
| 37 | result += "\r\n" + ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
| 38 | return (result == "") ? "" : this.Prefix + "\r\n" + result + "\r\n" + this.Suffix;
|
---|
| 39 | }
|
---|
| 40 | }
|
---|
[9565] | 41 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.