*** empty log message ***

This commit is contained in:
jiri
2006-04-01 12:58:57 +00:00
parent 1844f777ed
commit 1840ed3b34
5 changed files with 36 additions and 48 deletions

View File

@@ -3,14 +3,6 @@
#include "la_traits.h"
template<typename T>
inline const T MAX(const T &a, const T &b)
{return b > a ? (b) : (a);}
template<typename T>
inline void SWAP(T &a, T &b)
{T dum=a; a=b; b=dum;}
//threshold for neglecting elements, if not defined, no tests are done except exact zero test in simplify - might be even faster
//seems to perform better with a threshold, in spite of abs() tests