mirror of https://github.com/CGAL/cgal
Print the result
This commit is contained in:
parent
793801cd8b
commit
03bd5302f8
|
|
@ -37,8 +37,14 @@ int main ()
|
||||||
std::back_inserter(isolated_points), std::back_inserter(edges));
|
std::back_inserter(isolated_points), std::back_inserter(edges));
|
||||||
|
|
||||||
std::cout << "Isolated_points: " << isolated_points.size() << std::endl;
|
std::cout << "Isolated_points: " << isolated_points.size() << std::endl;
|
||||||
std::cout << "Edges: " << edges.size() << std::endl;
|
for(Point p : isolated_points){
|
||||||
|
std::cout << p << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "Edges: " << edges.size() << std::endl;
|
||||||
|
for(Segment s : edges){
|
||||||
|
std::cout << s << std::endl;
|
||||||
|
}
|
||||||
assert(isolated_points.size() == 0);
|
assert(isolated_points.size() == 0);
|
||||||
assert(edges.size() == 8);
|
assert(edges.size() == 8);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue