| 24 | |
| 25 | template <class _Tx> |
| 26 | inline bool AreSame(const _Tx& l, const _Tx& r) { |
| 27 | return std::fabs(l-r) <= std::numeric_limits<_Tx>::epsilon(); |
| 28 | } |
| 29 | |
| 30 | template <class _Tx> |
| 31 | inline _Tx Round(const _Tx& x) |
no outgoing calls
no test coverage detected