From a8294276104a33604fc17f796e6b0c66221f2993 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Wed, 4 Sep 2019 15:29:27 -0400 Subject: wait longer before evaluating whether we're done --- src/new_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/new_model.cpp b/src/new_model.cpp index 1886aa0..4af1422 100644 --- a/src/new_model.cpp +++ b/src/new_model.cpp @@ -473,7 +473,7 @@ int main (int argc, char *argv[]) { if (nn > w) { stiffness.add(cos_xy, sin_xy * sin_xy); - if (nn % N == 0) { + if (nn % N == 0 && nn > 2 * w) { double err = mi.A2.serr(); double val2 = stiffness.avg(); double err2 = stiffness.serr(); -- cgit v1.2.3-54-g00ecf