mirror of https://github.com/CGAL/cgal
22 lines
336 B
C++
22 lines
336 B
C++
|
|
#include "test_polynomial.h"
|
|
|
|
int main() {
|
|
|
|
// Set wrong rounding mode to test modular arithmetic
|
|
CGAL::Protect_FPU_rounding<true> pfr(CGAL_FE_UPWARD);
|
|
|
|
CGAL::IO::set_pretty_mode(std::cout);
|
|
|
|
#ifdef CGAL_USE_LEDA
|
|
{
|
|
typedef CGAL::LEDA_arithmetic_kernel AT;
|
|
test_AT<AT>();
|
|
}
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
|