Normand Briere
2019-08-01 abb71c81c8a351cda9a2918dcaa7ee61e6c125c5
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;