Group LPnetlib

Group Description
NETLIB Linear Programming problems, www.netlib.org.

matrices/LPnetlib/README.  Tim Davis, May 15, 1997. (davis :at the domain:
cise.ufl.edu)

The files in this directory are a translation of the linear programming
problems in Netlib.  You can obtain more information about the Netlib LP
problems by sending email to netlib :at the domain:
ornl.gov with the message
"send index from lp".


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NOTICE!  The Netlib LP problems, in MPS format, should be considered the
"canonical" problems.  If you find any problems with different optimal
objectives than what is reported in Netlib, then please let me know.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

The Netlib LP problems are in MPS or compressed MPS format.  Any compressed
MPS files were uncompressed using emps.c in the Netlib lp/data directory.
The MPS files were then converted to the KAR format using the mpsrd program
by M.G.C. Resende and G. Veiga.  The mpsrd program does not process RANGES,
so five problems (boeing1, boeing2, forplan, nesm, and seba) do not appear
here.  The KAR format is written out by mpsrd as follows:

c     name   - problem name (same as mps name card)
      write(out,'(a8)') name
c     m      - number or rows (input)
c     n      - number of columns (input)
      write(out,*) m,n
c     ia     - pointers to the begining of storage of column
      write(out,*) (ia(i),i=1,n+1)
c     ja     - row indices for each non zero entry (input)
      write(out,*) (ja(i),i=1,ia(n+1)-1)
c     a      - non zero entries (input)
      write(out,*) (a(i),i=1,ia(n+1)-1)
c     b      - right hand side (input)
      write(out,*) (b(i),i=1,m)
c     c      - objective vector (minimize)
      write(out,*) (c(i),i=1,n)
c     z0     - initial fixed value for objective
      write(out,*) z0
c     lobnd  - lower bounds on variables
      write(out,*) (lobnd(i),i=1,n)
c     upbnd  - upper bounds on variables
      write(out,*) (upbnd(i),i=1,n)

Mpsrd converts the MPS problem into a single form:

	minimize c'*x, subject to Ax=b and l<=x<=u.
	(and given an initial value of the objective, z0).

Next, the KAR formatted version of the LP problem was converted into
two formats by the readkar.f program, written by Tim Davis.  It generates
a single Matlab script, such as lp_afiro.m for the AFIRO problem.
For infeasible (lp/infeas) problems, the prefix is lpi_ (lpi_galenet.m for
the problem GALENET, for example).  This prefix was chosen so that you
are sure to notice that the problem is infeasible, and also because there
are two versions of the same problem in Netlib (GREENBEA), one feasible
and the other not.



--------------------------------------------------------------------------------


The *.clu files contain the c, l, and u vectors,
and the scalar z0, for the LP problems held in
RRA format in the LPnetlib directory.  The dense vectors
appear in order: c, l, u, and then z0.  One entry is held
on each line. 

The RRA files contain A and b, in Harwell/Boeing format.

The LP problems are all of the form

	minimize c'*x, subject to Ax=b and l<=x<=u
	and where z0 is the initial value of the
	objective.
Displaying collection matrices 41 - 60 of 138 in total
Id Name Group Rows Cols Nonzeros Kind Date Download File
634 lp_grow7 LPnetlib 140 301 2,612 Linear Programming Problem 1983 MATLAB Rutherford Boeing Matrix Market
635 lp_israel LPnetlib 174 316 2,443 Linear Programming Problem MATLAB Rutherford Boeing Matrix Market
636 lp_kb2 LPnetlib 43 68 313 Linear Programming Problem 1989 MATLAB Rutherford Boeing Matrix Market
637 lp_ken_07 LPnetlib 2,426 3,602 8,404 Linear Programming Problem 1991 MATLAB Rutherford Boeing Matrix Market
638 lp_ken_11 LPnetlib 14,694 21,349 49,058 Linear Programming Problem 1991 MATLAB Rutherford Boeing Matrix Market
639 lp_ken_13 LPnetlib 28,632 42,659 97,246 Linear Programming Problem 1991 MATLAB Rutherford Boeing Matrix Market
640 lp_ken_18 LPnetlib 105,127 154,699 358,171 Linear Programming Problem 1991 MATLAB Rutherford Boeing Matrix Market
641 lp_lotfi LPnetlib 153 366 1,136 Linear Programming Problem 1989 MATLAB Rutherford Boeing Matrix Market
642 lp_maros LPnetlib 846 1,966 10,137 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
643 lp_maros_r7 LPnetlib 3,136 9,408 144,848 Linear Programming Problem 1994 MATLAB Rutherford Boeing Matrix Market
644 lp_modszk1 LPnetlib 687 1,620 3,168 Linear Programming Problem 1994 MATLAB Rutherford Boeing Matrix Market
645 lp_osa_07 LPnetlib 1,118 25,067 144,812 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
646 lp_osa_14 LPnetlib 2,337 54,797 317,097 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
647 lp_osa_30 LPnetlib 4,350 104,374 604,488 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
648 lp_osa_60 LPnetlib 10,280 243,246 1,408,073 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
649 lp_pds_02 LPnetlib 2,953 7,716 16,571 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
650 lp_pds_06 LPnetlib 9,881 29,351 63,220 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
651 lp_pds_10 LPnetlib 16,558 49,932 107,605 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
652 lp_pds_20 LPnetlib 33,874 108,175 232,647 Linear Programming Problem 1990 MATLAB Rutherford Boeing Matrix Market
653 lp_perold LPnetlib 625 1,506 6,148 Linear Programming Problem 1989 MATLAB Rutherford Boeing Matrix Market