change null factor

This commit is contained in:
2024-02-02 16:09:38 +01:00
parent 6ea893f700
commit 6136a8f88b

View File

@@ -8,7 +8,7 @@
template <typename T>
static bool EqualZero(T var) {
return std::abs(var) < std::pow(10, -17);
return std::abs(var) < std::pow(10, -5);
}
template <typename T>