Skip to content

Commit

Permalink
Fixed RCONST(1) to RCONST(1.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
drreynolds committed Oct 27, 2023
1 parent 8fddce4 commit fcebce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arkode/arkode_butcher_erk.def
Original file line number Diff line number Diff line change
Expand Up @@ -1009,8 +1009,8 @@ ARK_BUTCHER_TABLE(ARKODE_VERNER_16_8_9, { /* Verner-9-8 (DOI: 10.1007/s11075-009
B->c[11] = RCONST(0.6590650618730998549405331618649220295334);
B->c[12] = RCONST(0.8206);
B->c[13] = RCONST(0.9012);
B->c[14] = RCONST(1);
B->c[15] = RCONST(1);
B->c[14] = RCONST(1.0);
B->c[15] = RCONST(1.0);
return B;
})

Expand Down

0 comments on commit fcebce2

Please sign in to comment.