Overview | Group | Tree | Graph | Index | Concepts |
This is an advanced routine. Advanced routines typically demand a profound understanding of the algorithms used by ILOG CPLEX. Thus they incur a higher risk of incorrect behavior in your application, behavior that can be difficult to debug. Therefore, ILOG encourages you to consider carefully whether you can accomplish the same task by means of other Callable Library routines instead.
The routine CPXgetijrow
returns the index of a specific
basic variable as its position in the basis header. If the specified row
indexes a constraint that is not basic, or if the specified column indexes a
variable that is not basic, CPXgetijrow
returns an error code
and sets the value of its argument *row_p
to -1
.
An error is also returned if both row and column indices are specified in
the same call.
env | The pointer to the ILOG CPLEX environment, as returned by |
lp | The pointer to the CPLEX LP problem object, as returned by |
i | An integer specifying the index of a basic row; |
j | An integer specifying the index of a basic column; |
row_p | A pointer to an integer indicating the position in the basis header of the row |