Skip to content

Commit dc938ff

Browse files
Modify print for classic solvers for python script printer.
1 parent aba0cba commit dc938ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/engine/classic/classic_integrator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void CLC_write_output(SD_output simOutput, double **solution, double *solution_t
8383
sprintf(name, "%s.dat", simOutput->variable[i].name);
8484
FILE *out = fopen(name, "w");
8585
for (j = 0; j < totalOutputSteps; j++) {
86-
fprintf(out, "%13.13g\t\t%13.13g\n", solution_time[j], solution[i][j]);
86+
fprintf(out, "%lf\t%lf\n", solution_time[j], solution[i][j]);
8787
}
8888
fclose(out);
8989
}

0 commit comments

Comments
 (0)