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.

Link copied to clipboard
class DistributedExecution(variables: List<String> = emptyList(), distributedConfigPath: String?) : DefaultLauncher

Launches a simulation set on a cluster of Alchemist nodes running in server mode.

Link copied to clipboard
class IgniteServerLauncher @JvmOverloads constructor(serverConfigPath: String? = null) : DefaultLauncher

Launches a service waiting for simulations to be sent over the network.