The routine may be called by the names h02bff or nagf_mip_ilp_mpsx.
3Description
h02bff solves Linear Programming (LP) or integer programming (IP) problems specified in MPSX (see IBM (1971)) input format. It calls either e04mff/e04mfa (to solve an LP problem) or h02bbfandh02bzf (to solve an IP problem); these routines are designed to solve problems of the form
where is an -element vector and is an matrix (i.e., there are variables and general linear constraints). h02bbf is used if at least one of the variables is restricted to take an integer value at the optimum solution. The document for h02buf should be consulted for a detailed description of the MPSX format.
In the MPSX data file the first free row, that is a row defined with the row type n, is taken as the objective row. Similarly, if there are more than one RHS, RANGES or BOUNDS sets, then the first set is used for the optimization. h02bff also prints the solution to the problem using the row and column names specified in the MPSX data file (by calling h02bvf).
4References
IBM (1971) MPSX – Mathematical programming system Program Number 5734 XM4 IBM Trade Corporation, New York
5Arguments
1: – IntegerInput
On entry: the unit number associated with the MPSX data file.
Constraint:
.
2: – IntegerInput
On entry: an upper limit for the number of variables in the problem.
Constraint:
.
3: – IntegerInput
On entry: an upper limit for the number of constraints (including the objective) in the problem.
Constraint:
.
4: – Character(3)Input
On entry: specifies the direction of the optimization. optim must be set to 'MIN' for minimization and to 'MAX' for maximization.
Constraint:
or .
5: – Real (Kind=nag_wp)Input
On entry: the default lower bound to be used for the variables in the problem when none is specified in the BOUNDS section of the MPSX data file. For a standard LP or IP problem xbldef would normally be set to zero.
6: – Real (Kind=nag_wp)Input
On entry: the default upper bound to be used for the variables in the problem when none is specified in the BOUNDS section of the MPSX data file. For a standard LP or IP problem xbudef would normally be set to ‘infinity’ (i.e., ).
Constraint:
.
7: – IntegerInput
On entry: for an IP problem, maxdpt must specify the maximum depth of the branch and bound tree.
On entry: the amount of printout produced by e04mff/e04mfaorh02bbf, as indicated below. For a description of the printed output see Section 9.2 in e04mff/e04mfa or Section 5.1 in h02bbf (as appropriate). All output is written to the current advisory message unit (as defined by x04abf).
One line of output for each node investigated and the final IP solution.
The original LP solution (first node) with dummy names for the rows and columns, one line of output for each node investigated and the final IP solution with MPSX names for the rows and columns.
9: – IntegerOutput
On exit: , the actual number of variables in the problem.
10: – IntegerOutput
On exit: , the actual number of general linear constraints in the problem.
11: – Real (Kind=nag_wp) arrayOutput
On exit: the solution to the problem, stored in .
is the value of the variable whose MPSX name is stored in , for .
12: – Character(8) arrayOutput
On exit: the first n elements contain the MPSX names for the variables in the problem.
13: – Integer arrayOutput
On exit: the first () elements contain ISTATE (the status of the constraints in the working set at the solution). Further details can be found in Section 5 in e04mff/e04mfaorh02bzf (as appropriate).
14: – IntegerInput
On entry: the dimension of the array iwork as declared in the (sub)program from which h02bff is called.
Constraints:
for an LP problem, ;
for an IP problem, .
15: – Real (Kind=nag_wp) arrayOutput
On exit: the first () elements contain BL (the lower bounds), the next () elements contain BU (the upper bounds) and the next () elements contain CLAMDA (the Lagrange-multipliers). Further details can be found in Section 5 in e04mff/e04mfaorh02bzf (as appropriate). Note that for an IP problem the contents of BL and BU may not be the same as those originally specified in the MPSX data file and/or via the arguments xbldef and xbudef.
16: – IntegerInput
On entry: the dimension of the array rwork as declared in the (sub)program from which h02bff is called.
Constraints:
for an LP problem, ;
for an IP problem, .
17: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
The problem does not have a feasible integer solution.
Weak LP solution.
The LP solution is unbounded.
The LP does not have a feasible solution, i.e., it was not possible to satisfy all the constraints to within the feasibility tolerance (defined internally as ). See Section 9.
Iteration limit (defined internally as ) reached without finding a solution. (See Section 9.)
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, not enough integer workspace to read data file: .
On entry, not enough integer workspace to solve problem: liwork must be at least .
On entry, not enough real workspace to read data file: .
On entry, not enough real workspace to solve problem: lrwork must be at least .
On entry, .
Constraint: or .
On entry, and .
Constraint: .
A serious error has occurred. Check all subroutine calls and array dimensions.
Search of a branch was terminated due to iteration limit.
The solution returned may not be optimal. See Section 9.
The IP solution returned is the best solution for the number of nodes investigated in the branch and bound tree.
No feasible integer point was found, i.e., it was not possible to satisfy all the integer variables to within the integer feasibility tolerance (defined internally as ). See Section 9.
No feasible solution was found for the number of nodes investigated in the branch and bound tree.
Not enough workspace to solve problem.
Either maxm and/or maxn are too small or the MPSX data file is nonstandard and/or corrupt.This corresponds to in Section 6 in h02buf.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
h02bff implements a numerically stable active set strategy and returns solutions that are as accurate as the condition of the problem allows on the machine.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
h02bff is not thread safe and should not be called from a multithreaded user program. Please see Section 1 in FL Interface Multithreading for more information on thread safety.
h02bff makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
For an LP problem only:
If on exit, you can obtain more information by making separate calls to h02buf, e04mff/e04mfa and h02bvf (in that order). Note that this will (by default) cause the final LP solution to be printed twice on the current advisory message unit (see x04abf), once with dummy names for the rows and columns and once with user-supplied names. To suppress the printout of the final LP solution with dummy names for the rows and columns
, include the statement
If on exit, you are recommended to reset the value of the feasibility tolerance (via Feasibility Tolerance) and rerun h02bff. (Further advice is given under the description of in Section 6 in e04mff/e04mfa.)
For example, to reset the value of the feasibility tolerance to , include the statement
If on exit, you are recommended to increase the maximum number of iterations allowed before termination (via Iteration Limit) and rerun h02bff.
For example, to increase the maximum number of iterations to , include the statement
Call e04mhf/e04mha(' Iteration Limit = 500 ')
prior to calling h02bff.
Note that h02buf uses an ‘infinite’ bound size of in the definition of and . In other words, any element of greater than or equal to will be regarded as (and similarly any element of less than or equal to will be regarded as ). If this value is deemed to be inappropriate, you are recommended to reset the value of the ‘infinite’ bound size (via Infinite Bound Size) and make any necessary changes to bl and/or bu prior to calling e04mff/e04mfa.
For example, to reset the value of the ‘infinite’ bound size to , include the statement
If , , , or on exit, you can obtain more information by making separate calls to h02bbf,h02buf,h02bvfandh02bzf (in that order).
Note that h02buf uses an ‘infinite’ bound size of in the definition of and . In other words, any element of greater than or equal to will be regarded as (and similarly any element of less than or equal to will be regarded as ). If this value is deemed to be inappropriate, you are recommended to reset the value of the argument bigbnd (as described in h02bbf) and make any necessary changes to BL and/or BU prior to calling h02bbf.
10Example
This example solves the same problem as the example for h02buf, except that it treats it as an IP problem.
One of the applications of integer programming is to the so-called diet problem. Given the nutritional content of a selection of foods, the cost of each food, the amount available of each food and the consumer's minimum daily nutritional requirements, the problem is to find the cheapest combination. This gives rise to the following problem:
minimize
subject to
where
and are real,
and are integer,
and
.
The rows of correspond to energy, protein and calcium and the columns of correspond to oatmeal, chicken, eggs, milk, pie and bacon respectively.
The MPSX data representation of this problem is given in Section 10.2.