GOBNILP  f164d83
subip_cuts.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  * GOBNILP Copyright (C) 2012-2017 James Cussens, Mark Bartlett *
3  * *
4  * This program is free software; you can redistribute it and/or *
5  * modify it under the terms of the GNU General Public License as *
6  * published by the Free Software Foundation; either version 3 of the *
7  * License, or (at your option) any later version. *
8  * *
9  * This program is distributed in the hope that it will be useful, *
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
12  * General Public License for more details. *
13  * *
14  * You should have received a copy of the GNU General Public License *
15  * along with this program; if not, see *
16  * <http://www.gnu.org/licenses>. *
17  * *
18  * Additional permission under GNU GPL version 3 section 7 *
19  * *
20  * If you modify this Program, or any covered work, by linking or *
21  * combining it with SCIP (or a modified version of that library), *
22  * containing parts covered by the terms of the ZIB Academic License, *
23  * the licensors of this Program grant you additional permission to *
24  * convey the resulting work. *
25  * *
26  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
27 
32 #ifndef __SCIP_SUBIP_CUTS_H__
33 #define __SCIP_SUBIP_CUTS_H__
34 
35 #include "scip/scip.h"
36 #include "parent_set_data.h"
37 #include "solution_info.h"
38 
39 extern SCIP_RETCODE IP_findCuts(SCIP* scip, ParentSetData* psd, SolutionInfo* solinfo, SCIP_SOL* sol, int* nGen, int k_lb, int k_ub, SCIP_CONSHDLR* conshdlr, SCIP_Bool addtopool, SCIP_Bool forcecuts, SCIP_Bool* found_efficacious_ptr, SCIP_Real limits_time, SCIP_Real limits_gap, SCIP_Real limits_absgap, SCIP_Bool incumbent_cons, int* must_be_included, int n_must_be_included, int* must_be_excluded, int n_must_be_excluded, SCIP_Bool ci_cut, SCIP_Bool matroidpaircuts, int matroidpaircutslimit, int matroidpairmaxcuts, SCIP_Bool* cutoff);
40 
41 #endif
Function and type declarations for parent_set_data.c.
The basic data needed to record a collection of parent sets associated with a problem.
Definition: parent_set_data.h:48
Function declarations for solution_info.c.
Stores information about a solution (typically an LP solution)
Definition: solution_info.h:39
SCIP_RETCODE IP_findCuts(SCIP *scip, ParentSetData *psd, SolutionInfo *solinfo, SCIP_SOL *sol, int *nGen, int k_lb, int k_ub, SCIP_CONSHDLR *conshdlr, SCIP_Bool addtopool, SCIP_Bool forcecuts, SCIP_Bool *found_efficacious_ptr, SCIP_Real limits_time, SCIP_Real limits_gap, SCIP_Real limits_absgap, SCIP_Bool incumbent_cons, int *must_be_included, int n_must_be_included, int *must_be_excluded, int n_must_be_excluded, SCIP_Bool ci_cut, SCIP_Bool matroidpaircuts, int matroidpaircutslimit, int matroidpairmaxcuts, SCIP_Bool *cutoff)
main routine for looking for cutting planes
Definition: subip_cuts.c:935