6 #ifndef CoinStructuredModel_H 7 #define CoinStructuredModel_H 64 const double *rowLower,
const double *rowUpper,
65 const double *columnLower,
const double *columnUpper,
66 const double *objective);
93 int writeMps(
const char *filename,
int compression = 0,
94 int formatType = 0,
int numberAcross = 2,
bool keepStrings =
false);
97 bool keepNames =
false,
98 bool ignoreErrors =
false);
107 int maxBlocks = 50,
const char **starts = NULL);
115 const double *rowLower,
const double *rowUpper,
116 const double *columnLower,
const double *columnUpper,
117 const double *objective,
int type,
int maxBlocks = 50,
155 int rowBlock(
const std::string &name)
const;
199 const double *&rowLower,
const double *&rowUpper,
200 const double *&columnLower,
const double *&columnUpper,
201 const double *&objective)
const;
void refresh(int iBlock)
Refresh info in blockType_.
int rowBlock(const std::string &name) const
Return a row block index given a row block name.
This is a model which is made up of Coin(Structured)Model blocks.
double optimizationDirection_
Direction of optimization (1 - minimize, -1 - maximize, 0 - ignore.
int numberElementBlocks_
Current number of element blocks.
virtual ~CoinStructuredModel()
Destructor.
int numberColumns() const
Return number of columns.
int numberRows() const
Return number of rows.
int numberElementBlocks() const
Return number of elementBlocks.
int fillInfo(CoinModelBlockInfo &info, const CoinModel *block)
Fill in info structure and update counts Returns number of inconsistencies on border.
CoinBaseModel ** blocks_
Blocks.
This is a simple minded model which is stored in a format which makes it easier to construct and modi...
CoinStructuredModel & operator=(const CoinStructuredModel &)
=
CoinModelBlockInfo * blockType_
Which parts of model are set in block.
const CoinModelBlockInfo & blockType(int i) const
Return i'th block type.
int maximumElementBlocks_
Maximum number of element blocks.
void setCoinModel(CoinModel *block, int iBlock)
Sets given block into coinModelBlocks_.
const std::string & getColumnBlock(int i) const
Return i'th the column block name.
struct CoinModelInfo2 CoinModelBlockInfo
This is a model which is made up of Coin(Structured)Model blocks.
int columnBlock(const std::string &name) const
Return a column block index given a column block name.
int decompose(const CoinModel &model, int type, int maxBlocks=50, const char **starts=NULL)
Decompose a CoinModel 1 - try D-W 2 - try Benders 3 - try Staircase Returns number of blocks or zero ...
int addColumnBlock(int numberColumns, const std::string &name)
Add or check a column block name and number of columns.
CoinModel * coinModelBlock(CoinModelBlockInfo &info)
Return model as a CoinModel block and fill in info structure and update counts.
int addRowBlock(int numberRows, const std::string &name)
Add or check a row block name and number of rows.
int numberRowBlocks() const
Return number of row blocks.
double optimizationDirection() const
Direction of optimization (1 - minimize, -1 - maximize, 0 - ignore.
int numberColumnBlocks() const
Return number of column blocks.
CoinBaseModel * block(int i) const
Return i'th block.
std::vector< std::string > rowBlockNames_
Rowblock name.
void setRowBlock(int i, const std::string &name)
Set i'th row block name.
void setColumnBlock(int i, const std::string &name)
Set i'th column block name.
void setOptimizationDirection(double value)
Set direction of optimization (1 - minimize, -1 - maximize, 0 - ignore.
int writeMps(const char *filename, int compression=0, int formatType=0, int numberAcross=2, bool keepStrings=false)
Write the problem in MPS format to a file with the given filename.
virtual CoinBaseModel * clone() const
Clone.
CoinModel ** coinModelBlocks_
CoinModel copies of blocks or NULL if original CoinModel.
Sparse Matrix Base Class.
CoinStructuredModel()
Default constructor.
int readSmps(const char *filename, bool keepNames=false, bool ignoreErrors=false)
Read SMPS model.
int addBlock(const std::string &rowBlock, const std::string &columnBlock, const CoinBaseModel &block)
add a block from a CoinModel using names given as parameters returns number of errors (e...
CoinBigIndex numberElements() const
Return number of elements.
double objectiveOffset() const
Returns the (constant) objective offset This is the RHS entry for the objective row.
std::vector< std::string > columnBlockNames_
Columnblock name.
int numberColumnBlocks_
Current number of column blocks.
int blockIndex(int row, int column) const
Return block number corresponding to row and column.
CoinModel * coinBlock(int i) const
Return i'th block as CoinModel (or NULL)
const std::string & getRowBlock(int i) const
Return the i'th row block name.
int numberRowBlocks_
Current number of row blocks.