Visible to Intel only — GUID: GUID-074456E7-9A56-4EDB-AD6B-F96F14652A24
Visible to Intel only — GUID: GUID-074456E7-9A56-4EDB-AD6B-F96F14652A24
Computation
Algorithm Input
The iterative solver algorithm accepts the input described below. Pass the Input ID as a parameter to the methods that provide input for your algorithm. For more details, see Algorithms.
Input ID |
Input |
---|---|
inputArgument |
A numeric table of size with the value of start argument . |
optionalArgument |
Object of the OptionalArgument class that contains a set of algorithm-specific intrinsic parameters. For a detailed definition of the set, see the problem statement above and the description of a specific algorithm. |
Algorithm Parameters
The iterative solver algorithm has the following parameters:
Parameter |
Default Value |
Description |
---|---|---|
function |
Not applicable |
Objective function represented as a sum of functions. |
nIterations |
100 |
Maximum number of iterations of the algorithm. |
accuracyThreshold |
Accuracy of the algorithm. The algorithm terminates when this accuracy is achieved. |
|
optionalResultRequired |
false |
Indicates whether the set of the intrinsic parameters should be returned by the solver. |
Algorithm Output
The iterative solver algorithm calculates the result described below. Pass the Result ID as a parameter to the methods that access the results of your algorithm. For more details, see Algorithms.
Result ID |
Result |
---|---|
minimum |
A numeric table of size with argument . By default, the result is an object of the HomogenNumericTable class, but you can define the result as an object of any class derived from NumericTable, except for PackedTriangularMatrix and PackedSymmetricMatrix. |
nIterations |
A numeric table of size with a 32-bit integer number of iterations done by the algorithm. By default, the result is an object of the HomogenNumericTable class, but you can define the result as an object of any class derived from NumericTable, except for PackedTriangularMatrix, PackedSymmetricMatrix, and CSRNumericTable. |
optionalResult |
Object of the OptionalArgument class that contains a set of algorithm-specific intrinsic parameters. For a detailed definition of the set, see the problem statement above and the description of a specific algorithm. |