From 59f97bfbe5a8a9f59fc1fe1ca1495102bc8e19d7 Mon Sep 17 00:00:00 2001 From: Jacob Schroder Date: Fri, 12 May 2017 14:57:54 -0700 Subject: [PATCH] This should address an ordering of parallel output issue that I saw with a regression test last night. --- examples/ex-02.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/ex-02.c b/examples/ex-02.c index ef33eaf2..cb36ce69 100644 --- a/examples/ex-02.c +++ b/examples/ex-02.c @@ -261,6 +261,7 @@ my_Access(braid_App app, { error = compute_error_norm(u->values, app->xstart, app->xstop, u->size, t); printf(" Discretization error at final time: %1.4e\n", error); + fflush(stdout); } return 0;