Package com.imsl.math
Interface MinConNLP.Function
- All Known Subinterfaces:
MinConNLP.Gradient
- All Known Implementing Classes:
MinConNLPEx1,MinConNLPEx2,MinConNLPEx3
- Enclosing class:
- MinConNLP
public static interface MinConNLP.Function
Public interface for the user supplied function to the
MinConNLP object.-
Method Summary
Modifier and TypeMethodDescriptiondoublef(double[] x, int iact, boolean[] ierr) Compute the value of the function at the given point.
-
Method Details
-
f
double f(double[] x, int iact, boolean[] ierr) Compute the value of the function at the given point.- Parameters:
x- an inputdoublearray, the point at which the objective function or constraint is to be evaluatediact- an inputintvalue indicating whether evaluation of the objective function is requested or evaluation of a constraint is requested. If iact is zero, then an objective function evaluation is requested. If iact is nonzero then the value of iact indicates the index of the constraint to evaluate. (1 indicates the first constraint, 2 indicates the second, etc.)ierr- an input/outputbooleanarray of length 1. On input ierr[0] is set to false. If an error or other undesirable condition occurs during evaluation, then ierr[0] should be set to true. Setting ierr[0] to true will result in the step size being reduced and the step being tried again. (If ierr[0] is set to true for xguess, then an error is issued.)- Returns:
- a
double. If iact is zero, then the value of the objective function at x is returned. If iact is nonzero, then the computed constraint value at the point x is returned.
-