28 Apr
2015
28 Apr
'15
2:23 a.m.
Raffi Enficiaud
The corresponding equivalent code should be
bool check( float a, float b, float tolerance ) { using namespace boost::math::fpc; close_at_tolerance obj(tolerance);
close_at_tolerance<float> obj(tolerance);
return obj(a,b); }
Gennadiy