Auxiliary for use as a delegate parameter

Syntax

C#
public static void e04nku(
	int nstate,
	int ncolh,
	double[] x,
	double[] hx
)
Visual Basic
Public Shared Sub e04nku ( _
	nstate As Integer, _
	ncolh As Integer, _
	x As Double(), _
	hx As Double() _
)
Visual C++
public:
static void e04nku(
	int nstate, 
	int ncolh, 
	array<double>^ x, 
	array<double>^ hx
)
F#
static member e04nku : 
        nstate : int * 
        ncolh : int * 
        x : float[] * 
        hx : float[] -> unit 

Parameters

nstate
Type: System..::..Int32
On entry: if nstate=1, then e04nk is calling _qphx for the first time on a sub-problem. This parameter setting allows you to save computation time if certain data must be read or calculated only once.
If nstate2, then e04nk is calling _qphx for the last time. This parameter setting allows you to perform some additional computation on the final sub-problem solution. In general, the last call to _qphx is made with nstate=2+_ifail (see [Error Indicators and Warnings]).
Otherwise, nstate=0.
ncolh
Type: System..::..Int32
On entry: this is the same parameter ncolh as supplied to e04nk.
x
Type: array<System..::..Double>[]()[][]
An array of size [ncolh]
On entry: an initial estimate of the solution.
On exit: the point at which e04nk terminated. If ifail=01 or 4, x contains an estimate of the solution.
hx
Type: array<System..::..Double>[]()[][]
An array of size [ncolh]

Description

Auxiliary for use as a delegate parameter

References

None.

Error Indicators and Warnings

None.

Accuracy

Not applicable.

Further Comments

None.

Example

None.

See Also