mirror of https://github.com/CGAL/cgal
improvement but not yet a fix
This commit is contained in:
parent
195001267f
commit
2d455ebf57
|
|
@ -70,7 +70,7 @@ operator<<(std::ostream &os, const Triangulation_on_sphere_face_base_2<Gt, Fb> &
|
||||||
{
|
{
|
||||||
// non combinatorial information. Default = point
|
// non combinatorial information. Default = point
|
||||||
os << static_cast<const Fb&>(f);
|
os << static_cast<const Fb&>(f);
|
||||||
os << f.is_ghost() ? " 0" : " 1";
|
os << (f.is_ghost() ? " 1" : " 0");
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ int main(int, char**)
|
||||||
std::cout << dtos.number_of_solid_faces() << " solid faces" << std::endl;
|
std::cout << dtos.number_of_solid_faces() << " solid faces" << std::endl;
|
||||||
std::cout << dtos.number_of_ghost_faces() << " ghost faces" << std::endl;
|
std::cout << dtos.number_of_ghost_faces() << " ghost faces" << std::endl;
|
||||||
}
|
}
|
||||||
|
assert(dtos.is_valid());
|
||||||
std::ofstream out("dtos.txt");
|
std::ofstream out("dtos.txt");
|
||||||
out.precision(17);
|
out.precision(17);
|
||||||
out << dtos << std::endl;
|
out << dtos << std::endl;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue