Skip to content

Commit

Permalink
Remove x output setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinffernandez committed Aug 27, 2024
1 parent e5d6599 commit 91013b4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/engine/common/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ SET_settings SET_Settings(char *fname)
p->BDFPartitionDepth = 1;
p->CVODE_max_order = 0;
p->BDFMaxStep = 0;
p->x_output = 0;
if (config_lookup_float(cf, "minstep", &dres)) {
if (dres == 0) {
p->minstep = MIN_STEP;
Expand Down Expand Up @@ -279,9 +278,6 @@ SET_settings SET_Settings(char *fname)
}
p->partitionerOptions.nMetis = option;
}
if (config_lookup_int(cf, "XOutput", &ires)) {
p->x_output = ires;
}
config_destroy(cf);
return p;
}
Expand Down

0 comments on commit 91013b4

Please sign in to comment.