projects
/
sawsim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62eff8a
)
Removed debugging printfs from sawsim.c stepping
author
W. Trevor King
<wking@drexel.edu>
Sun, 7 Sep 2008 19:08:51 +0000
(15:08 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Sun, 7 Sep 2008 19:08:51 +0000
(15:08 -0400)
src/sawsim.nw
patch
|
blob
|
history
diff --git
a/src/sawsim.nw
b/src/sawsim.nw
index bb09ab4d0a5385d149b5ec0704a9bde67c4431a7..202fb1099e89da19681f7a1a62f4ab430d90708a 100644
(file)
--- 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;
}
}