Language Reference


NLPFEA Call

CALL NLPFEA (xr, x0, blc <, par> );

The NLPFEA subroutine computes feasible points subject to constraints.

See the section Nonlinear Optimization and Related Subroutines for a listing of all NLP subroutines. See ChapterĀ 15 for a description of the arguments of NLP subroutines.

The NLPFEA subroutine tries to compute a point that is feasible subject to a set of boundary and linear constraints. You can specify boundary and linear constraints that define an empty feasible region, in which case the subroutine returns missing values.

You can specify the following input arguments with the NLPFEA subroutine:

  • x0 is a row vector that defines the coordinates of a point that is not necessarily feasible for a set of linear and boundary constraints.

  • blc is an $m \times n$ matrix that defines a set of m boundary and linear constraints. See the section Parameter Constraints for details.

  • par is a vector of length two. The argument is different from the one used in the optimization subroutines. The first element sets the LCEPS parameter, which controls how precisely the returned point must satisfy the constraints. The second element sets the LCSING parameter, which specifies the criterion for deciding when constraints are considered linearly dependent. For details, see the section Control Parameters Vector.

The NLPFEA subroutine returns the xr argument. The result is a vector that contains either the n coordinates of a feasible point, which indicates that the subroutine was successful, or missing values, which indicates that the subroutine could not find a feasible point.

The following statements call the NLPFEA subroutine with the constraints from the Betts problem (see the section Constrained Betts Function) and an initial infeasible point $x_0=(-17,-61)$. The subroutine returns the feasible point $(2,-50)$ as the vector XFEAS.

con = {  2 -50  .   .,
        50  50  .   .,
        10  -1  1  10};
x = {-17. -61};
call nlpfea(xfeas, x, con);
print xfeas;

Figure 25.236: Feasible Point

xfeas
6.8 -40