remove obsolete GRBisqp

This commit is contained in:
Laurent Perron
2025-02-27 19:29:46 +01:00
parent 7f0b66f1a0
commit 7fe44a2f6b
2 changed files with 0 additions and 5 deletions

View File

@@ -46,9 +46,6 @@ bool GurobiIsCorrectlyInstalled() {
// See the comment at the top of the script.
// This is the 'define' section.
std::function<int(GRBenv**, const char*, const char*, const char*, int,
const char*)>
GRBisqp = nullptr;
std::function<int(GRBmodel* model, const char* attrname)> GRBisattravailable =
nullptr;
std::function<int(GRBmodel* model, const char* attrname, int* valueP)>
@@ -239,7 +236,6 @@ void LoadGurobiFunctions(DynamicLibrary* gurobi_dynamic_library) {
// See the comment at the top of the script.
// This is the 'assign' section.
gurobi_dynamic_library->GetFunction(&GRBisqp, "GRBisqp");
gurobi_dynamic_library->GetFunction(&GRBisattravailable,
"GRBisattravailable");
gurobi_dynamic_library->GetFunction(&GRBgetintattr, "GRBgetintattr");

View File

@@ -119,7 +119,6 @@ absl::Status LoadGurobiDynamicLibrary(std::vector<std::string> potential_paths);
#define GRB_MAX_CONCURRENT 64
#define CB_ARGS GRBmodel *model, void *cbdata, int where, void *usrdata
#define LOGCB_ARGS char *msg, void *logdata
extern std::function<int(GRBenv**, const char*, const char*, const char*, int, const char*)> GRBisqp;
extern std::function<int(GRBmodel *model, const char *attrname)> GRBisattravailable;
extern std::function<int(GRBmodel *model, const char *attrname, int *valueP)> GRBgetintattr;
extern std::function<int(GRBmodel *model, const char *attrname, int newvalue)> GRBsetintattr;