Store optimal integral solution upon finding it

This commit is contained in:
2015-03-19 05:53:32 -04:00
parent 4a97719b18
commit d4905b7f94
2 changed files with 12 additions and 3 deletions

View File

@@ -6,7 +6,10 @@
struct BNC
{
struct LP *lp;
double best_val;
double *best_x;
double best_obj_val;
int *problem_data;
int (*problem_init_lp)(struct LP *, void *);