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

Vertex position comparison set to LC*1.e-10

parent 76543b21
No related branches found
No related tags found
No related merge requests found
// $Id: Vertex.cpp,v 1.14 2001-12-03 08:41:44 geuzaine Exp $ // $Id: Vertex.cpp,v 1.15 2001-12-04 09:30:42 geuzaine Exp $
#include "Gmsh.h" #include "Gmsh.h"
#include "Numeric.h" #include "Numeric.h"
...@@ -117,7 +117,7 @@ int comparePosition (const void *a, const void *b){ ...@@ -117,7 +117,7 @@ int comparePosition (const void *a, const void *b){
int i, j; int i, j;
Vertex **q, **w; Vertex **q, **w;
// TOLERANCE ! WARNING WARNING // TOLERANCE ! WARNING WARNING
double eps = 1.e-08 * CTX.lc; double eps = 1.e-10 * CTX.lc;
q = (Vertex **) a; q = (Vertex **) a;
w = (Vertex **) b; w = (Vertex **) b;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment