Skip to content

Commit 09d964c

Browse files
Update Common/src/linear_algebra/CSysMatrix.cpp
Co-authored-by: Pedro Gomes <[email protected]>
1 parent ad23455 commit 09d964c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Common/src/linear_algebra/CSysMatrix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ void CSysMatrix<ScalarType>::MatrixInverse(ScalarType* matrix, ScalarType* inver
571571
#define A(I, J) matrix[(I)*nVar + (J)]
572572

573573
/*--- Regularization epsilon to prevent divide-by-zero ---*/
574-
const su2double eps = 1e-12;
574+
const float eps = 1e-12;
575575

576576
/*--- Transform system in Upper Matrix ---*/
577577
for (auto iVar = 1ul; iVar < nVar; iVar++) {

0 commit comments

Comments
 (0)