Internal polynomial namespace renamed.

This commit is contained in:
Sebastian Limbach 2007-06-18 11:07:32 +00:00
parent ef548d4018
commit 6c58c32b97
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ inline void construct_binary( const Integer& e, Integer& x ) {
x = Integer(1);
const Integer max_ipower = (exponent > Integer(std::numeric_limits<int>::max())) ?
INTERN_POLYNOMIAL::ipower( Integer(2), std::numeric_limits<int>::max() ) :
POLYNOMIAL::ipower( Integer(2), std::numeric_limits<int>::max() ) :
Integer(0);
while( exponent > Integer(std::numeric_limits<int>::max()) ) {
@ -48,7 +48,7 @@ inline void construct_binary( const Integer& e, Integer& x ) {
exponent -= Integer(std::numeric_limits<int>::max());
}
x *= INTERN_POLYNOMIAL::ipower( Integer(2), (int)CGAL::to_double(exponent) );
x *= POLYNOMIAL::ipower( Integer(2), (int)CGAL::to_double(exponent) );
}
template< class Integer, class Rational >