From: W. Trevor King Date: Sun, 7 Sep 2008 19:08:51 +0000 (-0400) Subject: Removed debugging printfs from sawsim.c stepping X-Git-Tag: v0.5~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=229f72f3ac0558a529ac7570a224660b35f340c3;p=sawsim.git Removed debugging printfs from sawsim.c stepping --- 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; } }