Skip to content

Commit

Permalink
Add missing break (#287)
Browse files Browse the repository at this point in the history
Missing break when selecting ARKODE second order IMEX method
  • Loading branch information
gardner48 authored Jun 14, 2023
1 parent 2ce9ec6 commit 028767b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/arkode/arkode_arkstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -1926,6 +1926,7 @@ int arkStep_SetButcherTables(ARKodeMem ark_mem)
case(2):
etable = ARKSTEP_DEFAULT_ARK_ETABLE_2;
itable = ARKSTEP_DEFAULT_ARK_ITABLE_2;
break;
case(3):
etable = ARKSTEP_DEFAULT_ARK_ETABLE_3;
itable = ARKSTEP_DEFAULT_ARK_ITABLE_3;
Expand Down

0 comments on commit 028767b

Please sign in to comment.