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