From 229f72f3ac0558a529ac7570a224660b35f340c3 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 7 Sep 2008 15:08:51 -0400 Subject: [PATCH] Removed debugging printfs from sawsim.c stepping --- src/sawsim.nw | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sawsim.nw b/src/sawsim.nw index bb09ab4..202fb10 100644 --- a/src/sawsim.nw +++ b/src/sawsim.nw @@ -233,11 +233,9 @@ int main(int argc, char **argv) x += v*dt; } else { if (dt == dt_max) { /* step completed */ - fprintf(stderr, "step completed\n"); x += xstep; dt_max = xstep / v; } else { /* still working on this step */ - fprintf(stderr, "partial step %g of %g\n", dt, dt_max); dt_max -= dt; } } -- 2.26.2