/// <summary> /// Deep copy. /// </summary> /// <returns></returns> public OTree Copy() { OTree ot = new OTree(); ot.moduleSequence = new List<int>(moduleSequence); ot.dfsSequence = new List<Bit>(dfsSequence); return ot; }
/// <summary> /// Deep copy. /// </summary> /// <returns></returns> public OTree Copy() { OTree ot = new OTree(); ot.moduleSequence = new List <int>(moduleSequence); ot.dfsSequence = new List <Bit>(dfsSequence); return(ot); }