mirror of https://github.com/CGAL/cgal
Merge pull request #4861 from sgiraudot/Arrangement_2-Small_enhancements-GF
Arrangement 2: Small Enhancements
This commit is contained in:
commit
6cf203f5ca
|
|
@ -34,6 +34,7 @@
|
|||
#include <CGAL/Arrangement_2/Arrangement_2_iterators.h>
|
||||
#include <CGAL/assertions.h>
|
||||
|
||||
#include <boost/pool/pool_alloc.hpp>
|
||||
|
||||
namespace CGAL {
|
||||
|
||||
|
|
@ -876,7 +877,7 @@ public:
|
|||
* The arrangement DCEL class.
|
||||
*/
|
||||
template <class V, class H, class F,
|
||||
class Allocator = CGAL_ALLOCATOR(int) >
|
||||
class Allocator = boost::fast_pool_allocator<int> >
|
||||
class Arr_dcel_base {
|
||||
public:
|
||||
// Define the vertex, halfedge and face types.
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -46,6 +46,8 @@
|
|||
#include <CGAL/Iterator_project.h>
|
||||
#include <CGAL/Iterator_transform.h>
|
||||
|
||||
#include <boost/pool/pool_alloc.hpp>
|
||||
|
||||
namespace CGAL {
|
||||
|
||||
/*! \class Arrangement_on_surface_2
|
||||
|
|
@ -64,7 +66,7 @@ class Arrangement_on_surface_2 {
|
|||
public:
|
||||
typedef GeomTraits_ Geometry_traits_2;
|
||||
typedef TopTraits_ Topology_traits;
|
||||
typedef CGAL_ALLOCATOR(int) Allocator;
|
||||
typedef boost::fast_pool_allocator<int> Allocator;
|
||||
|
||||
// first define adaptor ...
|
||||
typedef Arr_traits_basic_adaptor_2<Geometry_traits_2> Traits_adaptor_2;
|
||||
|
|
|
|||
Loading…
Reference in New Issue