implemented diffabs() useful for checks of results up to a sign

This commit is contained in:
2021-06-30 14:54:35 +02:00
parent 9d0249cdc4
commit cf86493a6f
5 changed files with 121 additions and 52 deletions

View File

@@ -26,12 +26,6 @@
namespace LA {
template <typename T>
inline typename LA_traits<T>::normtype MYABS(const T &x) {return abs(x);}
template <>
inline unsigned int MYABS(const unsigned int &x) {return x;}
template <typename T>
class Polynomial : public NRVec<T> {