mirror of https://github.com/CGAL/cgal
Moved Modular::CST_CUT to Modular_type.cpp
This commit is contained in:
parent
200d2ccd2a
commit
a907ead17b
|
|
@ -202,8 +202,6 @@ public:
|
|||
friend Self operator / (const Self& p1, const Self& p2);
|
||||
};
|
||||
|
||||
const double Modular::CST_CUT = std::ldexp( 3., 51 );
|
||||
|
||||
inline Modular operator + (const Modular& p1)
|
||||
{ return p1; }
|
||||
|
||||
|
|
|
|||
|
|
@ -6,4 +6,7 @@ namespace CGAL{
|
|||
int Modular::prime_int = 67111067;
|
||||
double Modular::prime =67111067.0;
|
||||
double Modular::prime_inv =1/67111067.0;
|
||||
|
||||
const double Modular::CST_CUT = std::ldexp( 3., 51 );
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue