Package-level declarations

Types

Link copied to clipboard
open class DefaultLauncher @JvmOverloads constructor(val batch: List<String> = emptyList(), val autoStart: Boolean = true, val showProgress: Boolean = true, val parallelism: Int = Runtime.getRuntime().availableProcessors()) : Launcher

The default launcher for simulations. If batch variables are specified, the simulation is run once for each combination of their values. If autoStart is true (default), the simulation is started automatically. If showProgress is true (default), a message is printed to the console every time a simulation completes. If parallelism is greater than 1, the simulations are run in parallel; defaults to the number of logical cores detected by the JVM.