Constant defining standard order of actions

g3_action_order

Details

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.

Value

A named integer list

Examples

# 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