Minor update for newer CGAL. Remove unused file.

This commit is contained in:
Marc Glisse 2013-07-19 11:36:40 +02:00
parent 380b394e7b
commit 096c04c794
3 changed files with 2 additions and 46 deletions

View File

@ -14,7 +14,7 @@ struct Cartesian_filter_NT : public Base_
CGAL_CONSTEXPR Cartesian_filter_NT(int d):Base_(d){}
typedef Base_ Kernel_base;
typedef Cartesian_change_FT<Kernel_base,Interval_nt_advanced> K1;
typedef typename internal::Exact_type_selector<typename Get_type<Kernel_base, FT_tag>::type>::Type Exact_nt;
typedef typename internal::Exact_field_selector<typename Get_type<Kernel_base, FT_tag>::type>::Type Exact_nt;
typedef Cartesian_change_FT<Kernel_base,Exact_nt> K2;
template<class T,class D=void,class=typename Get_functor_category<Cartesian_filter_NT,T>::type> struct Functor :

View File

@ -14,14 +14,13 @@
#define CGAL_MOVE(t) t
#define CGAL_CONSTEXPR
#endif
#include <boost/type_traits/is_arithmetic.hpp>
#include <boost/utility/enable_if.hpp>
#include <boost/preprocessor/repetition.hpp>
#include <CGAL/Rational_traits.h>
#include <CGAL/tuple.h>
#include <boost/mpl/has_xxx.hpp>
#include <boost/mpl/not.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/type_traits.hpp>
#ifdef CGAL_CXX0X
#define BOOSTD std::

View File

@ -1,43 +0,0 @@
#ifndef myeigen_h
#define myeigen_h
#include <CGAL/basic.h>
#include <CGAL/Gmpq.h>
#include <Eigen/Core>
namespace Eigen {
template<> struct NumTraits<CGAL::Gmpq>
{
typedef CGAL::Gmpq Real;
typedef CGAL::Gmpq NonInteger;
typedef CGAL::Gmpq Nested;
enum {
IsComplex = 0,
IsInteger = 0,
IsSigned,
ReadCost = 10,
AddCost = 100,
MulCost = 1000
};
};
template<> struct NumTraits<CGAL::Interval_nt_advanced>
{
typedef CGAL::Interval_nt_advanced Real;
typedef CGAL::Interval_nt_advanced NonInteger;
typedef CGAL::Interval_nt_advanced Nested;
enum {
IsComplex = 0,
IsInteger = 0,
IsSigned,
ReadCost = 2,
AddCost = 2,
MulCost = 10
};
};
}
#endif