SAStep Emitter Ifc
Promises the ability to emit an SAStep snapshot after each completed iteration. Emission is gated by StochasticApproximationRootFinder.snapShotFrequency and Emitter.isObserved. When no subscriber is attached and saveSteps is false, no SAStep object is allocated for that iteration.
Usage:
val conn = finder.stepEmitter.attach { step ->
println("Iteration ${step.iterationCount}: x = ${step.x}")
}
finder.stepEmitter.detach(conn) // unsubscribeContent copied to clipboard