Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
odunbar committed Nov 6, 2024
1 parent 5947dbb commit fff0946
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/Routing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,13 @@ function update_state_from_hillslope!(
river_state::RS,
hillslope_model::HM,
static_env::SE,
dyn_env::DE
) where {RS <: RiverState, HM <: AbstractHillslopeModel, SE <: StaticEnvironment, DE <: DynamicEnvironment}
dyn_env::DE,
) where {
RS <: RiverState,
HM <: AbstractHillslopeModel,
SE <: StaticEnvironment,
DE <: DynamicEnvironment,
}
# Constants
day_to_s = 86400
km²_to_m² = 1000000
Expand Down Expand Up @@ -66,7 +71,13 @@ update_state_from_hillslope!(
river_state::RS,
hillslope_model::HM,
env::E,
) where {RS <: RiverState, HM <: AbstractHillslopeModel, E <: Environment} = update_state_from_hillslope!(river_state, hillslope_model, env.static_env, env.dyn_env)
) where {RS <: RiverState, HM <: AbstractHillslopeModel, E <: Environment} =
update_state_from_hillslope!(
river_state,
hillslope_model,
env.static_env,
env.dyn_env,
)


function update_state_from_channel!() end

0 comments on commit fff0946

Please sign in to comment.