SoPlex Doxygen Documentation
spxmpsread.cpp File Reference

Read LP from MPS format file. More...

#include <assert.h>
#include <string.h>
#include <iostream>
#include "spxdefines.h"
#include "spxlp.h"
#include "mpsinput.h"
#include "spxout.h"

Go to the source code of this file.

Namespaces

namespace  soplex
 Everything should be within this namespace.
 

Macros

#define INIT_COLS   10000
 initialy allocated columns.
 
#define INIT_NZOS   100000
 initialy allocated non zeros.
 

Functions

static void readName (MPSInput &mps)
 Process NAME section.
 
static void readObjsen (MPSInput &mps)
 Process OBJSEN section. This Section is an ILOG extension.
 
static void readObjname (MPSInput &mps)
 Process OBJNAME section. This Section is an ILOG extension.
 
static void readRows (MPSInput &mps, LPRowSet &rset, NameSet &rnames)
 Process ROWS section.
 
static void readCols (MPSInput &mps, const LPRowSet &rset, const NameSet &rnames, LPColSet &cset, NameSet &cnames, DIdxSet *intvars)
 Process COLUMNS section.
 
static void readRhs (MPSInput &mps, LPRowSet &rset, const NameSet &rnames)
 Process RHS section.
 
static void readRanges (MPSInput &mps, LPRowSet &rset, const NameSet &rnames)
 Process RANGES section.
 
static void readBounds (MPSInput &mps, LPColSet &cset, const NameSet &cnames, DIdxSet *intvars)
 Process BOUNDS section.
 

Detailed Description

Read LP from MPS format file.

Definition in file spxmpsread.cpp.

Macro Definition Documentation

#define INIT_COLS   10000

initialy allocated columns.

Definition at line 30 of file spxmpsread.cpp.

Referenced by SPxLP::readMPS().

#define INIT_NZOS   100000

initialy allocated non zeros.

Definition at line 31 of file spxmpsread.cpp.

Referenced by SPxLP::readMPS().