Auxiliary for use as a delegate parameter
Syntax
C# |
---|
public static void e05jbk( int n, int ncall, double[] xbest, int[] icount, double[,] list, int[] numpts, int[] initpt, int nbaskt, double[,] xbaskt, double[] boxl, double[] boxu, int nstate, out int inform ) |
Visual Basic |
---|
Public Shared Sub e05jbk ( _ n As Integer, _ ncall As Integer, _ xbest As Double(), _ icount As Integer(), _ list As Double(,), _ numpts As Integer(), _ initpt As Integer(), _ nbaskt As Integer, _ xbaskt As Double(,), _ boxl As Double(), _ boxu As Double(), _ nstate As Integer, _ <OutAttribute> ByRef inform As Integer _ ) |
Visual C++ |
---|
public: static void e05jbk( int n, int ncall, array<double>^ xbest, array<int>^ icount, array<double,2>^ list, array<int>^ numpts, array<int>^ initpt, int nbaskt, array<double,2>^ xbaskt, array<double>^ boxl, array<double>^ boxu, int nstate, [OutAttribute] int% inform ) |
F# |
---|
static member e05jbk : n : int * ncall : int * xbest : float[] * icount : int[] * list : float[,] * numpts : int[] * initpt : int[] * nbaskt : int * xbaskt : float[,] * boxl : float[] * boxu : float[] * nstate : int * inform : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: , the number of variables.
- ncall
- Type: System..::..Int32On entry: the cumulative number of calls to _objfun.
- xbest
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: the current best point.
- icount
- Type: array<System..::..Int32>[]()[][]An array of size []On entry: an array of counters.
- , the current number of sub-boxes.
- , the cumulative number of calls to _objfun made in local searches.
- , the cumulative number of points used as start points for local searches.
- , the cumulative number of sweeps through levels.
- , the cumulative number of splits by initialization list.
- , the current lowest level containing non-split boxes.
- list
- Type: array<System..::..Double,2>[,](,)[,][,]On entry: the initialization list.
- numpts
- Type: array<System..::..Int32>[]()[][]An array of size [n]On entry: the number of points in each coordinate at which to split according to the initialization list list.
- initpt
- Type: array<System..::..Int32>[]()[][]An array of size [n]
- nbaskt
- Type: System..::..Int32On entry: the number of points in the ‘shopping basket’ xbaskt.
- xbaskt
- Type: array<System..::..Double,2>[,](,)[,][,]On entry: the ‘shopping basket’ of candidate minima.
- boxl
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: the array of lower bounds of the current search box.
- boxu
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: the array of upper bounds of the current search box.
- nstate
- Type: System..::..Int32On entry: is set by e05jb to indicate at what stage of the minimization _monit was called.
- This is the first time that _monit has been called.
- This is the last time _monit will be called.
- This is the first and last time _monit will be called.
- inform
- Type: System..::..Int32%On exit: must be set to a value describing the action to be taken by the solver on return from _monit: if the value is negative the solution of the current problem will terminate immediately; otherwise, computations will continue.
Description
Auxiliary for use as a delegate parameter
References
None.
Error Indicators and Warnings
None.
Accuracy
Not applicable.
Further Comments
None.
Example
None.