From Ben, promoted floats to doubles to produce better stability in the

invert method.
This commit is contained in:
Robert Osfield
2003-04-29 14:24:11 +00:00
parent e1468428e3
commit 821313d102

View File

@@ -254,7 +254,7 @@ bool Matrix::invert( const Matrix& mat )
unsigned int i,j,k,l,ll;
unsigned int icol = 0;
unsigned int irow = 0;
float temp, pivinv, dum, big;
double temp, pivinv, dum, big;
// copy in place this may be unnecessary
*this = mat;