We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453e4d3 commit 37520b4Copy full SHA for 37520b4
1 file changed
gmscuopt.c
@@ -309,6 +309,7 @@ int main(int argc, char *argv[])
309
#endif
310
free(lvls);
311
free(marginals);
312
+ printOut(gev, "Initial primal and dual solutions have been set.\n");
313
}
314
315
@@ -452,7 +453,7 @@ int main(int argc, char *argv[])
452
453
{
454
double *initial_levels = malloc(sizeof(double) * gmoN(gmo));
455
gmoGetVarL(gmo, initial_levels);
- #ifdef CUOPT_INSTANTIATE_DOUBLE
456
+#ifdef CUOPT_INSTANTIATE_DOUBLE
457
status = cuOptAddMIPStart(settings, initial_levels, gmoN(gmo));
458
if (status != CUOPT_SUCCESS)
459
@@ -472,6 +473,7 @@ int main(int argc, char *argv[])
472
473
free(initial_levelsf);
474
475
free(initial_levels);
476
+ printOut(gev, "MIP start has been set.\n");
477
478
479
// Solve the problem
0 commit comments