From ce795231d770be1cedd3e4bc79337618925c846b Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 23 Sep 2011 05:32:30 +0000 Subject: [PATCH] use blossom by default if it's available --- Common/DefaultOptions.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Common/DefaultOptions.h b/Common/DefaultOptions.h index 3013f2aa62..6181ff1388 100644 --- a/Common/DefaultOptions.h +++ b/Common/DefaultOptions.h @@ -1227,7 +1227,11 @@ StringXNumber MeshOptions_Number[] = { { F|O, "RandomFactor" , opt_mesh_rand_factor , 1.e-9 , "Random factor used in the 2D meshing algorithm (should be increased if " "RandomFactor * size(triangle)/size(model) approaches machine accuracy)" }, +#if defined(HAVE_BLOSSOM) + { F|O, "RecombinationAlgorithm" , opt_mesh_algo_recombine , 1 , +#else { F|O, "RecombinationAlgorithm" , opt_mesh_algo_recombine , 0 , +#endif "Mesh recombination algorithm (0=standard, 1=blossom)" }, { F|O, "RecombineAll" , opt_mesh_recombine_all , 0 , "Apply recombination algorithm to all surfaces, ignoring per-surface spec" }, -- GitLab