Hello,
I am not able to compile
this piece of code of cgal library
CGAL_assertion_msg(-CGAL_IA_MUL(-1.1, 10.1) != CGAL_IA_MUL(1.1, 10.1),
"Wrong rounding: did you forget the -frounding-math option if you use GCC (or -fp-model strict for Intel)?");
CGAL_assertion_msg(-CGAL_IA_DIV(-1., 10) != CGAL_IA_DIV(1., 10),
"Wrong rounding: did you forget the -frounding-math option if you use GCC (or -fp-model strict for Intel)?");
I tried to use -frounding-math with a simple example with this compiler flag
I get a warning and I think this flag is not supported.
I am able to compile cgal library if exclude this code but when I run the cgal corefine example I get crash. Is it possible that the missed flag can change the CGAL calculations?