Engine
open class Engine<T, P : Position<out P>>(environment: Environment<T, P>, scheduler: Scheduler<T>) : Simulation<T, P>
Represents a simulation engine that manages execution and scheduling. Provides multiple factory methods to simplify the creation process.
Parameters
T
the concentration type
P
the position type, extending Position
Inheritors
Functions
Link copied to clipboard
Adds an output monitor to track simulation events.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Moves the simulation forward until the given step is reached.
Link copied to clipboard
Moves the simulation forward until the given time is reached.
Link copied to clipboard
Registers a newly added neighbor.
Link copied to clipboard
Registers a removed neighbor.
Link copied to clipboard
Handles the removal of a node.
Link copied to clipboard
Pauses the simulation.
Link copied to clipboard
Resumes the simulation.
Link copied to clipboard
Registers a newly added reaction.
Link copied to clipboard
Registers a removed reaction.
Link copied to clipboard
Link copied to clipboard
Runs an existing Simulation in the current thread.
Link copied to clipboard
fun <T, P : Position<P>, Vector<P>> Simulation<T, P>.startSimulation(onceInitialized: (EuclideanEnvironment<T, P>) -> Unit = { }, atEachStep: (EuclideanEnvironment<T, P>, Actionable<T>?, Time, Long) -> Unit = { _, _, _, _ -> }, whenFinished: (EuclideanEnvironment<T, P>, Time, Long) -> Unit = { _, _, _ -> }, steps: Long = 10000): EuclideanEnvironment<T, P>
Run the simulation this environment owns.
Link copied to clipboard
Terminates the simulation.
Link copied to clipboard
Link copied to clipboard
fun <T, P : Position<out P>> Simulation<T, P>.toGraphQLSimulationSurrogate(): SimulationSurrogate<T, P>
Converts a Simulation to a SimulationSurrogate.