This doesn't fix #12, but at least starts by cleaning up some compiler warnings. Most of these were from equality comparisons for floating point variables, which have been replaced by fabs (a - b) < tol, where tol has been given an arbitrarily small definition.
This doesn't fix #12, but at least starts by cleaning up some compiler warnings. Most of these were from equality comparisons for floating point variables, which have been replaced by
fabs (a - b) < tol
, wheretol
has been given an arbitrarily small definition.