Normand Briere
2019-07-25 7058eef32e524cae08a7373d8bc1061e373b223c
BoundaryRep.java
....@@ -1997,8 +1997,9 @@
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] == 0)
2002
+ // < 0.001 * v.totalweight)
20022003 {
20032004 //testweight += v.weights[j-1];
20042005 continue;