Click or drag to resize

LineSearchResult Constructor

Initializes a new instance of the LineSearchResult class.

Namespace: Altaxo.Calc.Optimization.LineSearch
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public LineSearchResult(
	IObjectiveFunction functionInfo,
	int iterations,
	double finalStep,
	ExitCondition reasonForExit
)

Parameters

functionInfo  IObjectiveFunction
The objective function state at the accepted point.
iterations  Int32
The number of line search iterations.
finalStep  Double
The accepted step size.
reasonForExit  ExitCondition
The reason the line search terminated.
See Also