mirror of https://github.com/CGAL/cgal
Fixes of fixes
This commit is contained in:
parent
e62ab30e6c
commit
d301662987
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
|
|
||||||
#include <CGAL/Simple_cartesian.h>
|
#include <CGAL/Simple_cartesian.h>
|
||||||
#include <CGAL/Homogeneous.h>
|
#include <CGAL/Simple_homogeneous.h>
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
@ -291,6 +291,6 @@ struct Test {
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
Test< CGAL::Simple_cartesian<double> >().run();
|
Test< CGAL::Simple_cartesian<double> >().run();
|
||||||
Test< CGAL::Homogeneous<double> >().run();
|
Test< CGAL::Simple_homogeneous<double> >().run();
|
||||||
// TODO : test more kernels.
|
// TODO : test more kernels.
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
#include <CGAL/Homogeneous.h>
|
#include <CGAL/Simple_homogeneous.h>
|
||||||
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -19,7 +19,7 @@ void cmp(const K& k)
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
CGAL::Exact_predicates_inexact_constructions_kernel epic;
|
CGAL::Exact_predicates_inexact_constructions_kernel epic;
|
||||||
CGAL::Homogeneous<int> hk;
|
CGAL::Simple_homogeneous<int> hk;
|
||||||
cmp(epic);
|
cmp(epic);
|
||||||
cmp(hk);
|
cmp(hk);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <CGAL/Simple_cartesian.h>
|
#include <CGAL/Simple_cartesian.h>
|
||||||
#include <CGAL/Homogeneous.h>
|
#include <CGAL/Simple_homogeneous.h>
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
@ -246,6 +246,6 @@ struct Test {
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
Test< CGAL::Simple_cartesian<double> >().run();
|
Test< CGAL::Simple_cartesian<double> >().run();
|
||||||
Test< CGAL::Homogeneous<double> >().run();
|
Test< CGAL::Simple_homogeneous<double> >().run();
|
||||||
// TODO : test more kernels.
|
// TODO : test more kernels.
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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_2.h>
|
||||||
#include <CGAL/Segment_Delaunay_graph_Linf_traits_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::Simple_cartesian<field_number_t> K_field;
|
||||||
|
|
||||||
typedef CGAL::Field_tag MTag;
|
typedef CGAL::Field_tag MTag;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue