SCIP Doxygen Documentation
Loading...
Searching...
No Matches
struct_set.h
Go to the documentation of this file.
1/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2/* */
3/* This file is part of the program and library */
4/* SCIP --- Solving Constraint Integer Programs */
5/* */
6/* Copyright (c) 2002-2026 Zuse Institute Berlin (ZIB) */
7/* */
8/* Licensed under the Apache License, Version 2.0 (the "License"); */
9/* you may not use this file except in compliance with the License. */
10/* You may obtain a copy of the License at */
11/* */
12/* http://www.apache.org/licenses/LICENSE-2.0 */
13/* */
14/* Unless required by applicable law or agreed to in writing, software */
15/* distributed under the License is distributed on an "AS IS" BASIS, */
16/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
17/* See the License for the specific language governing permissions and */
18/* limitations under the License. */
19/* */
20/* You should have received a copy of the Apache-2.0 license */
21/* along with SCIP; see the file LICENSE. If not visit scipopt.org. */
22/* */
23/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
24
25/**@file struct_set.h
26 * @ingroup INTERNALAPI
27 * @brief datastructures for global SCIP settings
28 * @author Tobias Achterberg
29 */
30
31/*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
32
33#ifndef __SCIP_STRUCT_SET_H__
34#define __SCIP_STRUCT_SET_H__
35
36
37#include "scip/def.h"
38#include "scip/message.h"
39#include "scip/type_bandit.h"
40#include "scip/type_set.h"
41#include "scip/type_clock.h"
42#include "scip/type_paramset.h"
43#include "scip/type_event.h"
44#include "scip/type_scip.h"
45#include "scip/type_branch.h"
46#include "scip/type_conflict.h"
47#include "scip/type_cons.h"
48#include "scip/type_disp.h"
49#include "scip/type_dialog.h"
50#include "scip/type_heur.h"
51#include "scip/type_compr.h"
52#include "scip/type_nodesel.h"
53#include "scip/type_presol.h"
54#include "scip/type_pricer.h"
55#include "scip/type_reader.h"
56#include "scip/type_relax.h"
57#include "scip/type_sepa.h"
58#include "scip/type_cutsel.h"
59#include "scip/type_table.h"
60#include "scip/type_prop.h"
61#include "scip/type_nlpi.h"
63#include "scip/type_benders.h"
64#include "scip/type_iisfinder.h"
65#include "scip/type_expr.h"
66#include "scip/type_message.h"
67#include "scip/debug.h"
68
69#ifdef __cplusplus
70extern "C" {
71#endif
72
73/** global SCIP settings */
75{
76 SCIP_STAGE stage; /**< SCIP operation stage */
77 SCIP* scip; /**< very ugly: pointer to scip main data structure for callback methods */
78 SCIP_PARAMSET* paramset; /**< set of parameters */
79 BMS_BUFMEM* buffer; /**< memory buffers for short living temporary objects */
80 BMS_BUFMEM* cleanbuffer; /**< memory buffers for short living temporary objects init. to all zero */
81 SCIP_READER** readers; /**< file readers */
82 SCIP_PRICER** pricers; /**< variable pricers */
83 SCIP_CONSHDLR** conshdlrs; /**< constraint handlers (sorted by check priority) */
84 SCIP_CONSHDLR** conshdlrs_sepa; /**< constraint handlers (sorted by separation priority) */
85 SCIP_CONSHDLR** conshdlrs_enfo; /**< constraint handlers (sorted by enforcement priority) */
86 SCIP_CONSHDLR** conshdlrs_include; /**< constraint handlers (sorted by inclusion order) */
87 SCIP_CONFLICTHDLR** conflicthdlrs; /**< conflict handlers */
88 SCIP_PRESOL** presols; /**< presolvers */
89 SCIP_RELAX** relaxs; /**< relaxators */
90 SCIP_SEPA** sepas; /**< separators */
91 SCIP_CUTSEL** cutsels; /**< cut selectors */
92 SCIP_PROP** props; /**< propagators */
93 SCIP_PROP** props_presol; /**< propagators (sorted by presol priority) */
94 SCIP_HEUR** heurs; /**< primal heuristics */
95 SCIP_COMPR** comprs; /**< tree compressions */
96 SCIP_EVENTHDLR** eventhdlrs; /**< event handlers */
97 SCIP_NODESEL** nodesels; /**< node selectors */
98 SCIP_NODESEL* nodesel; /**< currently used node selector, or NULL if invalid */
99 SCIP_BRANCHRULE** branchrules; /**< branching rules */
100 SCIP_IISFINDER** iisfinders; /**< irreducible infeasible subsystem (IIS) rules */
101 SCIP_DISP** disps; /**< display columns */
102 SCIP_TABLE** tables; /**< statistics tables */
103 SCIP_DIALOG** dialogs; /**< dialogs */
104 SCIP_EXPRHDLR** exprhdlrs; /**< expression handlers */
105 SCIP_EXPRHDLR* exprhdlrvar; /**< expression handler for variables (for quick access) */
106 SCIP_EXPRHDLR* exprhdlrval; /**< expression handler for constant values (for quick access) */
107 SCIP_EXPRHDLR* exprhdlrsum; /**< expression handler for sums (for quick access) */
108 SCIP_EXPRHDLR* exprhdlrproduct; /**< expression handler for products (for quick access) */
109 SCIP_EXPRHDLR* exprhdlrpow; /**< expression handler for power (for quick access) */
110 SCIP_NLPI** nlpis; /**< interfaces to NLP solvers */
111 SCIP_CONCSOLVERTYPE** concsolvertypes; /**< concurrent solver types */
112 SCIP_CONCSOLVER** concsolvers; /**< the concurrent solvers used for solving */
113 SCIP_BENDERS** benders; /**< the data structures managing the Benders' decomposition algorithm */
114 SCIP_DEBUGSOLDATA* debugsoldata; /**< data for debug solutions */
115 SCIP_BANDITVTABLE** banditvtables; /**< virtual function tables for bandit algorithms */
116 char** extcodenames; /**< names of externals codes */
117 char** extcodedescs; /**< descriptions of external codes */
118 int nreaders; /**< number of file readers */
119 int readerssize; /**< size of readers array */
120 int npricers; /**< number of variable pricers */
121 int nactivepricers; /**< number of variable pricers used in the current problem */
122 int pricerssize; /**< size of pricers array */
123 int nconshdlrs; /**< number of constraint handlers */
124 int conshdlrssize; /**< size of conshdlrs array */
125 int nconflicthdlrs; /**< number of conflict handlers */
126 int conflicthdlrssize; /**< size of conflicthdlrs array */
127 int npresols; /**< number of presolvers */
128 int presolssize; /**< size of presols array */
129 int nrelaxs; /**< number of relaxators */
130 int relaxssize; /**< size of relaxs array */
131 int nsepas; /**< number of separators */
132 int sepassize; /**< size of sepas array */
133 int ncutsels; /**< number of cut selectors */
134 int cutselssize; /**< size of cutsels array */
135 int nprops; /**< number of propagators */
136 int propssize; /**< size of props array */
137 int nheurs; /**< number of primal heuristics */
138 int heurssize; /**< size of heurs array */
139 int ncomprs; /**< number of tree compressions */
140 int comprssize; /**< size of comprs array */
141 int neventhdlrs; /**< number of event handlers */
142 int eventhdlrssize; /**< size of eventhdlrs array */
143 int nnodesels; /**< number of node selectors */
144 int nodeselssize; /**< size of nodesels array */
145 int nbranchrules; /**< number of branching rules */
146 int branchrulessize; /**< size of branchrules array */
147 int niisfinders; /**< number of IIS rules */
148 int iisfinderssize; /**< size of IIS finders array */
149 int ndisps; /**< number of display columns */
150 int dispssize; /**< size of disps array */
151 int ntables; /**< number of statistics tables */
152 int tablessize; /**< size of tables array */
153 int ndialogs; /**< number of dialogs */
154 int dialogssize; /**< size of dialogs array */
155 int nexprhdlrs; /**< number of expression handlers */
156 int exprhdlrssize; /**< size of expression handlers array */
157 int nnlpis; /**< number of NLPIs */
158 int nlpissize; /**< size of NLPIs array */
159 int nconcsolvertypes; /**< number of concurrent solver types */
160 int concsolvertypessize;/**< size of concurrent solver types array */
161 int nconcsolvers; /**< number of concurrent solvers used for solving */
162 int concsolverssize; /**< size of concurrent solvers array */
163 int nbenders; /**< number of Benders' decomposition algorithms */
164 int nactivebenders; /**< number of Benders' decomposition algorithms that are used */
165 int benderssize; /**< size of Benders' decomposition algorithms array */
166 int nextcodes; /**< number of external codes */
167 int extcodessize; /**< size of external code arrays */
168 int nbanditvtables; /**< number of bandit algorithm virtual function tables */
169 int banditvtablessize; /**< size of banditvtables array */
170 SCIP_Bool pricerssorted; /**< are the pricers sorted by activity and priority? */
171 SCIP_Bool pricersnamesorted; /**< are the pricers sorted by name? */
172 SCIP_Bool conflicthdlrssorted;/**< are the conflict handlers sorted by priority? */
173 SCIP_Bool conflicthdlrsnamesorted;/**< are the conflict handlers sorted by name? */
174 SCIP_Bool presolssorted; /**< are the presolvers sorted by priority? */
175 SCIP_Bool presolsnamesorted; /**< are the presolvers sorted by name? */
176 SCIP_Bool relaxssorted; /**< are the relaxators sorted by priority? */
177 SCIP_Bool relaxsnamesorted; /**< are the relaxators sorted by name? */
178 SCIP_Bool sepassorted; /**< are the separators sorted by priority? */
179 SCIP_Bool sepasnamesorted; /**< are the separators sorted by name? */
180 SCIP_Bool cutselssorted; /**< are the cutsels sorted by priority? */
181 SCIP_Bool propssorted; /**< are the propagators sorted by priority? */
182 SCIP_Bool propspresolsorted; /**< are the propagators in prop_presol sorted? */
183 SCIP_Bool propsnamesorted; /**< are the propagators sorted by name? */
184 SCIP_Bool heurssorted; /**< are the heuristics sorted by priority? */
185 SCIP_Bool heursnamesorted; /**< are the heuristics sorted by name? */
186 SCIP_Bool comprssorted; /**< are the compressions sorted by priority? */
187 SCIP_Bool comprsnamesorted; /**< are the compressions sorted by name? */
188 SCIP_Bool branchrulessorted; /**< are the branching rules sorted by priority? */
189 SCIP_Bool branchrulesnamesorted;/**< are the branching rules sorted by name? */
190 SCIP_Bool iisfinderssorted; /**< are the IIS rules sorted by priority */
191 SCIP_Bool tablessorted; /**< are the tables sorted by position? */
192 SCIP_Bool exprhdlrssorted; /**< are the expression handlers sorted by name? */
193 SCIP_Bool nlpissorted; /**< are the NLPIs sorted by priority? */
194 SCIP_Bool benderssorted; /**< are the Benders' algorithms sorted by activity and priority? */
195 SCIP_Bool bendersnamesorted; /**< are the Benders' algorithms sorted by name? */
196 SCIP_Bool limitchanged; /**< marks whether any of the limit parameters was changed */
197 SCIP_Bool subscipsoff; /**< marks whether the sub-SCIPs have been deactivated */
198
199 /* branching settings */
200 char branch_scorefunc; /**< branching score function ('s'um, 'p'roduct, 'q'uotient) */
201 char branch_firstsbchild;/**< child node to be regarded first during strong branching (only with propagation): 'u'p child, 'd'own child, 'h'istory-based, or 'a'utomatic */
202 SCIP_Real branch_scorefac; /**< branching score factor to weigh downward and upward gain prediction
203 * in sum score function */
204 SCIP_Bool branch_preferbinary;/**< should branching on binary variables be preferred? */
205 SCIP_Real branch_clamp; /**< minimal fractional distance of branching point to a continuous variable' bounds; a value of 0.5 leads to branching always in the middle of a bounded domain */
206 SCIP_Real branch_midpull; /**< fraction by which to move branching point of a continuous variable towards the middle of the domain; a value of 1.0 leads to branching always in the middle of the domain */
207 SCIP_Real branch_midpullreldomtrig; /**< multiply midpull by relative domain width if the latter is below this value */
208 char branch_lpgainnorm; /**< strategy for normalizing LP gain when updating pseudo costs of continuous variables */
209 SCIP_Bool branch_delaypscost; /**< whether to delay pseudo costs updates for continuous variables to after separation */
210 SCIP_Bool branch_divingpscost;/**< should pseudo costs be updated also in diving and probing mode? */
211 SCIP_Bool branch_collectancpscost; /**< should ancestral pseudo costs be updated? */
212 SCIP_Bool branch_forceall; /**< should all strong branching children be regarded even if
213 * one is detected to be infeasible? (only with propagation) */
214 SCIP_Bool branch_checksbsol; /**< should LP solutions during strong branching with propagation be checked for feasibility? */
215 SCIP_Bool branch_roundsbsol; /**< should LP solutions during strong branching with propagation be rounded? (only when checksbsol=TRUE) */
216 SCIP_Bool branch_sumadjustscore; /**< score adjustment near zero by \b adding epsilon (TRUE) or using maximum (FALSE) */
217
218 /* conflict analysis settings */
219 SCIP_Real conf_maxvarsfac; /**< maximal fraction of variables involved in a conflict constraint */
220 SCIP_Real conf_maxvarsfracres;/**< maximal fraction of variables involved in a resolution conflict constraint */
221 int conf_minmaxvars; /**< minimal absolute maximum of variables involved in a conflict constraint */
222 int conf_maxlploops; /**< maximal number of LP resolving loops during conflict analysis
223 * (-1: no limit) */
224 int conf_lpiterations; /**< maximal number of LP iterations in each LP resolving loop
225 * (-1: no limit) */
226 int conf_fuiplevels; /**< number of depth levels up to which first UIP's are used in conflict
227 * analysis (-1: use All-FirstUIP rule) */
228 int conf_resfuiplevels; /**< number of depth levels up to which first UIP's are used in resolution
229 * conflict analysis (-1: use All-FirstUIP rule) */
230 int conf_interconss; /**< maximal number of intermediate conflict constraints generated in conflict
231 * graph (-1: use every intermediate constraint) */
232 int conf_maxconss; /**< maximal number of conflict constraints accepted at an infeasible node
233 * (-1: use all generated conflict constraints) */
234 int conf_maxstoresize; /**< maximal size of conflict store */
235 int conf_reconvlevels; /**< number of depth levels up to which UIP reconvergence constraints are
236 * generated (-1: generate reconvergence constraints in all depth levels) */
237 SCIP_Bool conf_enable; /**< should conflict analysis be enabled? */
238 SCIP_Bool conf_cleanbnddepend;/**< should conflicts related to an old cutoff bound be removed? */
239 SCIP_Bool conf_useprop; /**< should propagation conflict analysis be used? (uses conflict graph only) */
240 SCIP_Bool conf_usegenres; /**< should generalized resolution conflict analysis be used? */
241 char conf_useinflp; /**< should infeasible LP conflict analysis be used?
242 * ('o'ff, 'c'onflict graph, 'd'ual ray, 'b'oth conflict graph and dual ray)
243 */
244 char conf_useboundlp; /**< should bound exceeding LP conflict analysis be used?
245 * ('o'ff, 'c'onflict graph, 'd'ual ray, 'b'oth conflict graph and dual ray)
246 */
247 SCIP_Bool conf_usesb; /**< should infeasible/bound exceeding strong branching conflict analysis be
248 * used? */
249 char conf_reduction; /**< which reduction should be used?
250 * ('o'ff, 'm'ir)
251 */
252 SCIP_Bool conf_mbreduction; /**< should apply the mixed binary reduction? */
253 SCIP_Bool conf_usepseudo; /**< should pseudo solution conflict analysis be used? */
254 SCIP_Bool conf_prefinfproof; /**< prefer infeasibility proof to boundexceeding proof */
255 SCIP_Bool conf_preferbinary; /**< should binary conflicts be preferred? */
256 SCIP_Bool conf_allowlocal; /**< should conflict constraints be generated that are only valid locally? */
257 SCIP_Bool conf_settlelocal; /**< should conflict constraints be attached only to the local subtree where
258 * they can be useful? */
259 SCIP_Bool conf_repropagate; /**< should earlier nodes be repropagated in order to replace branching
260 * decisions by deductions? */
261 SCIP_Bool conf_keepreprop; /**< should constraints be kept for repropagation even if they are too long? */
262 SCIP_Bool conf_separate; /**< should the conflict constraints be separated? */
263 SCIP_Bool conf_dynamic; /**< should the conflict constraints be subject to aging? */
264 SCIP_Bool conf_removable; /**< should the conflict's relaxations be subject to LP aging and cleanup? */
265 SCIP_Real conf_depthscorefac; /**< score factor for depth level in bound relaxation heuristic */
266 SCIP_Real conf_proofscorefac; /**< score factor for contribution to infeasibility proof in bound relaxation heuristic */
267 SCIP_Real conf_uplockscorefac;/**< score factor for number of up locks in bound relaxation heuristic */
268 SCIP_Real conf_downlockscorefac;/**< score factor for number of down locks in bound relaxation heuristic */
269 SCIP_Real conf_scorefac; /**< factor to decrease importance of variables' earlier conflict scores */
270 int conf_restartnum; /**< number of successful conflict analysis calls that trigger a restart
271 * (0: disable conflict restarts) */
272 SCIP_Real conf_restartfac; /**< factor to increase restartnum with after each restart */
273 SCIP_Bool conf_ignorerelaxedbd;/**< should relaxed bounds be ignored? */
274 int conf_maxvarsdetectimpliedbounds;/**< maximal number of variables to try to detect global bound
275 * implications and shorten the whole conflict set (0:
276 * disabled )
277 */
278 SCIP_Bool conf_fullshortenconflict;/**< try to shorten the whole conflict set or terminate early
279 * (depending on the 'maxvarsdetectimpliedbounds' parameter)
280 */
281 SCIP_Real conf_conflictweight;/**< the weight the VSIDS score is weight by updating the VSIDS for a
282 * variable if it is part of a conflict
283 */
284 SCIP_Real conf_conflictgraphweight; /**< the weight the VSIDS score is weight by updating the VSIDS for a
285 * variable if it is part of a conflict graph
286 */
287 SCIP_Real conf_weightsize; /**< weight of the size of a conflict used in score calculation */
288 SCIP_Real conf_weightrepropdepth;/**< weight of the prepropagtion depth of a conflict used in score calculation */
289 SCIP_Real conf_weightvaliddepth;/**< weight of the valid depth of a conflict used in score calculation */
290 SCIP_Bool conf_sepaaltproofs; /**< separate valid inequalities from dualray proofs */
291 SCIP_Real conf_minimprove; /**< minimal improvement of primal bound to remove conflicts depending on
292 * a previous incumbent.
293 */
294 SCIP_Bool conf_uselocalrows; /**< use local rows to construct infeasibility proofs */
295 SCIP_Real conf_maxcoefquot; /**< largest allowed quotient of max, min coefficient in a conflict
296 * constraint generated by generalized resolution.
297 */
298 SCIP_Bool conf_fixandcontinue;/**< should we fix unresolvable bound changes and continue? */
299 /* constraint settings */
300 int cons_agelimit; /**< maximum age an unnecessary constraint can reach before it is deleted
301 * (0: dynamic, -1: disable aging) */
302 int cons_obsoleteage; /**< age of a constraint after which it is marked obsolete
303 * (0: dynamic, -1: disable obsoletion) */
304 SCIP_Bool cons_disableenfops; /**< should enforcement of pseudo solution be disabled? */
305
306 /* display settings */
307 SCIP_VERBLEVEL disp_verblevel; /**< verbosity level of output */
308 int disp_width; /**< maximal number of characters in a node information line */
309 int disp_freq; /**< frequency for displaying node information lines */
310 int disp_headerfreq; /**< frequency for displaying header lines (every n'th node information line) */
311 SCIP_Bool disp_lpinfo; /**< should the LP solver display status messages? */
312 SCIP_Bool disp_allviols; /**< display all violations of the best solution after the solving process finished? */
313 SCIP_Bool disp_relevantstats; /**< should the relevant statistics be displayed at the end of solving? */
314
315 /* heuristics settings */
316 SCIP_Bool heur_useuctsubscip; /**< should setting of common subscip parameters include the activation of the UCT node selector? */
317
318 /* history settings */
319 SCIP_Bool history_valuebased; /**< should statistics be collected for variable domain value pairs? */
320 SCIP_Bool history_allowmerge; /**< should variable histories be merged from sub-SCIPs whenever possible? */
321 SCIP_Bool history_allowtransfer; /**< should variable histories be transferred to initialize SCIP copies? */
322
323 /* IIS settings */
324 SCIP_Bool iisfinder_irreducible; /**< should the resultant infeasible set be irreducible, i.e., an IIS not an IS */
325 SCIP_Bool iisfinder_removebounds; /**< should bounds of the problem be considered for removal */
326 SCIP_Bool iisfinder_silent; /**< should the IIS finders be run silently */
327 SCIP_Bool iisfinder_stopafterone; /**< should the IIS search stop after a single IIS finder is run (excluding post processing) */
328 SCIP_Bool iisfinder_removeunusedvars; /**< should vars that do not feature in any constraints be removed at the end of the IIS process */
329 SCIP_Real iisfinder_time; /**< maximal time in seconds for all IIS finders to run */
330 SCIP_Longint iisfinder_nodes; /**< maximal number of nodes to process for all IIS finders (-1: no limit) */
331
332 /* limit settings */
333 SCIP_Real limit_time; /**< maximal time in seconds to run */
334 SCIP_Real limit_memory; /**< maximal memory usage in MB */
335 SCIP_Real limit_gap; /**< solving stops, if the given gap is reached */
336 SCIP_Real limit_absgap; /**< solving stops, if the absolute difference between primal and dual bound
337 * reaches this value */
338 SCIP_Real limit_primal; /**< solving stops, if primal bound is at least as good as given value */
339 SCIP_Real limit_dual; /**< solving stops, if dual bound is at least as good as given value */
340 SCIP_Longint limit_nodes; /**< maximal number of nodes to process (-1: no limit) */
341 SCIP_Longint limit_totalnodes; /**< maximal number of total nodes (incl. restarts) to process (-1: no limit) */
342 SCIP_Longint limit_stallnodes; /**< solving stops, if the given number of nodes was processed since the
343 * last improvement of the primal solution value (-1: no limit) */
344 int limit_solutions; /**< solving stops, if the given number of solutions were found; this limit is first checked in presolving (-1: no limit) */
345 int limit_bestsol; /**< solving stops, if the given number of solution improvements were found
346 * (-1: no limit) */
347 int limit_maxsol; /**< maximal number of solutions to store in the solution storage */
348 int limit_maxorigsol; /**< maximal number of solutions candidates to store in the solution storage of the original problem */
349 int limit_restarts; /**< solving stops, if the given number of restarts was triggered (-1: no limit) */
350 int limit_autorestartnodes; /**< nodes to trigger automatic restart */
351 SCIP_Bool istimelimitfinite; /**< is the time limit finite */
352
353 /* LP settings */
354 int lp_solvefreq; /**< frequency for solving LP at the nodes (-1: never; 0: only root LP) */
355 SCIP_Longint lp_iterlim; /**< iteration limit for each single LP solve; -1: no limit */
356 SCIP_Longint lp_rootiterlim; /**< iteration limit for initial root LP solve; -1: no limit */
357 int lp_solvedepth; /**< maximal depth for solving LP at the nodes (-1: no depth limit) */
358 int lp_minsolvedepth; /**< minimal depth for solving LP at the nodes */
359 char lp_initalgorithm; /**< LP algorithm for solving initial LP relaxations ('s'implex, 'b'arrier,
360 * barrier with 'c'rossover) */
361 char lp_resolvealgorithm;/**< LP algorithm for resolving LP relaxations if a starting basis exists
362 * ('s'implex, 'b'arrier, barrier with 'c'rossover) */
363 char lp_pricing; /**< LP pricing strategy ('a'uto, 'f'ull pricing, 's'teepest edge pricing,
364 * 'q'uickstart steepest edge pricing, 'd'evex pricing) */
365 SCIP_Bool lp_clearinitialprobinglp;/**< should lp state be cleared at the end of probing mode when LP
366 * was initially unsolved, e.g., when called right after presolving? */
367 SCIP_Bool lp_resolverestore; /**< should the LP be resolved to restore the state at start of diving (if
368 * FALSE we buffer the solution values)? */
369 SCIP_Bool lp_freesolvalbuffers; /**< should the buffers for storing LP solution values during diving be
370 * freed at end of diving? */
371 int lp_colagelimit; /**< maximum age a column can reach before it is deleted from the SCIP_LP
372 * (-1: don't delete columns due to aging) */
373 int lp_rowagelimit; /**< maximum age a row can reach before it is deleted from the LP
374 * (-1: don't delete rows due to aging) */
375 SCIP_Bool lp_cleanupcols; /**< should new non-basic columns be removed after LP solving? */
376 SCIP_Bool lp_cleanupcolsroot; /**< should new non-basic columns be removed after root LP solving? */
377 SCIP_Bool lp_cleanuprows; /**< should new basic rows be removed after LP solving? */
378 SCIP_Bool lp_cleanuprowsroot; /**< should new basic rows be removed after root LP solving? */
379 SCIP_Bool lp_checkstability; /**< should LP solver's return status be checked for stability? */
380 SCIP_Real lp_conditionlimit; /**< maximum condition number of LP basis counted as stable (-1.0: no check) */
381 SCIP_Real lp_markowitz; /**< minimal Markowitz threshold to control sparsity/stability in LU factorization */
382 SCIP_Bool lp_checkprimfeas; /**< should LP solutions be checked for primal feasibility, resolving LP when numerical troubles occur? */
383 SCIP_Bool lp_checkdualfeas; /**< should LP solutions be checked for dual feasibility, resolving LP when numerical troubles occur? */
384 SCIP_Bool lp_checkfarkas; /**< should infeasibility proofs from the LP be checked? */
385 int lp_fastmip; /**< which FASTMIP setting of LP solver should be used? 0: off, 1: medium, 2: full */
386 int lp_scaling; /**< LP scaling (0: none, 1: normal, 2: aggressive) */
387 SCIP_Bool lp_presolving; /**< should presolving of LP solver be used? */
388 SCIP_Bool lp_lexdualalgo; /**< should the lexicographic dual algorithm be used? */
389 SCIP_Bool lp_lexdualrootonly; /**< should the lexicographic dual algorithm be applied only at the root node */
390 int lp_lexdualmaxrounds;/**< maximum number of rounds in the lexicographic dual algorithm */
391 SCIP_Bool lp_lexdualbasic; /**< choose fractional basic variables in lexicographic dual algorithm */
392 SCIP_Bool lp_lexdualstalling; /**< turn on the lex dual algorithm only when stalling? */
393 int lp_disablecutoff; /**< disable the cutoff bound in the LP solver? (0: enabled, 1: disabled, 2: auto) */
394 SCIP_Real lp_rowrepswitch; /**< simplex algorithm shall use row representation of the basis
395 * if number of rows divided by number of columns exceeds this value */
396 int lp_threads; /**< number of threads used for solving the LP (0: automatic) */
397 SCIP_Real lp_resolveiterfac; /**< factor of average LP iterations that is used as LP iteration limit
398 * for LP resolve (-1: unlimited) */
399 int lp_resolveitermin; /**< minimum number of iterations that are allowed for LP resolve */
400 int lp_solutionpolishing;/**< LP solution polishing method (0: disabled, 1: only root, 2: always, 3: auto) */
401 int lp_refactorinterval;/**< LP refactorization interval (0: automatic) */
402 SCIP_Bool lp_alwaysgetduals; /**< should the dual solution always be collected for LP solutions. */
403
404 /* NLP settings */
405 SCIP_Bool nlp_disable; /**< should the NLP be disabled even if a constraint handler enabled it? */
406 char* nlp_solver; /**< name of NLP solver to use */
407
408 /* memory settings */
409 SCIP_Real mem_savefac; /**< fraction of maximal memory usage resulting in switch to memory saving mode */
410 SCIP_Real mem_arraygrowfac; /**< memory growing factor for dynamically allocated arrays */
411 SCIP_Real mem_treegrowfac; /**< memory growing factor for tree array */
412 SCIP_Real mem_pathgrowfac; /**< memory growing factor for path array */
413 int mem_arraygrowinit; /**< initial size of dynamically allocated arrays */
414 int mem_treegrowinit; /**< initial size of tree array */
415 int mem_pathgrowinit; /**< initial size of path array */
416
417 /* miscellaneous settings */
418 SCIP_Bool misc_catchctrlc; /**< should the CTRL-C interrupt be caught by SCIP? */
419 SCIP_Bool misc_usevartable; /**< should a hashtable be used to map from variable names to variables? */
420 SCIP_Bool misc_useconstable; /**< should a hashtable be used to map from constraint names to constraints? */
421 SCIP_Bool misc_usesmalltables;/**< should smaller hashtables be used? yields better performance for small problems with about 100 variables */
422 SCIP_Bool misc_resetstat; /**< should the statistics be reset if the transformed problem is freed
423 * otherwise the statistics get reset after original problem is freed (in
424 * case of bender decomposition this parameter should be set to FALSE and
425 * therefore can be used to collect statistics over all runs) */
426 SCIP_Bool misc_improvingsols; /**< should only solutions be checked which improve the primal bound */
427 SCIP_Bool misc_printreason; /**< should the reason be printed if a given start solution is infeasible? */
428 SCIP_Bool misc_estimexternmem;/**< should the usage of external memory be estimated? */
429 SCIP_Bool misc_avoidmemout; /**< try to avoid running into memory limit by restricting plugins like heuristics? */
430 SCIP_Bool misc_transorigsols; /**< should SCIP try to transfer original solutions to the transformed space (after presolving)? */
431 SCIP_Bool misc_transsolsorig; /**< should SCIP try to transfer transformed solutions to the original space (after solving)? */
432 SCIP_Bool misc_calcintegral; /**< should SCIP calculate the primal dual integral value which may require
433 * a large number of additional clock calls (and decrease the performance)? */
434 SCIP_Bool misc_finitesolstore;/**< should SCIP try to remove infinite fixings from solutions copied to the solution store? */
435 SCIP_Bool misc_outputorigsol; /**< should the best solution be transformed to the orignal space and be output in command line run? */
436 SCIP_Bool misc_allowstrongdualreds; /**< should strong dual reductions be allowed in propagation and presolving? */
437 SCIP_Bool misc_allowweakdualreds; /**< should weak dual reductions be allowed in propagation and presolving? */
438 SCIP_Real misc_referencevalue;/**< objective value for reference purposes */
439 int misc_usesymmetry; /**< bitset describing used symmetry handling technique (0: off; 1: polyhedral (orbitopes and/or symresacks);
440 * 2: orbital fixing; 3: orbitopes and orbital fixing; 4: Schreier Sims cuts; 5: Schreier Sims cuts and
441 * symresacks) */
442 char* misc_debugsol; /**< path to a debug solution */
443 SCIP_Bool misc_scaleobj; /**< should the objective function be scaled? */
444 SCIP_Bool misc_showdivingstats;/**< should detailed statistics for diving heuristics be shown? */
445
446 /* randomization parameters */
447 int random_randomseedshift;/**< global shift of all random seeds in the plugins, this will have no impact on the permutation and LP seeds */
448 int random_randomseedshiftmultiplier; /**< multiplier for global shift random_randomseedshift */
449 int random_permutationseed;/**< seed value for permuting the problem after reading/transformation
450 * (0: no permutation) */
451 int random_randomseed; /**< random seed for LP solver, e.g. for perturbations in the simplex (0: LP default) */
452 SCIP_Bool random_permuteconss; /**< should order of constraints be permuted (depends on permutationseed)? */
453 SCIP_Bool random_permutevars; /**< should order of variables be permuted (depends on permutationseed)? */
454
455 /* node selection settings */
456 char nodesel_childsel; /**< child selection rule ('d'own, 'u'p, 'p'seudo costs, 'i'nference, 'l'p value,
457 * 'r'oot LP value difference, 'h'brid inference/root LP value difference) */
458
459 /* numerical settings */
460 SCIP_Real num_infinity; /**< values larger than this are considered infinity */
461 SCIP_Real num_epsilon; /**< absolute values smaller than this are considered zero */
462 SCIP_Real num_sumepsilon; /**< absolute values of sums smaller than this are considered zero */
463 SCIP_Real num_feastol; /**< feasibility tolerance for constraints */
464 SCIP_Real num_checkfeastolfac;/**< factor to change the feasibility tolerance when testing the best
465 * solution for feasibility (after solving process) */
466 SCIP_Real num_lpfeastolfactor;/**< factor w.r.t. primal feasibility tolerance that determines default (and maximal) primal feasibility tolerance of LP solver (user parameter, see also num_relaxfeastol) */
467 SCIP_Real num_dualfeastol; /**< feasibility tolerance for reduced costs */
468 SCIP_Real num_barrierconvtol; /**< convergence tolerance used in barrier algorithm */
469 SCIP_Real num_boundstreps; /**< minimal improve for strengthening bounds */
470 SCIP_Real num_pseudocosteps; /**< minimal variable distance value to use for pseudo cost updates */
471 SCIP_Real num_pseudocostdelta;/**< minimal objective distance value to use for pseudo cost updates */
472 SCIP_Real num_recompfac; /**< minimal decrease factor that causes the recomputation of a value
473 * (e.g., pseudo objective) instead of an update */
474 SCIP_Real num_hugeval; /**< values larger than this are considered huge and should be handled
475 * separately (e.g., in activity computation) */
476 SCIP_Real num_relaxfeastol; /**< primal feasibility tolerance for relaxations (set by core or plugins, not a parameter) */
477
478 /* presolving settings */
479 SCIP_Real presol_abortfac; /**< abort presolve, if l.t. this frac of the problem was changed in last round */
480 int presol_maxrounds; /**< maximal number of presolving rounds (-1: unlimited) */
481 int presol_maxrestarts; /**< maximal number of restarts (-1: unlimited) */
482 SCIP_Real presol_clqtablefac; /**< limit on number of entries in clique table relative to number of problem nonzeros */
483 SCIP_Real presol_restartfac; /**< fraction of integer variables that were fixed in the root node
484 * triggering a restart with preprocessing after root node evaluation */
485 SCIP_Real presol_immrestartfac;/**< fraction of integer variables that were fixed in the root node triggering an
486 * immediate restart with preprocessing */
487 SCIP_Real presol_subrestartfac;/**< fraction of integer variables that were globally fixed during the
488 * solving process triggering a restart with preprocessing */
489 SCIP_Real presol_restartminred;/**< minimal fraction of integer variables removed after restart to allow for
490 * an additional restart */
491 SCIP_Bool presol_donotmultaggr;/**< should multi-aggregation of variables be forbidden? */
492 SCIP_Bool presol_donotaggr; /**< should aggregation of variables be forbidden? */
493
494 /* pricing settings */
495 SCIP_Real price_abortfac; /**< pricing is aborted, if fac * maxpricevars pricing candidates were found */
496 int price_maxvars; /**< maximal number of variables priced in per pricing round */
497 int price_maxvarsroot; /**< maximal number of priced variables at the root node */
498 SCIP_Bool price_delvars; /**< should variables created at the current node be deleted when the node is solved
499 * in case they are not present in the LP anymore? */
500 SCIP_Bool price_delvarsroot; /**< should variables created at the root node be deleted when the root is solved
501 * in case they are not present in the LP anymore? */
502
503 /* Decomposition settings */
504 SCIP_Bool decomp_benderslabels; /**< should the variables be labeled for the application of Benders'
505 * decomposition */
506 SCIP_Bool decomp_applybenders; /**< if a decomposition exists, should Benders' decomposition be applied*/
507 int decomp_maxgraphedge; /**< maximum number of edges in block graph computation (-1: no limit, 0: disable block graph computation) */
508 SCIP_Bool decomp_disablemeasures; /**< disable expensive measures */
509
510 /* Benders' decomposition settings */
511 SCIP_Real benders_soltol; /**< the tolerance for checking optimality in Benders' decomposition */
512 SCIP_Bool benders_cutlpsol; /**< should cuts be generated from the solution to the LP relaxation? */
513 SCIP_Bool benders_copybenders;/**< should Benders' decomposition be copied for sub-SCIPs? */
514
515 /* propagation settings */
516 int prop_maxrounds; /**< maximal number of propagation rounds per node (-1: unlimited) */
517 int prop_maxroundsroot; /**< maximal number of propagation rounds in the root node (-1: unlimited) */
518 SCIP_Bool prop_abortoncutoff; /**< should propagation be aborted immediately? setting this to FALSE could
519 * help conflict analysis to produce more conflict constraints */
520
521 /* reoptimization settings */
522 SCIP_Real reopt_objsimsol; /**< similarity of two objective functions to reuse stored solutions. */
523 SCIP_Real reopt_objsimrootlp; /**< similarity of two sequential objective function to disable solving the
524 * root LP.
525 */
526 SCIP_Real reopt_objsimdelay; /**< minimum similarity for using reoptimization of the search tree. */
527 char reopt_varorderinterdiction; /** use the 'd'efault or a 'r'andom variable order for interdiction
528 * branching when applying the reoptimization
529 */
530 int reopt_forceheurrestart; /**< force a restart if the last n optimal solutions were found by
531 * heuristic reoptsols
532 */
533 int reopt_maxcutage; /**< maximal age of cuts to use them in reoptimization */
534 int reopt_maxdiffofnodes;/**< maximal number of bound changes between two stored nodes on one path */
535 int reopt_maxsavednodes;/**< maximal number of saved nodes */
536 int reopt_solvelp; /**< strategy for solving the LP at nodes from reoptimization */
537 int reopt_solvelpdiff; /**< maximal number of bound changes at node to skip solving the LP */
538 int reopt_savesols; /**< number of best solutions which should be saved for the following runs.
539 * (-1: save all)
540 */
541 SCIP_Bool reopt_commontimelimit;/**< time limit over all reoptimization rounds? */
542 SCIP_Bool reopt_enable; /**< enable reoptimization */
543 SCIP_Bool reopt_reducetofrontier; /**< delete stored nodes which were not reoptimized */
544 SCIP_Bool reopt_saveprop; /**< save constraint and propagator propagations */
545 SCIP_Bool reopt_sbinit; /**< try to fix variables before reoptimizing by probing like strong
546 * branching
547 */
548 SCIP_Bool reopt_shrinkinner; /**< replace branched inner nodes by their child nodes, if the number of
549 * bound changes is not to large
550 */
551 SCIP_Bool reopt_sepaglbinfsubtrees;/**< save global constraints to separate infeasible subtrees */
552 SCIP_Bool reopt_sepabestsol; /**< separate only the best solution, i.e., for constrained shortest path */
553 SCIP_Bool reopt_storevarhistory;/**< use variable history of the previous solve if the objective function
554 * has changed only slightly
555 */
556 SCIP_Bool reopt_usepscost; /**< reuse pseudo costs if the objective function changed only slightly */
557 SCIP_Bool reopt_usecuts; /**< reoptimize cuts found at the root node */
558 SCIP_Bool reopt_usesplitcons; /**< use constraints to reconstruct the subtree pruned be dual reduction
559 * when reactivating the node
560 */
561
562 /* separation settings */
563 SCIP_Real sepa_maxbounddist; /**< maximal relative distance from current node's dual bound to primal bound
564 * compared to best node's dual bound for applying separation
565 * (0.0: only on current best node, 1.0: on all nodes) */
566 SCIP_Real sepa_maxlocalbounddist;/**< maximal relative distance from current node's dual bound to primal bound
567 * compared to best node's dual bound for applying local separation
568 * (0.0: only on current best node, 1.0: on all nodes) */
569 SCIP_Real sepa_maxcoefratio; /**< maximal ratio between coefficients in strongcg, cmir, and flowcover cuts */
570 SCIP_Real sepa_maxcoefratiofacrowprep; /**< maximal ratio between coefficients (as factor of 1/feastol) to ensure in rowprep cleanup */
571 SCIP_Real sepa_minefficacy; /**< minimal efficacy for a cut to enter the LP */
572 SCIP_Real sepa_minefficacyroot; /**< minimal efficacy for a cut to enter the LP in the root node */
573 SCIP_Real sepa_minortho; /**< minimal orthogonality for a cut to enter the LP */
574 SCIP_Real sepa_minorthoroot; /**< minimal orthogonality for a cut to enter the LP in the root node */
575 SCIP_Real sepa_minactivityquot; /**< minimum cut activity quotient to convert cuts into constraints
576 * during a restart (0.0: all cuts are converted) */
577 char sepa_orthofunc; /**< function used for calc. scalar prod. in orthogonality test ('e'uclidean, 'd'iscrete) */
578 char sepa_efficacynorm; /**< row norm to use for efficacy calculation ('e'uclidean, 'm'aximum, 's'um,
579 * 'd'iscrete) */
580 char sepa_cutselrestart; /**< cut selection during restart ('a'ge, activity 'q'uotient) */
581 char sepa_cutselsubscip; /**< cut selection for sub SCIPs ('a'ge, activity 'q'uotient) */
582 SCIP_Bool sepa_filtercutpoolrel; /**< should cutpool separate only cuts with high relative efficacy? */
583 int sepa_maxruns; /**< maximal number of runs for which separation is enabled (-1: unlimited) */
584 int sepa_maxrounds; /**< maximal number of separation rounds per node (-1: unlimited) */
585 int sepa_maxroundsroot; /**< maximal number of separation rounds in the root node (-1: unlimited) */
586 int sepa_maxroundsrootsubrun; /**< maximal number of separation rounds in the root node of a subsequent run (-1: unlimited) */
587 int sepa_maxaddrounds; /**< maximal additional number of separation rounds in subsequent price-and-cut
588 * loops (-1: no additional restriction) */
589 int sepa_maxstallrounds;/**< maximal number of consecutive separation rounds without objective
590 * or integrality improvement (-1: no additional restriction) */
591 int sepa_maxstallroundsroot;/**< maximal number of consecutive separation rounds without objective
592 * or integrality improvement (-1: no additional restriction) */
593 SCIP_Real sepa_maxcutsgenfactor; /**< factor w.r.t. maxcuts for maximal number of cuts generated per
594 * separation round (-1.0: no limit, >= 0.0: valid finite limit) */
595 SCIP_Real sepa_maxcutsrootgenfactor; /**< factor w.r.t. maxcutsroot for maximal number of generated cuts
596 * at the root node (-1.0: no limit, >= 0.0: valid finite limit) */
597 int sepa_maxcuts; /**< maximal number of cuts separated per separation round */
598 int sepa_maxcutsroot; /**< maximal number of separated cuts at the root node */
599 int sepa_cutagelimit; /**< maximum age a cut can reach before it is deleted from the global cut pool */
600 int sepa_poolfreq; /**< separation frequency for the global cut pool */
601
602 /* parallel settings */
603 int parallel_mode; /**< the mode for the parallel implementation. 0: opportunistic or
604 * 1: deterministic */
605 int parallel_minnthreads;/**< the minimum number of threads used for parallel code */
606 int parallel_maxnthreads;/**< the maximum number of threads used for parallel code */
607
608 /* concurrent solver settings */
609 SCIP_Bool concurrent_changeseeds; /**< change the seeds in the different solvers? */
610 SCIP_Bool concurrent_changechildsel; /**< change the child selection rule in different solvers? */
611 SCIP_Bool concurrent_commvarbnds; /**< should the concurrent solvers communicate global variable bound changes? */
612 SCIP_Bool concurrent_presolvebefore; /**< should the problem be presolved before it is copied to the concurrent solvers? */
613 int concurrent_initseed; /**< the seed for computing the concurrent solver seeds */
614 SCIP_Real concurrent_freqinit; /**< initial frequency of synchronization */
615 SCIP_Real concurrent_freqmax; /**< maximal frequency of synchronization */
616 SCIP_Real concurrent_freqfactor; /**< factor by which the frequency of synchronization changes */
617 SCIP_Real concurrent_targetprogress; /**< when adapting the synchronization frequency this value is the targeted
618 * relative difference by which the absolute gap decreases per synchronization */
619 int concurrent_maxnsols; /**< maximum number of solutions that will get stored in one synchronization */
620 int concurrent_nbestsols; /**< number of best solutions that should be considered for synchronization */
621 int concurrent_maxnsyncdelay; /**< max number of synchronizations before data is used */
622 SCIP_Real concurrent_minsyncdelay; /**< min offset before synchronization data is used */
623 char* concurrent_paramsetprefix; /**< path prefix for parameter setting files of concurrent solver scip-custom */
624
625 /* timing settings */
626 SCIP_CLOCKTYPE time_clocktype; /**< default clock type to use */
627 SCIP_Bool time_enabled; /**< is timing enabled? */
628 SCIP_Bool time_reading; /**< belongs reading time to solving time? */
629 SCIP_Bool time_rareclockcheck;/**< should clock checks of solving time be performed less frequently (might exceed time limit slightly) */
630 SCIP_Bool time_statistictiming; /**< should timing for statistic output be enabled? */
631 SCIP_Bool time_nlpieval; /**< should time for evaluation in NLP solves be measured? */
632
633 /* tree compression parameters (for reoptimization) */
634 SCIP_Bool compr_enable; /**< should automatic tree compression after presolving be enabled? (only for reoptimization) */
635 SCIP_Real compr_time; /**< maximum time to run tree compression heuristics */
636
637 /* visualization settings */
638 char* visual_vbcfilename; /**< name of the VBC tool output file, or - if no VBC output should be created */
639 char* visual_bakfilename; /**< name of the BAK tool output file, or - if no BAK output should be created */
640 SCIP_Bool visual_realtime; /**< should the real solving time be used instead of time step counter in visualization? */
641 SCIP_Bool visual_dispsols; /**< should the node where solutions are found be visualized? */
642 SCIP_Bool visual_displb; /**< should lower bound information be visualized? */
643 SCIP_Bool visual_objextern; /**< should be output the external value of the objective? */
644
645 /* exact SCIP settings */
646 SCIP_Bool exact_enable; /**< should the problem be solved exactly (without numerical tolerances)? */
647 SCIP_Bool exact_improvingsols; /**< should only exact solutions be checked which improve the primal bound? */
648 int exact_interleavedbstrat; /**< strategy to interleave safe dual bounding with exact LP
649 * solve (0: never, 1: only close to cutoff bound, 2: only at depth lvl 2,4,8,16,...,
650 * 3: close to cutoff bound OR at depth lvl 2,4,8,16,...) */
651 char exact_safedbmethod; /**< method for computing safe dual bounds
652 * ('n'eumaier-shcherbina, 'p'roject-and-shift, 'e'xact LP, 'a'utomatic) */
653 int exact_psdualcolselection; /**< strategy for dual column selection in project-and-shift to compute interior point
654 * (0: no sel, 1: active rows of inexact primal LP, 2: active rows of exact primal LP) */
655 SCIP_Bool exact_lpinfo; /**< should exact the LP solver display status messages? */
656 SCIP_Bool exact_allownegslack;/**< should negative slack variables be used for gomory cuts in exact solving mode? */
657 SCIP_Longint exact_cutmaxdenom; /**< maximal denominator in cut coefficients, leading to slightly
658 * weaker but numerically better cuts (0: disabled) */
659 SCIP_Longint exact_cutapproxmaxboundval; /**< maximal absolute bound value for wich cut coefficient should
660 * be approximated with bounded denominator (0: no restriction) */
661
662 /* certificate settings */
663 char* certificate_filename;/**< name of the certificate file, or "-" if no output should be created */
664 SCIP_Real certificate_maxfilesize;/**< maximum size of the certificate file in MB (stop printing when reached) */
665
666 /* Reading */
667 SCIP_Bool read_initialconss; /**< should model constraints be marked as initial? */
668 SCIP_Bool read_dynamicconss; /**< should model constraints be subject to aging? */
669 SCIP_Bool read_dynamiccols; /**< should columns be added and removed dynamically to the LP? */
670 SCIP_Bool read_dynamicrows; /**< should rows be added and removed dynamically to the LP? */
671
672 /* Writing */
673 SCIP_Bool write_allconss; /**< should all constraints be written (including the redundant constraints)? */
674 SCIP_Bool write_printzeros; /**< should variables set to zero be printed? */
675 int write_genoffset; /**< when writing the problem with generic names, we start with index
676 * 0; using this parameter we can change the starting index to be
677 * different */
678 int write_implintlevel; /**< should integrality constraints (i.c.) be written for implied integral
679 * variables? (0: use original i.c., 1: add i.c. to strongly implied integral
680 * vars, 2: add i.c. to all implied integral vars, -1: remove i.c. from
681 * strongly implied integral vars, -2: remove i.c. from all implied integral
682 * vars)" */
683};
684
685#ifdef __cplusplus
686}
687#endif
688
689#endif
methods for debugging
struct SCIP_DebugSolData SCIP_DEBUGSOLDATA
Definition debug.h:59
common defines and data types used in all packages of SCIP
#define SCIP_Longint
Definition def.h:148
#define SCIP_Bool
Definition def.h:98
#define SCIP_Real
Definition def.h:163
struct BMS_BufMem BMS_BUFMEM
Definition memory.h:721
message output methods
char sepa_orthofunc
Definition struct_set.h:577
SCIP_READER ** readers
Definition struct_set.h:81
int nconcsolvers
Definition struct_set.h:161
SCIP_EXPRHDLR * exprhdlrpow
Definition struct_set.h:109
int nactivebenders
Definition struct_set.h:164
SCIP_DEBUGSOLDATA * debugsoldata
Definition struct_set.h:114
SCIP_CONFLICTHDLR ** conflicthdlrs
Definition struct_set.h:87
int presol_maxrounds
Definition struct_set.h:480
SCIP_Bool cutselssorted
Definition struct_set.h:180
SCIP_Longint limit_totalnodes
Definition struct_set.h:341
SCIP_Real presol_restartfac
Definition struct_set.h:483
int sepa_maxcuts
Definition struct_set.h:597
int cutselssize
Definition struct_set.h:134
SCIP_Bool conf_dynamic
Definition struct_set.h:263
SCIP_Real num_relaxfeastol
Definition struct_set.h:476
SCIP_Bool bendersnamesorted
Definition struct_set.h:195
int benderssize
Definition struct_set.h:165
SCIP_Bool reopt_storevarhistory
Definition struct_set.h:553
SCIP_Bool exact_allownegslack
Definition struct_set.h:656
int sepassize
Definition struct_set.h:132
BMS_BUFMEM * buffer
Definition struct_set.h:79
int propssize
Definition struct_set.h:136
SCIP_Real sepa_maxcoefratio
Definition struct_set.h:569
SCIP_Bool lp_checkstability
Definition struct_set.h:379
SCIP_Bool lp_lexdualrootonly
Definition struct_set.h:389
SCIP_Real num_barrierconvtol
Definition struct_set.h:468
SCIP_Bool concurrent_changechildsel
Definition struct_set.h:610
SCIP_Bool branchrulessorted
Definition struct_set.h:188
SCIP_Bool lp_cleanupcols
Definition struct_set.h:375
int write_implintlevel
Definition struct_set.h:678
SCIP_PRESOL ** presols
Definition struct_set.h:88
SCIP_Bool conf_prefinfproof
Definition struct_set.h:254
SCIP_Real conf_uplockscorefac
Definition struct_set.h:267
SCIP_Bool lp_lexdualstalling
Definition struct_set.h:392
char * visual_bakfilename
Definition struct_set.h:639
int ncomprs
Definition struct_set.h:139
int decomp_maxgraphedge
Definition struct_set.h:507
char ** extcodedescs
Definition struct_set.h:117
int random_permutationseed
Definition struct_set.h:449
SCIP_Bool time_rareclockcheck
Definition struct_set.h:629
SCIP_Bool time_nlpieval
Definition struct_set.h:631
SCIP_Real concurrent_minsyncdelay
Definition struct_set.h:622
int exprhdlrssize
Definition struct_set.h:156
int parallel_mode
Definition struct_set.h:603
SCIP_Bool conflicthdlrsnamesorted
Definition struct_set.h:173
SCIP_Bool iisfinder_removeunusedvars
Definition struct_set.h:328
SCIP_Real num_pseudocostdelta
Definition struct_set.h:471
SCIP_Bool propsnamesorted
Definition struct_set.h:183
SCIP_EXPRHDLR * exprhdlrproduct
Definition struct_set.h:108
SCIP_EXPRHDLR * exprhdlrvar
Definition struct_set.h:105
SCIP_Bool reopt_enable
Definition struct_set.h:542
SCIP_CONSHDLR ** conshdlrs_sepa
Definition struct_set.h:84
SCIP_Bool lp_checkdualfeas
Definition struct_set.h:383
SCIP_Bool misc_showdivingstats
Definition struct_set.h:444
int nexprhdlrs
Definition struct_set.h:155
SCIP_Real reopt_objsimrootlp
Definition struct_set.h:523
SCIP_Bool misc_calcintegral
Definition struct_set.h:432
SCIP_Real conf_maxvarsfracres
Definition struct_set.h:220
int niisfinders
Definition struct_set.h:147
SCIP_Bool lp_lexdualalgo
Definition struct_set.h:388
int sepa_maxcutsroot
Definition struct_set.h:598
SCIP_Bool limitchanged
Definition struct_set.h:196
SCIP_Bool conf_repropagate
Definition struct_set.h:259
SCIP_Bool conf_keepreprop
Definition struct_set.h:261
SCIP_Bool exact_enable
Definition struct_set.h:646
SCIP_Bool misc_avoidmemout
Definition struct_set.h:429
SCIP_Real reopt_objsimsol
Definition struct_set.h:522
SCIP_Real limit_memory
Definition struct_set.h:334
int mem_arraygrowinit
Definition struct_set.h:413
SCIP_Real mem_arraygrowfac
Definition struct_set.h:410
int extcodessize
Definition struct_set.h:167
char conf_reduction
Definition struct_set.h:249
int ncutsels
Definition struct_set.h:133
int disp_freq
Definition struct_set.h:309
SCIP_Longint iisfinder_nodes
Definition struct_set.h:330
SCIP_Bool concurrent_commvarbnds
Definition struct_set.h:611
SCIP_CONSHDLR ** conshdlrs
Definition struct_set.h:83
int parallel_minnthreads
Definition struct_set.h:605
SCIP_Bool exact_lpinfo
Definition struct_set.h:655
int neventhdlrs
Definition struct_set.h:141
int sepa_maxaddrounds
Definition struct_set.h:587
int lp_scaling
Definition struct_set.h:386
SCIP_Bool misc_useconstable
Definition struct_set.h:420
SCIP_STAGE stage
Definition struct_set.h:76
int sepa_poolfreq
Definition struct_set.h:600
SCIP_Bool disp_relevantstats
Definition struct_set.h:313
SCIP_Real conf_conflictweight
Definition struct_set.h:281
SCIP_Bool branch_divingpscost
Definition struct_set.h:210
SCIP_Real conf_maxcoefquot
Definition struct_set.h:295
int nconcsolvertypes
Definition struct_set.h:159
SCIP_Real conf_depthscorefac
Definition struct_set.h:265
int reopt_maxcutage
Definition struct_set.h:533
SCIP_Bool lp_checkprimfeas
Definition struct_set.h:382
char sepa_efficacynorm
Definition struct_set.h:578
int lp_minsolvedepth
Definition struct_set.h:358
int nnodesels
Definition struct_set.h:143
SCIP_Bool reopt_sbinit
Definition struct_set.h:545
int readerssize
Definition struct_set.h:119
SCIP_Bool read_initialconss
Definition struct_set.h:667
SCIP_Bool misc_finitesolstore
Definition struct_set.h:434
SCIP_Bool conf_settlelocal
Definition struct_set.h:257
int reopt_maxsavednodes
Definition struct_set.h:535
SCIP_Bool misc_transorigsols
Definition struct_set.h:430
int conf_minmaxvars
Definition struct_set.h:221
int sepa_maxroundsrootsubrun
Definition struct_set.h:586
SCIP_Bool iisfinder_irreducible
Definition struct_set.h:324
SCIP_Real conf_restartfac
Definition struct_set.h:272
int nextcodes
Definition struct_set.h:166
int reopt_solvelpdiff
Definition struct_set.h:537
char branch_lpgainnorm
Definition struct_set.h:208
SCIP_Real sepa_maxcutsrootgenfactor
Definition struct_set.h:595
SCIP_CONCSOLVER ** concsolvers
Definition struct_set.h:112
SCIP_SEPA ** sepas
Definition struct_set.h:90
SCIP_Bool read_dynamiccols
Definition struct_set.h:669
SCIP_Bool misc_resetstat
Definition struct_set.h:422
SCIP_Longint exact_cutmaxdenom
Definition struct_set.h:657
int conf_maxlploops
Definition struct_set.h:222
SCIP_Bool branch_preferbinary
Definition struct_set.h:204
SCIP_Real price_abortfac
Definition struct_set.h:495
int nreaders
Definition struct_set.h:118
SCIP_Real num_lpfeastolfactor
Definition struct_set.h:466
int mem_treegrowinit
Definition struct_set.h:414
int reopt_maxdiffofnodes
Definition struct_set.h:534
SCIP_Bool conf_fullshortenconflict
Definition struct_set.h:278
SCIP_Bool branch_delaypscost
Definition struct_set.h:209
SCIP_Real num_hugeval
Definition struct_set.h:474
int conf_reconvlevels
Definition struct_set.h:235
int price_maxvars
Definition struct_set.h:496
SCIP_Real benders_soltol
Definition struct_set.h:511
int sepa_maxruns
Definition struct_set.h:583
SCIP_Bool sepassorted
Definition struct_set.h:178
SCIP_HEUR ** heurs
Definition struct_set.h:94
int conf_lpiterations
Definition struct_set.h:224
int sepa_maxstallrounds
Definition struct_set.h:589
SCIP_Bool branch_sumadjustscore
Definition struct_set.h:216
int conshdlrssize
Definition struct_set.h:124
int lp_solutionpolishing
Definition struct_set.h:400
SCIP_Bool propssorted
Definition struct_set.h:181
SCIP_Bool heurssorted
Definition struct_set.h:184
SCIP_Bool comprsnamesorted
Definition struct_set.h:187
SCIP_Bool conf_usegenres
Definition struct_set.h:240
SCIP_Real branch_midpull
Definition struct_set.h:206
SCIP_DIALOG ** dialogs
Definition struct_set.h:103
char nodesel_childsel
Definition struct_set.h:456
SCIP_Real num_boundstreps
Definition struct_set.h:469
int conf_maxconss
Definition struct_set.h:232
SCIP_Real presol_clqtablefac
Definition struct_set.h:482
int lp_refactorinterval
Definition struct_set.h:401
SCIP_Bool misc_printreason
Definition struct_set.h:427
SCIP_Longint limit_nodes
Definition struct_set.h:340
SCIP_Real limit_absgap
Definition struct_set.h:336
SCIP_Bool misc_improvingsols
Definition struct_set.h:426
SCIP_BENDERS ** benders
Definition struct_set.h:113
int concsolvertypessize
Definition struct_set.h:160
int sepa_maxrounds
Definition struct_set.h:584
SCIP_Bool pricersnamesorted
Definition struct_set.h:171
SCIP_Real mem_savefac
Definition struct_set.h:409
SCIP_Bool random_permutevars
Definition struct_set.h:453
SCIP_Real conf_maxvarsfac
Definition struct_set.h:219
char sepa_cutselsubscip
Definition struct_set.h:581
SCIP_Real conf_scorefac
Definition struct_set.h:269
char conf_useboundlp
Definition struct_set.h:244
char conf_useinflp
Definition struct_set.h:241
char ** extcodenames
Definition struct_set.h:116
int mem_pathgrowinit
Definition struct_set.h:415
SCIP_Real presol_restartminred
Definition struct_set.h:489
int nlpissize
Definition struct_set.h:158
int reopt_savesols
Definition struct_set.h:538
SCIP_Real conf_minimprove
Definition struct_set.h:291
SCIP_COMPR ** comprs
Definition struct_set.h:95
int conf_fuiplevels
Definition struct_set.h:226
int limit_maxorigsol
Definition struct_set.h:348
int sepa_maxstallroundsroot
Definition struct_set.h:591
SCIP_Real certificate_maxfilesize
Definition struct_set.h:664
int concurrent_maxnsyncdelay
Definition struct_set.h:621
int npricers
Definition struct_set.h:120
SCIP_VERBLEVEL disp_verblevel
Definition struct_set.h:307
SCIP_Bool relaxsnamesorted
Definition struct_set.h:177
SCIP_Bool conf_useprop
Definition struct_set.h:239
SCIP_Bool propspresolsorted
Definition struct_set.h:182
SCIP_Bool conf_uselocalrows
Definition struct_set.h:294
SCIP_Real conf_weightrepropdepth
Definition struct_set.h:288
SCIP_Bool benderssorted
Definition struct_set.h:194
SCIP_Bool visual_displb
Definition struct_set.h:642
int branchrulessize
Definition struct_set.h:146
SCIP_Bool iisfinder_silent
Definition struct_set.h:326
SCIP_Real sepa_maxcoefratiofacrowprep
Definition struct_set.h:570
int exact_psdualcolselection
Definition struct_set.h:653
int write_genoffset
Definition struct_set.h:675
SCIP_Bool price_delvarsroot
Definition struct_set.h:500
SCIP_Bool nlpissorted
Definition struct_set.h:193
SCIP_Real sepa_maxcutsgenfactor
Definition struct_set.h:593
SCIP_Bool branch_roundsbsol
Definition struct_set.h:215
SCIP_Bool benders_cutlpsol
Definition struct_set.h:512
SCIP_Bool decomp_applybenders
Definition struct_set.h:506
int conf_restartnum
Definition struct_set.h:270
int limit_restarts
Definition struct_set.h:349
SCIP_Bool sepasnamesorted
Definition struct_set.h:179
SCIP_Real mem_treegrowfac
Definition struct_set.h:411
SCIP_CUTSEL ** cutsels
Definition struct_set.h:91
SCIP_Bool lp_clearinitialprobinglp
Definition struct_set.h:365
SCIP_Bool misc_transsolsorig
Definition struct_set.h:431
int dispssize
Definition struct_set.h:150
SCIP_Real presol_immrestartfac
Definition struct_set.h:485
int conf_maxvarsdetectimpliedbounds
Definition struct_set.h:274
SCIP_Bool sepa_filtercutpoolrel
Definition struct_set.h:582
SCIP_Real sepa_minefficacyroot
Definition struct_set.h:572
SCIP_Bool compr_enable
Definition struct_set.h:634
SCIP_CONCSOLVERTYPE ** concsolvertypes
Definition struct_set.h:111
SCIP_Real conf_downlockscorefac
Definition struct_set.h:268
SCIP_Bool decomp_benderslabels
Definition struct_set.h:504
SCIP_Longint lp_rootiterlim
Definition struct_set.h:356
SCIP_Bool lp_alwaysgetduals
Definition struct_set.h:402
int dialogssize
Definition struct_set.h:154
SCIP_NODESEL * nodesel
Definition struct_set.h:98
char sepa_cutselrestart
Definition struct_set.h:580
int sepa_cutagelimit
Definition struct_set.h:599
SCIP_Bool reopt_reducetofrontier
Definition struct_set.h:543
SCIP_Real num_epsilon
Definition struct_set.h:461
int reopt_forceheurrestart
Definition struct_set.h:530
int nactivepricers
Definition struct_set.h:121
int nconflicthdlrs
Definition struct_set.h:125
SCIP_EXPRHDLR * exprhdlrsum
Definition struct_set.h:107
SCIP_Bool comprssorted
Definition struct_set.h:186
int random_randomseedshift
Definition struct_set.h:447
int conflicthdlrssize
Definition struct_set.h:126
SCIP_Real num_feastol
Definition struct_set.h:463
SCIP_Bool iisfinderssorted
Definition struct_set.h:190
SCIP_CONSHDLR ** conshdlrs_enfo
Definition struct_set.h:85
int disp_width
Definition struct_set.h:308
SCIP_Bool conf_sepaaltproofs
Definition struct_set.h:290
SCIP_Real presol_abortfac
Definition struct_set.h:479
SCIP_PROP ** props
Definition struct_set.h:92
SCIP_Bool relaxssorted
Definition struct_set.h:176
SCIP_Bool exact_improvingsols
Definition struct_set.h:647
SCIP_Real sepa_minortho
Definition struct_set.h:573
SCIP_Bool misc_estimexternmem
Definition struct_set.h:428
SCIP_Bool misc_usevartable
Definition struct_set.h:419
int limit_maxsol
Definition struct_set.h:347
int concurrent_initseed
Definition struct_set.h:613
SCIP_Real limit_time
Definition struct_set.h:333
char branch_firstsbchild
Definition struct_set.h:201
int prop_maxroundsroot
Definition struct_set.h:517
SCIP_Real sepa_maxbounddist
Definition struct_set.h:563
SCIP_Real limit_primal
Definition struct_set.h:338
SCIP_Bool istimelimitfinite
Definition struct_set.h:351
SCIP_Bool reopt_shrinkinner
Definition struct_set.h:548
int presol_maxrestarts
Definition struct_set.h:481
SCIP_NODESEL ** nodesels
Definition struct_set.h:97
SCIP_Real num_recompfac
Definition struct_set.h:472
SCIP_Bool misc_outputorigsol
Definition struct_set.h:435
SCIP_CONSHDLR ** conshdlrs_include
Definition struct_set.h:86
SCIP_Bool iisfinder_stopafterone
Definition struct_set.h:327
SCIP_Longint lp_iterlim
Definition struct_set.h:355
SCIP_Real sepa_minorthoroot
Definition struct_set.h:574
SCIP_EVENTHDLR ** eventhdlrs
Definition struct_set.h:96
int presolssize
Definition struct_set.h:128
SCIP_Real misc_referencevalue
Definition struct_set.h:438
int cons_agelimit
Definition struct_set.h:300
int lp_threads
Definition struct_set.h:396
char * nlp_solver
Definition struct_set.h:406
SCIP_Real conf_weightvaliddepth
Definition struct_set.h:289
SCIP_Bool prop_abortoncutoff
Definition struct_set.h:518
int price_maxvarsroot
Definition struct_set.h:497
SCIP_Bool time_statistictiming
Definition struct_set.h:630
SCIP_Real concurrent_freqfactor
Definition struct_set.h:616
SCIP_Bool misc_scaleobj
Definition struct_set.h:443
SCIP_Bool conf_cleanbnddepend
Definition struct_set.h:238
SCIP_Bool conf_removable
Definition struct_set.h:264
SCIP_Real lp_rowrepswitch
Definition struct_set.h:394
SCIP_NLPI ** nlpis
Definition struct_set.h:110
SCIP_Real num_checkfeastolfac
Definition struct_set.h:464
SCIP_Real mem_pathgrowfac
Definition struct_set.h:412
SCIP_Bool disp_allviols
Definition struct_set.h:312
SCIP_Real branch_clamp
Definition struct_set.h:205
SCIP_TABLE ** tables
Definition struct_set.h:102
SCIP_Real branch_scorefac
Definition struct_set.h:202
SCIP_Real conf_conflictgraphweight
Definition struct_set.h:284
SCIP_Bool lp_resolverestore
Definition struct_set.h:367
int random_randomseedshiftmultiplier
Definition struct_set.h:448
SCIP_Bool conf_fixandcontinue
Definition struct_set.h:298
SCIP_Bool conf_separate
Definition struct_set.h:262
int comprssize
Definition struct_set.h:140
int lp_colagelimit
Definition struct_set.h:371
int lp_lexdualmaxrounds
Definition struct_set.h:390
SCIP_Bool history_allowtransfer
Definition struct_set.h:321
SCIP_Bool lp_presolving
Definition struct_set.h:387
SCIP_Real lp_markowitz
Definition struct_set.h:381
int conf_maxstoresize
Definition struct_set.h:234
int prop_maxrounds
Definition struct_set.h:516
SCIP_Bool branch_checksbsol
Definition struct_set.h:214
SCIP_Bool conf_preferbinary
Definition struct_set.h:255
int limit_solutions
Definition struct_set.h:344
SCIP_Real lp_resolveiterfac
Definition struct_set.h:397
SCIP_DISP ** disps
Definition struct_set.h:101
int lp_solvefreq
Definition struct_set.h:354
SCIP_Bool lp_cleanupcolsroot
Definition struct_set.h:376
SCIP_Bool misc_usesmalltables
Definition struct_set.h:421
int npresols
Definition struct_set.h:127
int conf_resfuiplevels
Definition struct_set.h:228
SCIP_Bool nlp_disable
Definition struct_set.h:405
char lp_pricing
Definition struct_set.h:363
SCIP_Bool concurrent_presolvebefore
Definition struct_set.h:612
SCIP_Bool branch_collectancpscost
Definition struct_set.h:211
SCIP_BRANCHRULE ** branchrules
Definition struct_set.h:99
SCIP_IISFINDER ** iisfinders
Definition struct_set.h:100
SCIP_Bool random_permuteconss
Definition struct_set.h:452
SCIP_Real num_pseudocosteps
Definition struct_set.h:470
int tablessize
Definition struct_set.h:152
int reopt_solvelp
Definition struct_set.h:536
SCIP_Bool time_enabled
Definition struct_set.h:627
int relaxssize
Definition struct_set.h:130
int concurrent_maxnsols
Definition struct_set.h:619
SCIP_Bool reopt_commontimelimit
Definition struct_set.h:541
char reopt_varorderinterdiction
Definition struct_set.h:527
SCIP_Real lp_conditionlimit
Definition struct_set.h:380
SCIP_Bool branch_forceall
Definition struct_set.h:212
int ntables
Definition struct_set.h:151
SCIP_Bool lp_freesolvalbuffers
Definition struct_set.h:369
SCIP_Bool branchrulesnamesorted
Definition struct_set.h:189
SCIP_Bool reopt_usepscost
Definition struct_set.h:556
SCIP_Real num_dualfeastol
Definition struct_set.h:467
SCIP_Bool presolsnamesorted
Definition struct_set.h:175
SCIP_Bool price_delvars
Definition struct_set.h:498
SCIP_Bool history_allowmerge
Definition struct_set.h:320
int pricerssize
Definition struct_set.h:122
SCIP_Longint exact_cutapproxmaxboundval
Definition struct_set.h:659
SCIP_EXPRHDLR ** exprhdlrs
Definition struct_set.h:104
int conf_interconss
Definition struct_set.h:230
SCIP_Bool conf_usepseudo
Definition struct_set.h:253
SCIP_Bool reopt_sepaglbinfsubtrees
Definition struct_set.h:551
char exact_safedbmethod
Definition struct_set.h:651
int lp_solvedepth
Definition struct_set.h:357
SCIP_Bool misc_allowweakdualreds
Definition struct_set.h:437
SCIP_Bool decomp_disablemeasures
Definition struct_set.h:508
int ndialogs
Definition struct_set.h:153
SCIP_Real concurrent_targetprogress
Definition struct_set.h:617
int banditvtablessize
Definition struct_set.h:169
SCIP_Longint limit_stallnodes
Definition struct_set.h:342
char * misc_debugsol
Definition struct_set.h:442
SCIP_Bool misc_catchctrlc
Definition struct_set.h:418
int concurrent_nbestsols
Definition struct_set.h:620
SCIP_Real presol_subrestartfac
Definition struct_set.h:487
SCIP_Real sepa_maxlocalbounddist
Definition struct_set.h:566
int limit_autorestartnodes
Definition struct_set.h:350
SCIP_Bool benders_copybenders
Definition struct_set.h:513
SCIP_Bool reopt_usesplitcons
Definition struct_set.h:558
SCIP_Real num_sumepsilon
Definition struct_set.h:462
SCIP_Real limit_dual
Definition struct_set.h:339
int lp_fastmip
Definition struct_set.h:385
SCIP_Real iisfinder_time
Definition struct_set.h:329
SCIP_Bool cons_disableenfops
Definition struct_set.h:304
BMS_BUFMEM * cleanbuffer
Definition struct_set.h:80
int heurssize
Definition struct_set.h:138
int disp_headerfreq
Definition struct_set.h:310
SCIP_PROP ** props_presol
Definition struct_set.h:93
SCIP_Bool iisfinder_removebounds
Definition struct_set.h:325
int limit_bestsol
Definition struct_set.h:345
SCIP_Real sepa_minefficacy
Definition struct_set.h:571
SCIP_Bool lp_checkfarkas
Definition struct_set.h:384
int nbenders
Definition struct_set.h:163
SCIP_RELAX ** relaxs
Definition struct_set.h:89
int nodeselssize
Definition struct_set.h:144
SCIP_Real num_infinity
Definition struct_set.h:460
SCIP_Bool reopt_sepabestsol
Definition struct_set.h:552
SCIP_Bool conf_allowlocal
Definition struct_set.h:256
SCIP_Bool heur_useuctsubscip
Definition struct_set.h:316
SCIP_BANDITVTABLE ** banditvtables
Definition struct_set.h:115
SCIP_Bool write_allconss
Definition struct_set.h:673
char * concurrent_paramsetprefix
Definition struct_set.h:623
SCIP_PARAMSET * paramset
Definition struct_set.h:78
SCIP_Bool pricerssorted
Definition struct_set.h:170
SCIP_Bool reopt_saveprop
Definition struct_set.h:544
char * certificate_filename
Definition struct_set.h:663
SCIP_Real limit_gap
Definition struct_set.h:335
SCIP_Bool reopt_usecuts
Definition struct_set.h:557
SCIP_Bool heursnamesorted
Definition struct_set.h:185
int nrelaxs
Definition struct_set.h:129
SCIP_Real concurrent_freqinit
Definition struct_set.h:614
SCIP_Real branch_midpullreldomtrig
Definition struct_set.h:207
SCIP_Real conf_proofscorefac
Definition struct_set.h:266
SCIP_Bool visual_realtime
Definition struct_set.h:640
SCIP_Bool concurrent_changeseeds
Definition struct_set.h:609
int concsolverssize
Definition struct_set.h:162
SCIP_CLOCKTYPE time_clocktype
Definition struct_set.h:626
SCIP_Real reopt_objsimdelay
Definition struct_set.h:526
SCIP_Bool conf_usesb
Definition struct_set.h:247
SCIP_Bool read_dynamicrows
Definition struct_set.h:670
char * visual_vbcfilename
Definition struct_set.h:638
SCIP_Real concurrent_freqmax
Definition struct_set.h:615
char branch_scorefunc
Definition struct_set.h:200
char lp_resolvealgorithm
Definition struct_set.h:361
int nconshdlrs
Definition struct_set.h:123
SCIP_Bool disp_lpinfo
Definition struct_set.h:311
int exact_interleavedbstrat
Definition struct_set.h:648
SCIP_Real compr_time
Definition struct_set.h:635
int iisfinderssize
Definition struct_set.h:148
SCIP_Bool lp_cleanuprowsroot
Definition struct_set.h:378
int misc_usesymmetry
Definition struct_set.h:439
char lp_initalgorithm
Definition struct_set.h:359
SCIP_Bool conf_mbreduction
Definition struct_set.h:252
SCIP_Bool misc_allowstrongdualreds
Definition struct_set.h:436
SCIP_Bool presol_donotaggr
Definition struct_set.h:492
SCIP_Bool time_reading
Definition struct_set.h:628
SCIP_Bool write_printzeros
Definition struct_set.h:674
SCIP_PRICER ** pricers
Definition struct_set.h:82
int cons_obsoleteage
Definition struct_set.h:302
SCIP_Bool read_dynamicconss
Definition struct_set.h:668
int lp_disablecutoff
Definition struct_set.h:393
SCIP_Bool lp_lexdualbasic
Definition struct_set.h:391
SCIP_Real conf_weightsize
Definition struct_set.h:287
SCIP_Bool visual_objextern
Definition struct_set.h:643
SCIP_Bool exprhdlrssorted
Definition struct_set.h:192
SCIP_Bool conf_ignorerelaxedbd
Definition struct_set.h:273
SCIP_Bool history_valuebased
Definition struct_set.h:319
SCIP_Bool subscipsoff
Definition struct_set.h:197
int nbanditvtables
Definition struct_set.h:168
int lp_rowagelimit
Definition struct_set.h:373
SCIP_Bool presol_donotmultaggr
Definition struct_set.h:491
SCIP_Bool tablessorted
Definition struct_set.h:191
int sepa_maxroundsroot
Definition struct_set.h:585
SCIP_Bool conflicthdlrssorted
Definition struct_set.h:172
int lp_resolveitermin
Definition struct_set.h:399
SCIP_Bool presolssorted
Definition struct_set.h:174
SCIP_Real sepa_minactivityquot
Definition struct_set.h:575
SCIP_EXPRHDLR * exprhdlrval
Definition struct_set.h:106
SCIP_Bool visual_dispsols
Definition struct_set.h:641
int eventhdlrssize
Definition struct_set.h:142
int parallel_maxnthreads
Definition struct_set.h:606
int random_randomseed
Definition struct_set.h:451
int nbranchrules
Definition struct_set.h:145
SCIP_Bool lp_cleanuprows
Definition struct_set.h:377
SCIP_Bool conf_enable
Definition struct_set.h:237
type definitions for bandit selection algorithms
struct SCIP_BanditVTable SCIP_BANDITVTABLE
Definition type_bandit.h:53
type definitions for Benders' decomposition methods
struct SCIP_Benders SCIP_BENDERS
type definitions for branching rules
struct SCIP_Branchrule SCIP_BRANCHRULE
Definition type_branch.h:56
type definitions for clocks and timing issues
enum SCIP_ClockType SCIP_CLOCKTYPE
Definition type_clock.h:47
type definitions for tree compression
struct SCIP_Compr SCIP_COMPR
Definition type_compr.h:52
type definitions for concurrent solvers
struct SCIP_ConcSolver SCIP_CONCSOLVER
struct SCIP_ConcSolverType SCIP_CONCSOLVERTYPE
type definitions for conflict analysis
struct SCIP_Conflicthdlr SCIP_CONFLICTHDLR
type definitions for constraints and constraint handlers
struct SCIP_Conshdlr SCIP_CONSHDLR
Definition type_cons.h:62
type definitions for cut selectors
struct SCIP_Cutsel SCIP_CUTSEL
Definition type_cutsel.h:52
type definitions for user interface dialog
struct SCIP_Dialog SCIP_DIALOG
Definition type_dialog.h:50
type definitions for displaying runtime statistics
struct SCIP_Disp SCIP_DISP
Definition type_disp.h:75
type definitions for managing events
struct SCIP_Eventhdlr SCIP_EVENTHDLR
Definition type_event.h:159
type and macro definitions related to algebraic expressions
struct SCIP_Exprhdlr SCIP_EXPRHDLR
Definition type_expr.h:194
type definitions for primal heuristics
struct SCIP_Heur SCIP_HEUR
Definition type_heur.h:76
type definitions for IIS
struct SCIP_IISfinder SCIP_IISFINDER
type definitions for message output methods
enum SCIP_VerbLevel SCIP_VERBLEVEL
type definitions for NLP solver interfaces
struct SCIP_Nlpi SCIP_NLPI
Definition type_nlpi.h:51
type definitions for node selectors
struct SCIP_Nodesel SCIP_NODESEL
type definitions for handling parameter settings
struct SCIP_ParamSet SCIP_PARAMSET
type definitions for presolvers
struct SCIP_Presol SCIP_PRESOL
Definition type_presol.h:50
type definitions for variable pricers
struct SCIP_Pricer SCIP_PRICER
Definition type_pricer.h:44
type definitions for propagators
struct SCIP_Prop SCIP_PROP
Definition type_prop.h:51
type definitions for input file readers
struct SCIP_Reader SCIP_READER
Definition type_reader.h:53
type definitions for relaxators
struct SCIP_Relax SCIP_RELAX
Definition type_relax.h:50
type definitions for SCIP's main datastructure
struct Scip SCIP
Definition type_scip.h:39
type definitions for separators
struct SCIP_Sepa SCIP_SEPA
Definition type_sepa.h:51
type definitions for global SCIP settings
enum SCIP_Stage SCIP_STAGE
Definition type_set.h:59
type definitions for displaying statistics tables
struct SCIP_Table SCIP_TABLE
Definition type_table.h:59