From 53a0a0ae4c3d6de6b3a358c50bb5ec1ff47e21b8 Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Fri, 31 Jan 2025 20:50:55 -0500 Subject: [PATCH] Remove D_epsilon --- src/main.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main.c b/src/main.c index 0b18a43..d659590 100644 --- a/src/main.c +++ b/src/main.c @@ -62,7 +62,6 @@ typedef struct nstrophy_parameters { FILE* drivingfile; double lyapunov_reset; unsigned int lyapunov_trigger; - double D_epsilon; bool print_alpha; } nstrophy_parameters; @@ -852,13 +851,6 @@ int set_parameter( return(-1); } } - else if (strcmp(lhs,"D_epsilon")==0){ - ret=sscanf(rhs,"%lf",&(parameters->D_epsilon)); - if(ret!=1){ - fprintf(stderr, "error: parameter 'D_epsilon' should be a double\n got '%s'\n",rhs); - return(-1); - } - } else if (strcmp(lhs,"driving")==0){ if (strcmp(rhs,"zero")==0){ parameters->driving=DRIVING_ZERO;