Normand Briere
2019-07-24 ebd16116fc612bf14e2469ba27dd7ee54918eabb
BoundaryRep.java
....@@ -1997,7 +1997,8 @@
19971997 if (v.vertexlinks == null)
19981998 continue;
19991999
2000
- if (v.weights != null && v.weights[j] < 0.001 * v.totalweight) // == 0)
2000
+ // Warning: faster but dangerous
2001
+ if (v.weights != null && v.weights[j] == 0) // < 0.001 * v.totalweight)
20012002 {
20022003 //testweight += v.weights[j-1];
20032004 continue;