Skip to content

Commit

Permalink
Remove non-needed code
Browse files Browse the repository at this point in the history
  • Loading branch information
bennibolm committed Oct 18, 2023
1 parent 6c7d637 commit 97db537
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/callbacks_stage/subcell_bounds_check.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,12 @@ function (callback::BoundsCheckCallback)(u_ode, integrator, stage)
(stage == length(alg.c)) &&
(iter % callback.interval == 0 || integrator.finalstep)
@trixi_timeit timer() "check_bounds" check_bounds(u, mesh, equations, solver, cache,
t, iter + 1,
solver.volume_integral, t,
iter + 1,
callback.output_directory,
save_errors_)
end

function check_bounds(u, mesh, equations, solver, cache, t, iter, output_directory,
save_errors)
check_bounds(u, mesh, equations, solver, cache, solver.volume_integral, t, iter,
output_directory, save_errors)
end

function check_bounds(u, mesh, equations, solver, cache,
volume_integral::AbstractVolumeIntegral, t, iter,
output_directory, save_errors)
Expand Down

0 comments on commit 97db537

Please sign in to comment.