Skip to content

Commit

Permalink
aplpied autoformatter on coupled semidiscretization.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCan committed Nov 15, 2023
1 parent 538e401 commit e6b621a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/semidiscretization/semidiscretization_coupled.jl
Original file line number Diff line number Diff line change
Expand Up @@ -483,13 +483,15 @@ function copy_to_coupled_boundary!(u_ode, semi, i, n_boundaries, boundary_condit
boundary_conditions...)
copy_to_coupled_boundary!(boundary_condition, u_ode, semi)
if i < n_boundaries
copy_to_coupled_boundary!(u_ode, semi, i + 1, n_boundaries, boundary_conditions...)
copy_to_coupled_boundary!(u_ode, semi, i + 1, n_boundaries,
boundary_conditions...)
end
end

function copy_to_coupled_boundary!(boundary_conditions::Union{Tuple, NamedTuple}, u_ode,
semi)
copy_to_coupled_boundary!(u_ode, semi, 1, length(boundary_conditions), boundary_conditions...)
copy_to_coupled_boundary!(u_ode, semi, 1, length(boundary_conditions),
boundary_conditions...)
end

function mesh_equations_solver_cache(other_semi_index, i, semi_, semi_tuple...)
Expand Down

0 comments on commit e6b621a

Please sign in to comment.