Normand Briere
2019-07-30 7a77e39423398b7ad8bf7e80cf45fac6817000c2
BoundaryRep.java
....@@ -1997,8 +1997,10 @@
19971997 if (v.vertexlinks == null)
19981998 continue;
19991999
2000
- // Warning: faster but dangerous
2001
- if (v.weights != null && v.weights[j] == 0) // < 0.001 * v.totalweight)
2000
+ // Warning: a bit faster but dangerous
2001
+ if (v.weights != null && v.weights[j]
2002
+ // == 0)
2003
+ < 0.001 * v.totalweight)
20022004 {
20032005 //testweight += v.weights[j-1];
20042006 continue;