Skip to content

Commit

Permalink
fix order condition 6s
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed May 12, 2024
1 parent b060541 commit 0ff6382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arkode/arkode_butcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -4149,7 +4149,7 @@ static sunbooleantype arkode_butcher_order6s(sunrealtype* b, sunrealtype** A1,
free(tmp2);
return (SUNFALSE);
}
if (arkode_butcher_mv(A2, tmp1, s, tmp2))
if (arkode_butcher_mv(A3, tmp1, s, tmp2))
{
free(tmp1);
free(tmp2);
Expand Down

0 comments on commit 0ff6382

Please sign in to comment.