Skip to content

Commit 43e4599

Browse files
committed
Avoid faulty assert in meshL trunc
[ci skip]
1 parent 3d250f5 commit 43e4599

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/femlib/GenericMesh.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ void GenericMesh<T,B,V>::SameVertex(const double precis_mesh, V *vertice, T *ele
13451345
cout << " hmin =" << hmin << endl;
13461346
}
13471347

1348-
assert(hmin < longmini_box);
1348+
assert(hmin <= longmini_box);
13491349
if (verbosity > 5)
13501350
cout << " Norme2(bmin-bmax)=" << Norme2(bmin - bmax) << endl;
13511351

0 commit comments

Comments
 (0)