tcngf-pf.c: remove stray newline - cngf-pf - continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
HTML git clone git://src.adamsgaard.dk/cngf-pf
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit e0cfd5c51ba33c79ef4149d98e85b39972e7c2b2
DIR parent 37facb14f20a36d93492eeb7c4739696c6e15dc8
HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Tue, 24 Nov 2020 13:40:32 +0100
cngf-pf.c: remove stray newline
Diffstat:
M cngf-pf.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
---
DIR diff --git a/cngf-pf.c b/cngf-pf.c
t@@ -11,7 +11,7 @@
#include "arg.h"
/* relative tolerance criteria for granular fluidity solver */
-#define RTOL 1e-5
+#define RTOL 1e-12
#define MAX_ITER_1D_FD_SIMPLE_SHEAR 100000
/* uncomment to print time spent per time step to stdout */
t@@ -76,7 +76,6 @@ main(int argc, char *argv[])
#ifdef BENCHMARK_PERFORMANCE
clock_t t_begin, t_end;
double t_elapsed;
-
#endif
#ifdef __OpenBSD__