This commit is contained in:
Monique Teillaud 2008-08-13 09:46:35 +00:00
parent fdd841f569
commit a20b3e1684
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ double prob_2() {
T o2 = T(p4, p5, p6); T o2 = T(p4, p5, p6);
std::vector< CGAL::Object > res; std::vector< CGAL::Object > res;
CGAL::intersection(o1, o2, std::back_inserter(res)); CGAL::intersection(o1, o2, std::back_inserter(res));
prob += (res.size() != 0) ? 1.0 : 0.0; prob += (res.size() != 0) ? 1.0 : 0.0;
} }