#include <iostream>
#include "CoinError.hpp"
#include "CglCutGenerator.hpp"
Go to the source code of this file.
Classes | |
class | CglFlowVUB |
Varibale upper bound class. More... | |
class | CglFlowCover |
Lifed Simple Generalized Flow Cover Cut Generator Class. More... | |
Typedefs | |
typedef CglFlowVUB | CglFlowVLB |
Varibale lower bound class, which is the same as vub. | |
Enumerations | |
enum | CglFlowColType { CGLFLOW_COL_BINNEG = -2, CGLFLOW_COL_CONTNEG, CGLFLOW_COL_CONTPOS = 1, CGLFLOW_COL_BINPOS } |
This enumerative constant describes the various col types. More... | |
enum | CglFlowColStatus { CGLFLOW_COL_PRIME, CGLFLOW_COL_SECONDARY } |
This enumerative constant describes the various stati of vars in determining the cover. More... | |
enum | CglFlowColCut { CGLFLOW_COL_OUTCUT = 0, CGLFLOW_COL_INCUT, CGLFLOW_COL_INCUTDONE, CGLFLOW_COL_INLMIN, CGLFLOW_COL_INLMINDONE, CGLFLOW_COL_INLMINMIN } |
This enumerative constant describes the various stati of vars in a cut or not. More... | |
enum | CglFlowRowType { CGLFLOW_ROW_UNDEFINED, CGLFLOW_ROW_VARUB, CGLFLOW_ROW_VARLB, CGLFLOW_ROW_VAREQ, CGLFLOW_ROW_MIXUB, CGLFLOW_ROW_MIXEQ, CGLFLOW_ROW_NOBINUB, CGLFLOW_ROW_NOBINEQ, CGLFLOW_ROW_SUMVARUB, CGLFLOW_ROW_SUMVAREQ, CGLFLOW_ROW_UNINTERSTED } |
This enumerative constant describes the various row types. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &os, const CglFlowVUB &v) |
Overloaded operator<< for printing VUB and VLB. | |
void | CglFlowCoverUnitTest (const OsiSolverInterface *siP, const std::string mpdDir) |
A function that tests the methods in the CglProbing class. |
|
Varibale lower bound class, which is the same as vub.
Definition at line 138 of file CglFlowCover.hpp. Referenced by CglFlowCover::getVlbs(). |
|
This enumerative constant describes the various col types.
Definition at line 28 of file CglFlowCover.hpp. |
|
This enumerative constant describes the various stati of vars in determining the cover.
Definition at line 41 of file CglFlowCover.hpp. |
|
This enumerative constant describes the various stati of vars in a cut or not.
Definition at line 50 of file CglFlowCover.hpp. |
|
This enumerative constant describes the various row types.
Definition at line 66 of file CglFlowCover.hpp. Referenced by CglFlowCover::getRowType(), and CglFlowCover::getRowTypes(). |
|
Overloaded operator<< for printing VUB and VLB.
|
|
A function that tests the methods in the CglProbing class. The only reason for it not to be a member method is that this way it doesn't have to be compiled into the library. And that's a gain, because the library should be compiled with optimization on, but this method should be compiled with debugging. |