mirror of https://github.com/CGAL/cgal
reduce perturb_mesh_3 angle bound to fit timeout on more platforms
This commit is contained in:
parent
4bbbc482cf
commit
3204b527e8
|
|
@ -24,6 +24,7 @@
|
||||||
// To avoid verbose function and named parameters call
|
// To avoid verbose function and named parameters call
|
||||||
using namespace CGAL::parameters;
|
using namespace CGAL::parameters;
|
||||||
|
|
||||||
|
|
||||||
template <typename Concurrency_tag>
|
template <typename Concurrency_tag>
|
||||||
void test()
|
void test()
|
||||||
{
|
{
|
||||||
|
|
@ -31,7 +32,7 @@ void test()
|
||||||
std::size_t nb_runs = 2;
|
std::size_t nb_runs = 2;
|
||||||
unsigned int nb_lloyd = 2;
|
unsigned int nb_lloyd = 2;
|
||||||
unsigned int nb_odt = 2;
|
unsigned int nb_odt = 2;
|
||||||
double perturb_bound = 9.;
|
double perturb_bound = 7.;
|
||||||
double exude_bound = 15.;
|
double exude_bound = 15.;
|
||||||
|
|
||||||
// Domain
|
// Domain
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue