#include <cfloat>
#include <string>
#include "BCP_math.hpp"
#include "BCP_error.hpp"
#include "BCP_vector.hpp"
#include "OsiSolverInterface.hpp"
Go to the source code of this file.
Classes | |
class | BCP_lp_result |
This class holds the results after solving an LP relaxation. More... | |
Enumerations | |
enum | BCP_termcode { BCP_Abandoned = 0x01, BCP_ProvenOptimal = 0x02, BCP_ProvenPrimalInf = 0x04, BCP_ProvenDualInf = 0x08, BCP_PrimalObjLimReached = 0x10, BCP_DualObjLimReached = 0x20, BCP_IterationLimit = 0x40, BCP_TimeLimit = 0x80 } |
LP termination codes. More... | |
enum BCP_termcode |
LP termination codes.
Each possible termination is a bit.
Enumerator | |
---|---|
BCP_Abandoned | |
BCP_ProvenOptimal | |
BCP_ProvenPrimalInf | |
BCP_ProvenDualInf | |
BCP_PrimalObjLimReached | |
BCP_DualObjLimReached | |
BCP_IterationLimit | |
BCP_TimeLimit |
Definition at line 17 of file BCP_lp_result.hpp.