- New function: force_ieee_double_precision().

This commit is contained in:
Sylvain Pion 1999-07-05 14:12:49 +00:00
parent 49889451d3
commit 717947c590
1 changed files with 7 additions and 0 deletions

View File

@ -42,4 +42,11 @@ operator>> (std::istream & is, Interval_nt_advanced & I)
return is;
}
void force_ieee_double_precision()
{
#ifdef __i386__
FPU_set_cw(FPU_cw_near);
#endif // __i386__
}
CGAL_END_NAMESPACE