Skip to contents

Pre-generates all seeds needed for different parts of the Lewbel simulation to ensure reproducibility across parallel execution.

Usage

generate_all_seeds(config)

Arguments

config

List. Configuration object created by create_default_config or related configuration functions.

Value

A list containing seed vectors/matrices for different simulation parts.

Examples

if (FALSE) { # \dontrun{
config <- create_default_config()
seeds <- generate_all_seeds(config)
names(seeds) # "main", "by_n", "by_delta", "bootstrap_demo"
} # }