From c1a128a9dae420ce8ce86b500e86298c7c8840e8 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Tue, 4 Dec 2001 09:30:42 +0000
Subject: [PATCH] Vertex position comparison set to LC*1.e-10

---
 Mesh/Vertex.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Mesh/Vertex.cpp b/Mesh/Vertex.cpp
index 3bbec9469c..d07c7dd921 100644
--- a/Mesh/Vertex.cpp
+++ b/Mesh/Vertex.cpp
@@ -1,4 +1,4 @@
-// $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 "Numeric.h"
@@ -117,7 +117,7 @@ int comparePosition (const void *a, const void *b){
   int i, j;
   Vertex **q, **w;
   // TOLERANCE ! WARNING WARNING
-  double eps = 1.e-08 * CTX.lc;
+  double eps = 1.e-10 * CTX.lc;
 
   q = (Vertex **) a;
   w = (Vertex **) b;
-- 
GitLab