checkpoint
[anneal.git] / src / edu / berkeley / qfat / Mesh.java
index b4d9f5b..ecc5e22 100644 (file)
@@ -190,7 +190,7 @@ public class Mesh implements Iterable<Mesh.T> {
             for(Vertex p = this; p != null; p = (p.bound_to==this)?null:p.bound_to)
                 good &= p.transform(m.times(p.p), ignoreProblems);
             for(Vertex p = this; p != null; p = (p.bound_to==this)?null:p.bound_to)
-                if (good)  { /*p.reComputeErrorAround();*/ }
+                if (good)  { p.reComputeError/*Around*/(); }
                 else       p.transform(p.oldp, true);
             return good;
         }