2 Oct
2011
2 Oct
'11
9:37 p.m.
Den 2. okt. 2011 kl. 20.17 skrev Michael Miller:
I cannot get this option to work. I set is globally as follows
using namespace std; using namespace cln;
bool cl_inhibit_floating_point_underflow = true;
Try without the "bool" e.g.
cl_inhibit_floating_point_underflow = true;
I had tried that (among several other things). The compiler complains
preciseEigenvalues.cc:19: error: expected constructor, destructor, or type conversion before ‘=’ token
presumably because 'cl_inhibit_floating_point_underflow' is declared extern in the header.