DesignPointStarted

data class DesignPointStarted(val pointId: Int, val index: Int, val totalDesignPoints: Int, val startTime: Instant) : RunEvent(source)

Emitted by ParallelDesignedExperiment immediately before each design-point coroutine begins its model build + run. Lets consumers track per-design-point state (PENDING → RUNNING) before the corresponding DesignPointCompleted event arrives.

Constructors

Link copied to clipboard
constructor(pointId: Int, index: Int, totalDesignPoints: Int, startTime: Instant)

Properties

Link copied to clipboard
val index: Int

1-based position of this design point in the run order

Link copied to clipboard

1-based design-point identifier within the experiment

Link copied to clipboard
val startTime: Instant

wall-clock instant the per-point coroutine started

Link copied to clipboard

total number of design points in the experiment