Skip to content

Commit

Permalink
fix devault interp type
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed May 12, 2024
1 parent eebc00e commit d8f64f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arkode/arkode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ ARKodeMem arkCreate(SUNContext sunctx)

/* Initialize the interpolation structure to NULL */
ark_mem->interp = NULL;
ark_mem->interp_type = ARK_INTERP_NONE;
ark_mem->interp_type = ARK_INTERP_HERMITE;
ark_mem->interp_degree = ARK_INTERP_MAX_DEGREE;

/* Initially, rwt should point to ewt */
Expand Down

0 comments on commit d8f64f6

Please sign in to comment.