mirror of https://github.com/CGAL/cgal
Merge remote-tracking branch 'cgal/5.6.x-branch' into cgal/6.0.x-branch
This commit is contained in:
commit
fd9068d403
|
|
@ -21,6 +21,7 @@
|
||||||
#include <CGAL/Algebraic_structure_traits.h>
|
#include <CGAL/Algebraic_structure_traits.h>
|
||||||
#include <CGAL/Real_embeddable_traits.h>
|
#include <CGAL/Real_embeddable_traits.h>
|
||||||
#include <CGAL/Kernel/Same_uncertainty.h>
|
#include <CGAL/Kernel/Same_uncertainty.h>
|
||||||
|
#include <boost/mpl/if.hpp>
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
CGAL_NTS_BEGIN_NAMESPACE
|
CGAL_NTS_BEGIN_NAMESPACE
|
||||||
|
|
|
||||||
|
|
@ -1442,7 +1442,7 @@ Alpha_shape_2<Dt,EACT>::find_alpha_solid() const
|
||||||
// takes O(#alpha_shape) time
|
// takes O(#alpha_shape) time
|
||||||
Type_of_alpha alpha_solid = 0;
|
Type_of_alpha alpha_solid = 0;
|
||||||
|
|
||||||
if (number_of_vertices()<3) return alpha_solid;
|
if (dimension()!=2) return alpha_solid;
|
||||||
|
|
||||||
Finite_vertices_iterator vertex_it;
|
Finite_vertices_iterator vertex_it;
|
||||||
// only finite vertices
|
// only finite vertices
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue