From 762aaaecd9fd00a3a6c1de814dea4d71b0fa5a91 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Wed, 26 Jan 2022 12:00:11 +0100 Subject: [PATCH] fix #3045 --- ortools/gurobi/environment.cc | 4 ---- ortools/gurobi/environment.h | 2 -- 2 files changed, 6 deletions(-) diff --git a/ortools/gurobi/environment.cc b/ortools/gurobi/environment.cc index b2ebfb2dbf..cdd8c94ec2 100644 --- a/ortools/gurobi/environment.cc +++ b/ortools/gurobi/environment.cc @@ -357,8 +357,6 @@ std::function GRBsetobjectiven = nullptr; std::function GRBmsg = nullptr; -std::function GRBgetlogfile = nullptr; -std::function GRBsetlogfile = nullptr; std::function GRBgetintparam = nullptr; std::function @@ -608,8 +606,6 @@ void LoadGurobiFunctions(DynamicLibrary* gurobi_dynamic_library) { gurobi_dynamic_library->GetFunction(&GRBsetobjective, "GRBsetobjective"); gurobi_dynamic_library->GetFunction(&GRBsetobjectiven, "GRBsetobjectiven"); gurobi_dynamic_library->GetFunction(&GRBmsg, "GRBmsg"); - gurobi_dynamic_library->GetFunction(&GRBgetlogfile, "GRBgetlogfile"); - gurobi_dynamic_library->GetFunction(&GRBsetlogfile, "GRBsetlogfile"); gurobi_dynamic_library->GetFunction(&GRBgetintparam, "GRBgetintparam"); gurobi_dynamic_library->GetFunction(&GRBgetdblparam, "GRBgetdblparam"); gurobi_dynamic_library->GetFunction(&GRBgetstrparam, "GRBgetstrparam"); diff --git a/ortools/gurobi/environment.h b/ortools/gurobi/environment.h index 4693b4d7fa..b1375eb055 100644 --- a/ortools/gurobi/environment.h +++ b/ortools/gurobi/environment.h @@ -637,8 +637,6 @@ extern std::function GRBreplay; extern std::function GRBsetobjective; extern std::function GRBsetobjectiven; extern std::function GRBmsg; -extern std::function GRBgetlogfile; -extern std::function GRBsetlogfile; extern std::function GRBgetintparam; extern std::function GRBgetdblparam; extern std::function GRBgetstrparam;