This callback specifies the code should be called late in the simulation cycle. For details on exactly when first(), late() and early() callbacks are run during a simulation see SLiM Manual: page 541 for "WF" models, or SLiM Manual: page 549 for "nonWF" models.

late()

Value

None

Author

Benjamin C Haller (bhaller@benhaller.com) and Philipp W Messer (messer@cornell.edu)

Examples

slim_block(100, late(), {
  sim.simulationFinished()
})
#> A slimr_block:
#> <slimr_script[1]>
#> block_1:100 late() {
#>     sim.simulationFinished();
#> }