mirror of https://github.com/CGAL/cgal
Test both static and dynamic kernels
This commit is contained in:
parent
39c98f2fea
commit
5eac4b8bdc
|
|
@ -113,11 +113,13 @@ void test(const int d, const string & type, const int N)
|
|||
template< int D >
|
||||
void go(const int N)
|
||||
{
|
||||
//typedef CGAL::Epick_d<CGAL::Dynamic_dimension_tag> FK;
|
||||
typedef CGAL::Epick_d<CGAL::Dimension_tag<D> > FK;
|
||||
typedef CGAL::Delaunay_triangulation<FK> Triangulation;
|
||||
//test<Triangulation>(D, "dynamic", N);
|
||||
test<Triangulation>(D, "static", N);
|
||||
|
||||
typedef CGAL::Epick_d<CGAL::Dynamic_dimension_tag> FK_dyn;
|
||||
typedef CGAL::Delaunay_triangulation<FK> Triangulation_dyn;
|
||||
test<Triangulation_dyn>(D, "dynamic", N);
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
|
|
|
|||
Loading…
Reference in New Issue