Beispiel #1
0
 public Branch(Branch mother, MBB mbb)
 {
     _mother = mother;
     _mbb    = mbb;
 }
Beispiel #2
0
 public Branch(List <Node> childs, Branch mother, MBB mbb)
 {
     _childs = childs;
     _mother = mother;
     _mbb    = mbb;
 }