14#include <OpenMS/OpenMSConfig.h>
15#include <OpenMS/config.h>
29#if !defined(OPENMS_HAS_COINOR) && !defined(OPENMS_HAS_HIGHS)
30 #ifndef GLP_PROB_DEFINED
31 #define GLP_PROB_DEFINED
34 #if OPENMS_GLPK_VERSION_MAJOR == 4 && OPENMS_GLPK_VERSION_MINOR < 48
37 double _opaque_prob[100];
88 message_level(3), branching_tech(4), backtrack_tech(3),
89 preprocessing_tech(2), enable_feas_pump_heuristic(true), enable_gmi_cuts(true),
90 enable_mir_cuts(true), enable_cov_cuts(true), enable_clq_cuts(true), mip_gap(0.0),
91 time_limit((
std::numeric_limits<
Int>::max)()), output_freq(5000), output_delay(10000), enable_presolve(true),
92 enable_binarization(true)
170#ifdef OPENMS_HAS_COINOR
173#ifdef OPENMS_HAS_HIGHS
215 Int addRow(
const std::vector<Int>& row_indices,
const std::vector<double>& row_values,
const std::string& name);
232 Int addColumn(
const std::vector<Int>& column_indices,
const std::vector<double>& column_values,
const std::string& name);
246 Int addRow(
const std::vector<Int>& row_indices,
const std::vector<double>& row_values,
247 const std::string& name,
double lower_bound,
double upper_bound,
Type type);
259 Int addColumn(
const std::vector<Int>& column_indices,
const std::vector<double>& column_values,
const std::string& name,
double lower_bound,
double upper_bound,
Type type);
452 void readProblem(
const std::string& filename,
const std::string& format);
521#ifdef OPENMS_HAS_COINOR
522 CoinModel * model_ =
nullptr;
523 std::vector<double> solution_;
524#elif defined(OPENMS_HAS_HIGHS)
525 std::unique_ptr<Highs> highs_;
526 std::vector<double> solution_;
528 glp_prob * lp_problem_ =
nullptr;
A wrapper class for linear programming (LP) solvers.
Definition LPWrapper.h:71
Int addColumn()
Adds an empty column to the LP matrix.
Int addRow(const std::vector< Int > &row_indices, const std::vector< double > &row_values, const std::string &name, double lower_bound, double upper_bound, Type type)
Adds a row with boundaries to the LP matrix, returns index.
Int addColumn(const std::vector< Int > &column_indices, const std::vector< double > &column_values, const std::string &name, double lower_bound, double upper_bound, Type type)
Adds a column with boundaries to the LP matrix, returns index.
void setObjective(Int index, double obj_value)
Set the objective coefficient for a column/variable.
void setColumnBounds(Int index, double lower_bound, double upper_bound, Type type)
Set column bounds.
std::string getColumnName(Int index)
Get the name of a column.
Int solve(SolverParam &solver_param, const Size verbose_level=0)
solve problems, parameters like enabled heuristics can be given via solver_param
Type
Enumeration for variable/constraint bound types.
Definition LPWrapper.h:119
@ UPPER_BOUND_ONLY
Only upper bound is specified.
Definition LPWrapper.h:122
@ LOWER_BOUND_ONLY
Only lower bound is specified.
Definition LPWrapper.h:121
@ DOUBLE_BOUNDED
Both lower and upper bounds are specified.
Definition LPWrapper.h:123
double getObjective(Int index)
Get the objective coefficient for a column/variable.
double getElement(Int row_index, Int column_index)
Get the value of a matrix element at the specified position.
void writeProblem(const std::string &filename, const WriteFormat format) const
Write LP formulation to a file.
void setObjectiveSense(Sense sense)
Set objective direction.
double getObjectiveValue()
Get the objective function value of the solution.
Int getColumnIndex(const std::string &name)
Find the index of a column by its name.
Sense getObjectiveSense()
Get the current objective direction.
Int getNumberOfNonZeroEntriesInRow(Int idx)
Get the number of non-zero entries in a specific row.
void setElement(Int row_index, Int column_index, double value)
Set the value of a matrix element at the specified position.
void deleteRow(Int index)
Delete the row at the specified index.
std::string getRowName(Int index)
Get the name of a row.
void setRowName(Int index, const std::string &name)
Set the name of a row.
VariableType getColumnType(Int index)
Get column/variable type.
SOLVER getSolver() const
Get the currently active solver backend.
SolverStatus
Enumeration for solver status after solving an LP problem.
Definition LPWrapper.h:184
Int addRow(const std::vector< Int > &row_indices, const std::vector< double > &row_values, const std::string &name)
Adds a row to the LP matrix.
void setRowBounds(Int index, double lower_bound, double upper_bound, Type type)
Set row bounds.
Int getNumberOfColumns()
Get the number of columns/variables in the LP problem.
double getRowUpperBound(Int index)
Get the upper bound of a row.
LPWrapper()
Default constructor.
void setColumnType(Int index, VariableType type)
Set column/variable type.
void setColumnName(Int index, const std::string &name)
Set the name of a column.
SolverStatus getStatus()
Get solution status.
SOLVER
Enumeration for available LP solvers.
Definition LPWrapper.h:168
SOLVER solver_
Currently active solver backend.
Definition LPWrapper.h:531
void getMatrixRow(Int idx, std::vector< Int > &indexes)
Get the indices of non-zero entries in a specific row.
double getRowLowerBound(Int index)
Get the lower bound of a row.
Int getNumberOfRows()
Get the number of rows/constraints in the LP problem.
Int getRowIndex(const std::string &name)
Find the index of a row by its name.
Sense
Enumeration for optimization direction.
Definition LPWrapper.h:145
VariableType
Enumeration for variable types in the LP problem.
Definition LPWrapper.h:133
@ INTEGER
Integer variable (can only take integer values within bounds)
Definition LPWrapper.h:135
double getColumnUpperBound(Int index)
Get the upper bound of a column.
void readProblem(const std::string &filename, const std::string &format)
Read LP from file.
double getColumnLowerBound(Int index)
Get the lower bound of a column.
Int addColumn(const std::vector< Int > &column_indices, const std::vector< double > &column_values, const std::string &name)
Adds a column to the LP matrix.
double getColumnValue(Int index)
Get the value of a variable in the solution.
virtual ~LPWrapper()
Virtual destructor.
WriteFormat
Enumeration for LP problem file formats.
Definition LPWrapper.h:156
@ FORMAT_MPS
MPS format (industry standard)
Definition LPWrapper.h:158
int Int
Signed integer type.
Definition Types.h:72
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition Types.h:97
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
Struct that holds the parameters of the LP solver.
Definition LPWrapper.h:83
Int backtrack_tech
Backtracking technique for MIP problems.
Definition LPWrapper.h:98
double mip_gap
Relative gap tolerance for MIP problems.
Definition LPWrapper.h:105
Int branching_tech
Branching technique for MIP problems.
Definition LPWrapper.h:97
bool enable_binarization
Enable binarization (only with presolve)
Definition LPWrapper.h:110
bool enable_cov_cuts
Enable cover cuts.
Definition LPWrapper.h:103
Int time_limit
Time limit in milliseconds.
Definition LPWrapper.h:106
bool enable_gmi_cuts
Enable Gomory mixed-integer cuts.
Definition LPWrapper.h:101
Int message_level
Controls verbosity of solver output (0-3)
Definition LPWrapper.h:96
Int output_delay
Output delay in milliseconds.
Definition LPWrapper.h:108
bool enable_presolve
Enable presolve techniques.
Definition LPWrapper.h:109
bool enable_mir_cuts
Enable mixed-integer rounding cuts.
Definition LPWrapper.h:102
SolverParam()
Default constructor that initializes all parameters with reasonable defaults.
Definition LPWrapper.h:87
Int output_freq
Output frequency in milliseconds.
Definition LPWrapper.h:107
bool enable_feas_pump_heuristic
Enable feasibility pump heuristic.
Definition LPWrapper.h:100
Int preprocessing_tech
Preprocessing technique.
Definition LPWrapper.h:99
bool enable_clq_cuts
Enable clique cuts.
Definition LPWrapper.h:104