mirror of https://github.com/CGAL/cgal
test new remove functions
This commit is contained in:
parent
66f62dec9e
commit
4e8f424f25
|
|
@ -19,6 +19,9 @@
|
|||
#include <CGAL/Labeled_mesh_domain_3.h>
|
||||
#include <CGAL/use.h>
|
||||
|
||||
#include <CGAL/remove_far_points_in_mesh_3.h>
|
||||
#include <CGAL/remove_isolated_vertices_in_mesh_3.h>
|
||||
|
||||
template <typename Concurrency_tag = CGAL::Sequential_tag>
|
||||
struct Image_tester : public Tester<K_e_i>
|
||||
{
|
||||
|
|
@ -61,6 +64,9 @@ public:
|
|||
CGAL::parameters::no_exude(),
|
||||
CGAL::parameters::no_perturb());
|
||||
|
||||
CGAL::remove_far_points_in_mesh_3(c3t3);
|
||||
CGAL::remove_isolated_vertices_in_mesh_3(c3t3);
|
||||
|
||||
// Verify
|
||||
this->verify_c3t3_volume(c3t3, 1772330*0.95, 1772330*1.05);
|
||||
this->verify(c3t3,domain,criteria, Bissection_tag());
|
||||
|
|
|
|||
Loading…
Reference in New Issue