OutputMonitor

interface OutputMonitor<T, P : Position<out P>?> : Serializable

An interface for the visualization of the simulation.

Parameters

<T>

Concentration Type

<P>

Inheritors

Functions

Link copied to clipboard
open fun finished(environment: Environment<T, P>, time: Time, step: Long)
This method will be called by the simulation once the whole simulation has finished, either because it reached its latest point or because the user stopped it.
Link copied to clipboard
open fun initialized(environment: Environment<T, P>)
This method will be called by the simulation as soon as the initialization phase is completed.
Link copied to clipboard
open fun stepDone(environment: Environment<T, P>, reaction: Actionable<T>, time: Time, step: Long)
This method will be called by the simulation every time a simulation step is done.