[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 LogicalExpression : 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 LogicalExpression(bool deserializing) : base(deserializing) { }
|
---|
| 19 | private LogicalExpression(LogicalExpression original, Cloner cloner)
|
---|
| 20 | : base(original, cloner) {
|
---|
| 21 | }
|
---|
[9565] | 22 |
|
---|
[9630] | 23 | public LogicalExpression()
|
---|
| 24 | : base("LogicalExpression", "A LogicalExpression.") {
|
---|
| 25 | this.Prefix = "";
|
---|
| 26 | this.Suffix = "";
|
---|
| 27 | }
|
---|
[9565] | 28 |
|
---|
[9630] | 29 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 30 | return new LogicalExpression(this, cloner);
|
---|
| 31 | }
|
---|
[9565] | 32 |
|
---|
[9630] | 33 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
| 34 | var enumerator = children.GetEnumerator();
|
---|
[9565] | 35 |
|
---|
[9630] | 36 | if (!enumerator.MoveNext()) throw new System.Exception("LogicalExpression was not given a child.");
|
---|
| 37 | var symbol = enumerator.Current.Symbol;
|
---|
[9565] | 38 |
|
---|
[9630] | 39 | if (!(symbol is LogicalValue || symbol is LogicalComparison ||
|
---|
| 40 | symbol is NumericalComparison || symbol is Negation))
|
---|
| 41 | throw new System.Exception("LogicalExpression was given a child of type " + symbol.GetType().ToString() +
|
---|
| 42 | ". The expected child must be of type " + typeof(LogicalValue).ToString() + " or " +
|
---|
| 43 | typeof(LogicalComparison).ToString() + " or " + typeof(NumericalComparison).ToString() + " or " +
|
---|
| 44 | typeof(Negation).ToString() + ".");
|
---|
[9565] | 45 |
|
---|
[9630] | 46 | string result = ((CodeNode)symbol).Interpret(enumerator.Current, enumerator.Current.Subtrees);
|
---|
| 47 | if (enumerator.MoveNext()) throw new System.Exception("LogicalExpression was given more than one child.");
|
---|
[9565] | 48 |
|
---|
[9630] | 49 | return this.Prefix + result + this.Suffix;
|
---|
[9565] | 50 | }
|
---|
[9630] | 51 | }
|
---|
[9565] | 52 | }
|
---|