From 9e14272879288446db1412b01d099938444ff72b Mon Sep 17 00:00:00 2001 From: Stefan Vigerske Date: Thu, 25 Jan 2024 17:02:15 +0700 Subject: [PATCH 1/2] fix header path in include statement --- src/scip/branch_gomory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scip/branch_gomory.c b/src/scip/branch_gomory.c index d4bd057f3a..99fc932ff6 100644 --- a/src/scip/branch_gomory.c +++ b/src/scip/branch_gomory.c @@ -63,7 +63,7 @@ #include "scip/scip_numerics.h" #include "scip/scip_lp.h" #include "scip/scip_tree.h" -#include "scip_param.h" +#include "scip/scip_param.h" #include "scip/branch_relpscost.h" #include #include From 0e506ae4f0bf10633306a757448b661aff912d97 Mon Sep 17 00:00:00 2001 From: Stefan Vigerske Date: Thu, 25 Jan 2024 17:02:31 +0700 Subject: [PATCH 2/2] remove bad include statement - the plugin should not include this struct header, and apparently doesn't need to anymore - the path to the header also missed scip/ --- src/scip/sepa_gomory.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scip/sepa_gomory.c b/src/scip/sepa_gomory.c index f6c1899016..3d3d35d037 100644 --- a/src/scip/sepa_gomory.c +++ b/src/scip/sepa_gomory.c @@ -80,7 +80,6 @@ #include "scip/scip_tree.h" #include "scip/scip_var.h" #include "scip/sepa_gomory.h" -#include "struct_history.h" #include #define SEPA_NAME "gomory"