ocs2
ocs2 copied to clipboard
Seem wrong with function almost_ge
Describe the bug
The function
template <class T1, class T2, class T3> bool almost_le(T1&& x, T2&& y) { return x < y || almost_eq(x, y); }
in file /ocs2_core/include/ocs2_core/misc/Numerics.h with line 105 to 108 seems wrong.
There is no class T3 in the function.