Skip to content
Snippets Groups Projects
Commit 54e14398 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

typo

parent 08fa9aec
No related branches found
No related tags found
No related merge requests found
/* $Id: Numeric.cpp,v 1.11 2000-12-18 09:03:53 geuzaine Exp $ */ /* $Id: Numeric.cpp,v 1.12 2000-12-18 14:20:45 geuzaine Exp $ */
#include "Gmsh.h" #include "Gmsh.h"
#include "Const.h" #include "Const.h"
...@@ -120,7 +120,7 @@ int sys3x3_with_tol (double mat[3][3], double b[3], double res[3], double *det){ ...@@ -120,7 +120,7 @@ int sys3x3_with_tol (double mat[3][3], double b[3], double res[3], double *det){
out = sys3x3(mat,b,res,det); out = sys3x3(mat,b,res,det);
if (fabs(*det) < 1.e-12){ if (fabs(*det) < 1.e-12){
Msg(INFOS, "Assuming 3x3 Matrix is Singular (Is this OK?)"); Msg(DEBUG, "Assuming 3x3 Matrix is Singular (Is this OK?)");
res[0] = res[1] = res[2] = 0.0 ; res[0] = res[1] = res[2] = 0.0 ;
return (0); return (0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment