From 81d7f6cb09467bcbef73f77696e2f53160b04b4a Mon Sep 17 00:00:00 2001 From: Peter Teuben Date: Mon, 23 Dec 2024 00:24:39 -0500 Subject: [PATCH] report timefuzz --- src/nbody/trans/snaptrim.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/nbody/trans/snaptrim.c b/src/nbody/trans/snaptrim.c index 6c0675b5e..dd6a0a84b 100644 --- a/src/nbody/trans/snaptrim.c +++ b/src/nbody/trans/snaptrim.c @@ -38,12 +38,10 @@ string defv[] = { #if defined(INTERACT) "more=y\n needs interactive SETPARAM part", #endif - "VERSION=2.2a\n 8-may-2023 PJT/WD", + "VERSION=2.3\n 23-dec-2024 PJT", NULL, }; -#define TimeFuzz 0.00001 /* slop tolerated in time comparisons */ - string usage="cut a snapshot file down to size"; @@ -82,7 +80,8 @@ void nemo_main() if (!Qnear) timefuzz = getdparam("timefuzz"); else - timefuzz = TimeFuzz; + timefuzz = TIMEFUZZ; + dprintf(0,"Using timefuzz=%g\n", timefuzz); Qfirst = streq(times,"first"); Qlast = streq(times,"last");