Runs the model. Auto-initializes if no session is active.
run.RdRuns the model. Auto-initializes if no session is active.
Examples
if (FALSE) { # \dontrun{
# Simple usage - everything handled automatically
results <- run()
# Or with custom input
input <- get_input(jurisdiction = "us", time_horizon = 10)
results <- run(input = input$values)
# Advanced: manual session management for multiple runs
init_session()
run()
run() # run again with same session
terminate_session()
} # }