Merge pull request #2096 from afabri/Circular_kernel_2-fix_testsuite-GF

Circular_kernel_2: Fix testsuite
This commit is contained in:
Laurent Rineau 2017-05-19 10:29:26 +02:00
commit 05a8906cb2
1 changed files with 1 additions and 1 deletions

View File

@ -832,7 +832,7 @@ void _test_intersection_Line_arc_Circular_arc(CK ck)
do{
p_random4 = Point_2(theRandom.get_int(random_min, random_max),
theRandom.get_int(random_min, random_max));
}while(p_random4 == center_circle_random1);
} while (p_random4 == center_circle_random1 || (p_random3 == p_random4));
std::vector< CGAL::Object >
vector_for_intersection_random3;