Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/Symbols/Logical Expressions/Logical Comparators/Disjunction.cs @ 11247

Last change on this file since 11247 was 9630, checked in by ascheibe, 12 years ago

#2069 fixed cloning constructors and formatting

File size: 1.2 KB
RevLine 
[9565]1using HeuristicLab.Common;
2using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
3using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
[9630]5namespace HeuristicLab.Problems.Robocode {
6  [StorableClass]
7  public class Disjunction : 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 Disjunction(bool deserializing) : base(deserializing) { }
19    private Disjunction(Disjunction original, Cloner cloner)
20      : base(original, cloner) {
21    }
[9565]22
[9630]23    public Disjunction()
24      : base("Disjunction", "Disjunction comparator.") {
25      this.Prefix = "||";
26      this.Suffix = "";
27    }
[9565]28
[9630]29    public override IDeepCloneable Clone(Cloner cloner) {
30      return new Disjunction(this, cloner);
31    }
[9565]32
[9630]33    public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
34      return this.Prefix + " " + this.Suffix;
[9565]35    }
[9630]36  }
[9565]37}
Note: See TracBrowser for help on using the repository browser.