From 7350ad92b86bf17a3155a8be8bfdf5e7f6396146 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Mon, 25 Apr 2011 09:55:40 -0500 Subject: [PATCH] Loosen the uncertainty --- voztie.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voztie.c b/voztie.c index 66f2c57..a18edca 100644 --- a/voztie.c +++ b/voztie.c @@ -93,8 +93,8 @@ int main(int argc, char *argv[]) { for (p=0;p -1.) - if (fabs(vols[orig[p]]-volstemp)/volstemp > 1e-3) { - printf("Inconsistent volumes for p. %d: (%g,%g)!\n", + if (fabs(vols[orig[p]]-volstemp)/volstemp > 1.1e-3) { + printf("Inconsistent volumes for p. %d: (%10g,%10g)!\n", orig[p],vols[orig[p]],volstemp); exit(0); }