@@ -92,6 +92,7 @@ std::function<int(XPRSprob prob, char rowtype[], int first, int last)> XPRSgetro
9292std::function<int (XPRSprob prob, char coltype[], int first, int last)> XPRSgetcoltype = nullptr ;
9393std::function<int (XPRSprob prob, int nbounds, const int colind[], const char bndtype[], const double bndval[])> XPRSchgbounds = nullptr ;
9494std::function<int (XPRSprob prob, int length, const double solval[], const int colind[], const char * name)> XPRSaddmipsol = nullptr ;
95+ std::function<int (XPRSprob prob, int nrows, const int rowind[])> XPRSloaddelayedrows = nullptr ;
9596std::function<int (XPRSprob prob, double x[], double slack[], double duals[], double djs[])> XPRSgetlpsol = nullptr ;
9697std::function<int (XPRSprob prob, double x[], double slack[])> XPRSgetmipsol = nullptr ;
9798std::function<int (XPRSprob prob, int ncols, const int colind[], const double objcoef[])> XPRSchgobj = nullptr ;
@@ -167,6 +168,7 @@ void LoadXpressFunctions(DynamicLibrary* xpress_dynamic_library) {
167168 xpress_dynamic_library->GetFunction (&XPRSgetcoltype, " XPRSgetcoltype" );
168169 xpress_dynamic_library->GetFunction (&XPRSchgbounds, " XPRSchgbounds" );
169170 xpress_dynamic_library->GetFunction (&XPRSaddmipsol, " XPRSaddmipsol" );
171+ xpress_dynamic_library->GetFunction (&XPRSloaddelayedrows, " XPRSloaddelayedrows" );
170172 xpress_dynamic_library->GetFunction (&XPRSgetlpsol, " XPRSgetlpsol" );
171173 xpress_dynamic_library->GetFunction (&XPRSgetmipsol, " XPRSgetmipsol" );
172174 xpress_dynamic_library->GetFunction (&XPRSchgobj, " XPRSchgobj" );
0 commit comments