CYCLUS
Loading...
Searching...
No Matches
OsiCbcSolverInterface.cpp
Go to the documentation of this file.
1#include "CbcConfig.h"
3
5
6// for some reason these symbol doesn't exist in the mac binaries
7// Those were also not present in condaforge/linux-anvil-comp7 docker container
8// used to build conda recipes, using cpp/cxx 7.3, it also works with the docker
9// in unit test...
10void OsiSolverInterface::addCol(CoinPackedVectorBase const& vec, double collb,
11 double colub, double obj, std::string name) {
12 // just ignore the name
13 addCol(vec, collb, colub, obj);
14}
15
16void OsiSolverInterface::addCol(int numberElements, const int* rows,
17 const double* elements, double collb, double colub,
18 double obj, std::string name) {
19 // just ignore the name
20 addCol(numberElements, rows, elements, collb, colub, obj);
21}
22
23void OsiSolverInterface::addRow(CoinPackedVectorBase const& vec, char rowsen,
24 double rowrhs, double rowrng, std::string name) {
25 // just ignore the name
26 addRow(vec, rowsen, rowrhs, rowrng, name);
27}
28
29void OsiSolverInterface::addRow(CoinPackedVectorBase const& vec, double rowlb,
30 double rowub, std::string name) {
31 // just ignore the name
32 addRow(vec, rowlb, rowub);
33}