MixtureOptimizer.eval

Perform k (1) iterations of coordinate (gradient or EM) descent optimization algorithm.

class MixtureOptimizer(T)
abstract
void
eval
(
scope bool delegate
(
T a
,
T b
)
@nogc nothrow
findRootTolerance = null
)
if (
isFloatingPoint!T
)

Parameters

findRootTolerance bool delegate
(
T a
,
T b
)
@nogc nothrow

Defines an early termination condition. Receives the current upper and lower bounds on the root. The delegate must return true when these bounds are acceptable.

See Also

$(STDREF numeric, findRoot) evaluate optimize

Meta