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 LogicalValue : CodeNode {
|
---|
8 | public override int MinimumArity { get { return 0; } }
|
---|
9 | public override int MaximumArity { get { return 0; } }
|
---|
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 LogicalValue(bool deserializing) : base(deserializing) { }
|
---|
19 | private LogicalValue(LogicalValue original, Cloner cloner)
|
---|
20 | : base(original, cloner) {
|
---|
21 | }
|
---|
22 |
|
---|
23 | public LogicalValue()
|
---|
24 | : base("LogicalValue", "A LogicalValue.") {
|
---|
25 | this.Prefix = "";
|
---|
26 | this.Suffix = "";
|
---|
27 | }
|
---|
28 |
|
---|
29 | public override ISymbolicExpressionTreeNode CreateTreeNode() {
|
---|
30 |
|
---|
31 | return new BooleanTreeNode();
|
---|
32 | }
|
---|
33 |
|
---|
34 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
35 | return new LogicalValue(this, cloner);
|
---|
36 | }
|
---|
37 |
|
---|
38 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
39 | return " " + ((BooleanTreeNode)node).Value.ToString().ToLower() + " ";
|
---|
40 | }
|
---|
41 | }
|
---|
42 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.