temporarily remove division unit-tests. they caused div-by-zero's , reported by Michael Olbrich.

The solution will consist in adding a real Traits system.
This commit is contained in:
Benoit Jacob 2007-09-30 16:45:40 +00:00
parent 023773beaa
commit 4241dddee9
2 changed files with 0 additions and 2 deletions

View File

@ -48,7 +48,6 @@ template<typename MatrixType1,
a += b;
a -= b + b;
a *= s;
b /= s;
if(rows1 == cols1)
{
a *= b;

View File

@ -47,7 +47,6 @@ template<typename VectorType> void vectorOps(const VectorType& v)
a += b;
a -= b + b;
a *= s;
b /= s;
a += (a + a).eval();
}