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;