Ejemplo n.º 1
0
 /// <summary>
 /// This is a copy constructor for JoinTree.
 /// </summary>
 /// <param name="other">the JoinTree to copy</param>
 public JoinTree(JoinTree other)
     : base(other.maxValue, other.minValue)
 {
     other.Clone(this.parentless, this.merging, this.childless);
 }