Fixes of fixes

This commit is contained in:
Andreas Fabri 2019-02-15 09:07:48 +01:00
parent e62ab30e6c
commit d301662987
4 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Homogeneous.h>
#include <CGAL/Simple_homogeneous.h>
#include <vector>
#include <iostream>
@ -291,6 +291,6 @@ struct Test {
int main()
{
Test< CGAL::Simple_cartesian<double> >().run();
Test< CGAL::Homogeneous<double> >().run();
Test< CGAL::Simple_homogeneous<double> >().run();
// TODO : test more kernels.
}

View File

@ -1,5 +1,5 @@
#include <CGAL/Homogeneous.h>
#include <CGAL/Simple_homogeneous.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
@ -19,7 +19,7 @@ void cmp(const K& k)
int main()
{
CGAL::Exact_predicates_inexact_constructions_kernel epic;
CGAL::Homogeneous<int> hk;
CGAL::Simple_homogeneous<int> hk;
cmp(epic);
cmp(hk);
return 0;

View File

@ -5,7 +5,7 @@
#endif
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Homogeneous.h>
#include <CGAL/Simple_homogeneous.h>
#include <vector>
#include <iostream>
@ -246,6 +246,6 @@ struct Test {
int main()
{
Test< CGAL::Simple_cartesian<double> >().run();
Test< CGAL::Homogeneous<double> >().run();
Test< CGAL::Simple_homogeneous<double> >().run();
// TODO : test more kernels.
}

View File

@ -30,7 +30,7 @@ typedef exact_field_t field_number_t;
#include <CGAL/Segment_Delaunay_graph_Linf_2.h>
#include <CGAL/Segment_Delaunay_graph_Linf_traits_2.h>
typedef public CGAL::Simple_cartesian<ring_number_t> K_ring;
typedef CGAL::Simple_cartesian<ring_number_t> K_ring;
typedef CGAL::Simple_cartesian<field_number_t> K_field;
typedef CGAL::Field_tag MTag;