action_order.Rd
Constant defining standard order of actions
g3_action_order
All gadget3 actions have a run_at parameter. This decides the point in the model that the action will happen relative to others.
The defaults for these are set via g3_action_order
.
A named integer list
# The default action order
unlist(g3_action_order)
#> initial report_early time migrate
#> -1 0 1 2
#> predate naturalmortality grow spawn
#> 3 4 5 6
#> mature renewal straying likelihood
#> 7 8 9 10
#> report age
#> 11 12
# View single value
g3_action_order$age
#> [1] 12