Learn R Programming

EpiModel (version 2.3.1)

set_current_timestep: Set the Current Timestep

Description

Changes the current timestep in the dat object. Use with caution. This function exists to work around unforeseen corner cases. In most situation, increment_timestep is preferred.

Usage

set_current_timestep(dat, timestep)

Value

The updated dat main list object.

Arguments

dat

Main list object containing a networkDynamic object and other initialization information passed from netsim.

timestep

The new value for the timestep.

Mutability

This DOES NOT modify the dat object in place. The result must be assigned back to dat in order to be registered: dat <- increment_timestep(dat).