Exemple #1
0
 public XorNode(string Id, XNorNode one, NotNode two) : base(Id)
 {
     this.one = one;
     this.two = two;
 }
Exemple #2
0
 public NorNode(string id, OrNode orNode, NotNode notNode) : base(id)
 {
     this.orNode  = orNode;
     this.notNode = notNode;
 }