Skip to content

Commit

Permalink
add default options again (required in MPI test)
Browse files Browse the repository at this point in the history
  • Loading branch information
benegee committed Jun 6, 2024
1 parent 7d312b3 commit ae28ac3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/tree_2d_dgsem/elixir_advection_extended.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ callbacks = CallbackSet(summary_callback,
alg = CarpenterKennedy2N54(williamson_condition = false)
sol = solve(ode, alg,
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
save_everystep = false, callback = callbacks);
callback = callbacks;
ode_default_options()...); # default options because an adaptive time stepping method is used in test_mpi_tree.jl

# Print the timer summary
summary_callback()

0 comments on commit ae28ac3

Please sign in to comment.