示例#1
0
 public EdgePath(EdgePath path)
 {
     this.edges    = new List <Edge>(path.edges);
     this.vertices = new HashSet <long>(path.vertices);
 }