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