SCIP Doxygen Documentation
Loading...
Searching...
No Matches
CHANGELOG
Go to the documentation of this file.
1/**@page RN10 Release notes for SCIP 10
2
3@section RN1003 SCIP 10.0.3
4***************************
5
6Fixed bugs
7----------
8
9- fixed statistic on added linear constraints in propagation
10- keep flag rangedrowpropagated of linear and exactlinear constraints for probing bound changes to avoid duplicate constraints by ranged row propagation
11- define result of SCIPconsProp() also if no propagation callback is available
12- keep variable for impossible substitution in cardinality constraint presolving to avoid duplication error
13- fix locking of indicator variables associated with cardinality constraints
14- free hashmap in cardinality constraints if problem is freed before transforming
15- fix CONSGETVARS and CONSGETNVARS callbacks of cardinality constraint handler
16- correct integer variable offset when removing duplicate variables from xor constraint
17- add applied clique as constraint when reformulating a binary product to avoid problem relaxation
18- round coefficients when aggregating integer variables with epsilon coefficient tolerance to ensure consistency of integrality
19- in the components constraint handler, avoid solving last component as a subproblem if all others components were trivial
20- when solving a node is interrupted, create a node branched event for the artificial child node
21- add missing capture of binary variable in indicator constraint handler
22- disregard deletable flag in IIS generation to reenable removal of unused variables
23- restore infeasible original problem in IIS addition filter if interrupted or hitting a limit
24- fixed that SCIP did not catch Ctrl+C in concurrent mode
25- SCIPsolveConcurrent() now returns with an error when reoptimization is enabled, since the concurrent sub-solvers do not perform reoptimization and the combination could segfault after SCIPfreeReoptSolve()
26- fixed indexing in the heap implementation in Dijkstra's algorithm; behavior of heap was and is correct
27
28Build systems
29-------------
30
31- fixed that the doc target in cmake builds was not available when using -DBUILD_TESTING=OFF
32- add /bigobj compiler flag when compiling with cmake, MSVC, LPS=spx, and in debug mode
33
34Miscellaneous
35-------------
36
37- added DEBUGTOOL=perf option for check scripts to collect perf statistics (new sections @06, @09, @10), including computation and comparison of non-memory-stalling frequency-normalized time
38- check scripts now write available memory (kB) and the current cumulative CPU ticks (from /proc/stat) before and after the solve to the .out file (new sections @07 and @08)
39- allow to return SCIP_CONSADDED when propagating constraints
40- cardinality constraint handler now parses and writes the indicator variables
41
42@section RN1002 SCIP 10.0.2
43***************************
44
45Fixed bugs
46----------
47
48- an error is now produced if the emphasis settings in parameter files are wrong
49- propagate focus lower bound to child nodes to avoid outdated global lower bound
50- set small coefficients in SCIPvarGetActiveRepresentatives() to zero, in particular for (multi-)aggregations
51- avoid flattening multi-aggregations twice
52- fixed that inttobinary presolver kept trying to aggregate variables that were marked as not to be aggregated
53- provide memory allocation for implied integral binary and integer variables in dks heuristic to avoid data corruption
54- fixed that violations of nonlinear constraints were not registered with solutions, and so were not included in the overview printed by the checksol command of the SCIP shell
55- fixed failing assert when assembling data for writing of JSON statistics and no plugins were included for some plugin types
56- fixed a bug in sassy/dejavu by updating version
57- add missing library exports of SCIPchgVarLbGlobalExact(), SCIPchgVarUbGlobalExact(), SCIPinferVarLbConsExact(), and SCIPinferVarUbConsExact()
58- add prefix TNY_ for tnycthread functions in order to avoid name clash with POSIX threads functions
59- keep sanitizers enabled if only unsupported for some language in cmake
60- fixed that header files and library of exact LP solver interface (lpiexact) and header files of TPI were not installed by make install (non-cmake build)
61- fixed that C++14 may not have been enforced when compiling with CppAD or Boost with makefiles
62
63Miscellaneous
64-------------
65
66- check scripts can now copy solution files to check/results/, functional for CPLEX, GAMS, and SCIP for now; new option KEEPSOL to disable writing and keeping solution files
67
68@section RN1001 SCIP 10.0.1
69***************************
70
71Fixed bugs
72----------
73
74- fixed that parameters passed on as variadic arguments to SCIPsolveNLP() and SCIPsolveNlpi() were ignored when compiling with MS compilers without -Zc:preprocessor
75- make more CONOPT output available when verbosity level is set to 2
76- turn off detection of definitional constraints in CONOPT for now, to work around a related issue in CONOPT 4.39.0
77- fixed call of SCIPcreateConsBasicSOCNonlinear() with coefs being NULL, and fixed check for offsets being finite
78- avoid crash when initial IIS solve fails while reporting errors explicitly
79- fixed that variable removal in IIS cleanup tried to delete variables that were marked as not deletable
80- fixed that some IIS info messages were not using a user's message handler
81- fixed use of interactive option (-i) of AMPL interface
82- fixed failure in nl writing on big endian machines
83- correct memory reallocation in storeSubproblemMasterVar() of benders.c to avoid errors when freeing memory
84- also set real solution in SCIPsolSetValExact() to maintain approximation
85- handle exact solutions in SCIPsolCheckOrig(), SCIPcheckSolOrig(), and SCIPrecomputeSolObj() to correctly check exact initial solutions in SCIPtransformProb()
86- fixed calculation of Euclidean norm in calcEfficacyDenseStorage() for use in exact solving
87- removed unnecessary explicit linking of GMP library for exact solving mode unittests
88- fixed bug with changing the type of the slack variable in indicator constraints while copying
89- signal extreme estimations in timeSeriesEstimate() and skip pruning estimations in eventExecEstim() to avoid unstable restarting
90- fixed parallelism computation of dynamic cut selector to use Euclidean norm instead of unsupported argument
91- fixed that non-efficacious cuts were not filtered out before checking dynamic parallelism in dynamic cut selector
92- fixes in nauty.h for 32bit systems
93- fixed SCIPgetDualSolVal() for a linear constraint with a single variable
94- adjust conflictAnalyzeLP() to inability of row aggregation to handle a change in the number of variables
95- propagate child lower bounds back to focus node to ensure consistent lower bound tracking
96
97Miscellaneous
98-------------
99
100- updated ampl/mp to version 4.0.4
101- switch from GetTempPath2A to GetTempPathA in nl writer for Windows for broader compatibility
102
103@section RN1000 SCIP 10.0.0
104***************************
105
106Features and Performance Improvements
107-------------------------------------
108
109### Exact Solving
110- added numerically exact solving mode for mixed-integer linear programs to the core framework including certification of branch-and-bound phase
111- core extensions:
112 - new wrapper struct SCIP_RATIONAL for rational arithmetic currently based on Boost, GMP, and MPFR
113 - new data structure SCIP_LPEXACT for handling rational LP relaxation and computing safe dual bounds
114 - new interfaces to exact LP solvers SoPlex and QSopt_ex
115 - safe dualproof version of conflict analysis
116 - new data structure SCIP_CERTIFICATE for certificate printing/proof logging
117- new plugins:
118 - new constraint handler "exactlinear" for handling linear constraints with rational data
119 - new constraint handler "exactsol" to post-process and repair solutions from floating-point heuristics
120- plugins revised for numerically exact solving mode:
121 - adjusted readers for MPS, LP, CIP, OPB/WBO, and ZIMPL files
122 - extended presolver "milp" to perform rational presolving with PaPILO
123 - adjusted constraint handler "integral" and default reliability pseudo-cost branching rule "relpscost"
124 - extended Gomory cut separator to separate and certify numerically safe MIR cuts
125 - adjusted all primal heuristics (except for five dedicated MINLP heuristics)
126- new interfaces to exact LP solvers SoPlex and QSopt_ex
127
128### Symmetry Handling
129- added more techniques to handle reflection symmetries, in particular, for orbitopes with column reflections and matrices whose rows and columns can be permuted by a symmetry
130- Dejavu can be used to compute symmetries; the source code is shipped with SCIP and incorporates sassy
131- implemented symmetry detection callbacks for disjunction and superindicator constraint handlers
132- detailed information about applied symmetry handling techniques can be printed to the terminal
133- improve memory usage by introducing different constraint handlers for full orbitopes and packing/partitioning orbitopes
134- symmetry detection no longer treats implicit integer variables separately, but computes symmetries based on the variable type inferred from variable bounds and implied integrality
135- extended the statistics to also include information about the number of variables (per type) affected by symmetry
136- implemented method to compute new permutations from a given list of symmetry group generators
137- cons_orbisack, cons_orbitope_full, cons_orbitope_pp, and cons_symresack now try to replace the stored aggregated variables by active ones at the end of presolving;
138 this should reduce the size of copies of the presolved problem
139- simplified symmetry detection graphs in case all edges have the same color
140
141### Presolve
142- distinguish implicit integrality of variables into strong and weak type, depending on whether integrality is implied for all feasible or only at least one optimal solution
143- added a new presolver "implint", which detects implied integral variables by detecting (transposed) network submatrices in the problem; for now, this plugin is disabled by default
144- added support for (transposed) network matrix detection
145- allow multi-aggregation of unbounded slack variables, which may enable more bound tightening due to a reduction in the number of unbounded variables
146- resolve all fixings in xor constraints also for an available integer variable
147
148### Conflict Analysis
149- added generalized resolution conflict analysis that operates directly on linear constraints instead of conflict graphs
150- disabled dualsol and dualray conflict upgrades to maintain conflict store
151- apply general conflict upgrades in conflict store
152
153### Cutting Planes
154- added a new separator "flower" to generate flower cuts from AND constraints and nonlinear product expressions
155- added functionality to deal with hypergraphs by means of efficient access to vertices, edges, and intersections edges
156
157### Primal Heuristics
158- added decomposition kernel search (DKS) heuristic (disabled by default), which implements a kernel search framework;
159 it can be used both as a construction heuristic as well as an improvement heuristic; existing decomposition information can be utilized
160- reduced maximal fraction of diving LP iterations relative to total node LP iterations
161
162### Branching
163- added a dynamic max-lookahead criterion for strong branching; a probability distribution is fitted to the observed candidate gains and
164 evaluating further candidates stops when the expected tree-size reduction no longer justifies the LP evaluation cost
165- added new fields in history to store ancestral pseudo cost updates, used in the pseudo costs branching rule to compute discounted pseudo costs
166
167### Nonlinearity
168- added an interface to the NLP solver CONOPT
169- implemented columnwise Jacobian sparsity computation in the NLP oracle
170- extended SOC detection to simple bilinear constraints, e.g., x*y >= 1
171
172### Infeasibility Analysis
173- added the possibility to search for irreducible infeasible subsystems (IIS)
174- added new plugin type for finding irreducible infeasible subsystems (IIS)
175- new iisfinder plugin "greedy", which implements a greedy addition and deletion based algorithm with dynamic batch sizing
176
177### Benders' Decomposition
178- when solving a problem with additional decomposition information (for example, when reading a DEC file) and enabling decomposition/applybenders,
179 the problem is now solved in a Benders' decomposition relaxator; instead of decomposing the original SCIP instance, the relaxator builds the decomposed problem in
180 sub-SCIPs and solves it via default Benders' Decomposition; a solution to the original (undecomposed) problem is now made available by the relaxator;
181 the SCIP shell dialog "display statistics" now also prints the statistics from solving the Benders' decomposition in the relaxator
182- adds objective types for Benders' decomposition; the choices are to sum the subproblems objectives (classical approach) and to use the maximum of the subproblems objectives
183- the linking master variables for each Benders' decomposition subproblem are now stored; these can be accessed for the generation of cuts and setting up the subproblems
184
185### Reading and Writing
186- added a new data structure SCIP_DATATREE that holds serializable data and a function to export to a JSON file
187- added ability to collect statistics from tables in a SCIP_DATATREE and write out as JSON file;
188 dialog write statistics now writes a JSON file if name of file to write ends with .json
189- added writing support for AMPL NL writer: currently only general and specialized linear and nonlinear constraints can be written
190- added support for AND-constraints to GAMS writer
191- simplify expressions of nonlinear constraints in MPS and LP writing to increase chance that they are recognized as quadratic
192
193### Applications
194- New application "PBSolver" to solve pseudoboolean instances in OPB and WBO format while complying with PB competition rules
195- Coloring: new parameter branching/coloring/strategy to choose the least/most fractional variable for branching
196
197### Miscellaneous
198- do not allow non-root restarts when no global fixings were found
199- reimplemented SCIPvarGetActiveRepresentatives() by using dense arrays to avoid repeated resorting
200- avoid unnecessary calls of constraint handlers components, benders, benderslp, propagator genvbounds, and heuristics ofins, subnlp, nlpdiving, indicator
201- inlined SCIPgetStatus() to reduce computational overhead
202- variable data pointer are now copied if no copy routine was supplied
203- add check that parameter value pointers are unique, i.e., no two are the same
204
205Interface changes
206-----------------
207
208### Deprecations
209
210- The variable type \ref SCIP_VARTYPE_IMPLINT is deprecated in favor of a new enum \ref SCIP_IMPLINTTYPE that indicates if a
211 variable is implied integral, independent of the variable type.
212 The problem variable arrays is still sorted as:
213 ```
214 (0) | binary | integer | implied integral | continuous | (nvars),
215 ```
216 where the implied integral subsection is now subdivided into 3 parts (left to right):
217 ```
218 | binary implied integral | integer implied integral | continuous implied integral |
219 ```
220 SCIP 10 still supports using `SCIP_VARTYPE_IMPLINT` for backward compatibility, see SCIPcreateVar() and SCIPchgVarType() for more details.
221 SCIP 11 will remove `SCIP_VARTYPE_IMPLINT`.
222- SCIPsubversion() is deprecated and will be removed
223
224### New and changed callbacks
225
226- added SCIP_DECL_IISFINDERCOPY(), SCIP_DECL_IISFINDERFREE(), and SCIP_DECL_IISFINDEREXEC() for iisfinder implementations
227- added a new callback SCIP_DECL_TABLECOLLECT() for the table plugin that collects the data for the specific statistics table in a SCIP_DATATREE object
228- for a table plugin, only one of the callbacks SCIP_DECL_TABLECOLLECT() or SCIP_DECL_TABLEOUTPUT() needs to be implemented, but implementing both is preferred;
229 if SCIP_DECL_TABLEOUTPUT() is omitted, then SCIP tries to print a table from the data given by SCIP_DECL_TABLECOLLECT()
230- the callback SCIP_DECL_EXPRINTEGRALITY(), which returns the integrality of an expression, had its fourth argument changed from `SCIP_Bool*` to `SCIP_IMPLINTTYPE*` to represent implied integrality in nonlinear expressions,
231 that is, an implied integral type of an auxiliary variable if the expression were assigned to it
232- added argument `filename` to the SCIP_DECL_READERWRITE() callback in the 4th position
233- the callback SCIP_DECL_READERWRITE() is equipped with `objoffset`, `objscale`, `objoffsetexact`, and `objscaleexact` as arguments 9 through 12 to write the exact objective offset and scale in exact mode
234
235### Deleted and changed API functions
236
237- SCIPgetProbvarLinearSum(): remove parameter `mergemultiples`, which is now automatically true with the new implementation of SCIPvarGetActiveRepresentatives()
238- `SCIPcreateRow*()`, SCIPaddVarToRow(), SCIPaddVarsToRow(), SCIPaddVarsToRowSameCoef() can now only be called in the solving stage, because otherwise the LP is not yet available and the row data is invalid
239- SCIPcreateConsPseudobooleanWithConss(), SCIPcreateConsPseudoboolean(), and SCIPcreateConsBasicPseudoboolean(): removed `intvar` from arguments because the non-linear objective reformulation with pseudoboolean constraints did not work
240- SCIPcleanupConssLinear() and SCIPcleanupConssKnapsack(): added argument `ndelconss` to directly delete empty redundant constraints before creating problem matrix
241- SCIPcopyPlugins(): added argument `copyiisfinders` (16th position)
242- SCIPcreateConsOrbitope(): deleted two arguments and changed position of another argument
243- SCIPvarCalcDistributionParameters(): argument `impltype` added (5th position)
244- SCIPpermuteProb(): argument `permuteimplvars` has been replaced by new arguments `permutebinimplvars`, `permuteintimplvars`, and `permutecontimplvars`
245- SCIPgetLPBranchCands(): implied integral variables with integrality constraints are included in `nlpcands` count and stored at the end of `lpcands`
246- SCIPgetNLPBranchCands(): implied integral variables with integrality constraints are included
247- SCIPgetSolVarsData(): argument `nimplvars` has been replaced by new arguments `nbinimplvars`, `nintimplvars`, and `ncontimplvars`
248- SCIPexprSetIntegrality(): replaced argument `SCIP_Bool integral` by `SCIP_IMPLINTTYPE integrality` (4th position)
249- SCIPcreateVar() (temporarily for SCIP 10 only): attempting to create a variable with type \ref SCIP_VARTYPE_IMPLINT creates a variable of type \ref SCIP_VARTYPE_CONTINUOUS and implied integral type \ref SCIP_IMPLINTTYPE_WEAK
250- SCIPchgVarType() (temporarily for SCIP 10 only): attempting to change a variable type to \ref SCIP_VARTYPE_IMPLINT leads to a call of SCIPchgVarImplType() with type \ref SCIP_IMPLINTTYPE_WEAK
251- `SCIPapplyBendersDecomposition()` has been removed; this was originally used to apply Benders' decomposition from a supplied decomposition structure; the application of Benders' decomposition now occurs in relax_benders
252- SCIPcalcMIR(), SCIPcutGenerationHeuristicCMIR(), SCIPcalcStrongCG(): replaced boolean argument `usevbds` by an integer argument `vartypeusevbds`, which indicates for which variables variable bound substitution should be performed
253- `SCIPchgAndConsCheckFlagWhenUpgr()`, `SCIPchgAndConsRemovableFlagWhenUpgr()`: removed to keep upgrade flags consistent; use SCIPconsAddUpgradeLocks() to control upgrades instead
254- SCIPaddConflict(): argument `cons` changed to type `SCIP_CONS**` to release the conflict constraint in a clean way
255- SCIPprintOrigProblem() and SCIPprintTransProblem(): moved declaration moved from scip_solvingstats.h to scip_prob.h
256- `SCIPnlpiOracleGetJacobianSparsity()`: renamed to SCIPnlpiOracleGetJacobianRowSparsity() and added arguments `colnlflags` and `nnlnz`
257- SCIPnlpiOracleGetHessianLagSparsity(), SCIPnlpiOracleEvalHessianLag(): added argument `colwise`
258- SCIPxmlProcess(), SCIPxmlNewNode(), SCIPxmlNewAttr(), SCIPxmlAddAttr(), SCIPxmlAppendChild(), SCIPxmlFreeNode(), SCIPxmlShowNode(), SCIPxmlGetAttrval(), SCIPxmlFirstNode(), SCIPxmlNextNode(), SCIPxmlFindNode(), SCIPxmlFindNodeMaxdepth(), SCIPxmlNextSibl(), SCIPxmlPrevSibl(), SCIPxmlFirstChild(), SCIPxmlLastChild(), SCIPxmlGetName(), SCIPxmlGetLine(), SCIPxmlGetData(), SCIPxmlFindPcdata(): renamed XML functions by adding `SCIP` prefix to avoid name clash with libxml2
259- `SCIPhashtableClear()`, `SCIPcomputeArraysIntersection()`, `SCIPcomputeArraysSetminus()`,
260 `SCIPgetRandomInt()`, `SCIPgetRandomReal()`, `SCIPgetRandomSubset()`, `SCIPpermuteIntArray()`, `SCIPpermuteArray()`,
261 `SCIPvarGetLbAtIndex()`, `SCIPvarGetUbAtIndex()`, `SCIPvarGetBdAtIndex()`, `SCIPvarWasFixedAtIndex()`,
262 `SCIPaddCut()`, `SCIPcreateRow()`, `SCIPcreateEmptyRow()`, `SCIPlpfeastol()`, `SCIPchgLpfeastol()`,
263 `SCIPsolveParallel()`, `SCIPwriteImplicationConflictGraph()`, `SCIPallowDualReds()`, `SCIPallowObjProp()`,
264 `SCIPcreateConsQuadratic()`, `SCIPcreateConsBasicQuadratic()`, `SCIPaddConstantQuadratic()`, `SCIPaddLinearVarQuadratic()`, `SCIPaddQuadVarQuadratic()`, `SCIPaddQuadVarLinearCoefQuadratic()`, `SCIPaddSquareCoefQuadratic()`, `SCIPaddBilinTermQuadratic()`, `SCIPgetNlRowQuadratic()`, `SCIPchgLhsQuadratic()`, `SCIPchgRhsQuadratic()`,
265 `SCIPcreateConsAbspower()`, `SCIPcreateConsBasicAbspower()`, `SCIPgetNlRowAbspower()`,
266 `SCIPcreateConsSOC()`, `SCIPcreateConsBasicSOC()`, `SCIPgetNlRowSOC()`: removed, previously deprecated
267- `SCIP_NLPTERMSTAT_TILIM`, `SCIP_NLPTERMSTAT_ITLIM`, `SCIP_NLPTERMSTAT_LOBJLIM`, `SCIP_NLPTERMSTAT_NUMERR`, `SCIP_NLPTERMSTAT_EVALERR`, `SCIP_NLPTERMSTAT_MEMERR`, `SCIP_NLPTERMSTAT_LICERR`: removed, these NLP termination status codes were previously deprecated
268- `SCIPselectPtrRealReal()`, `SCIPselectWeightedPtrRealReal()`, `SCIPsortPtrRealReal()`, `SCIPreoptAddGlbCons()`, `SCIPreoptnodeGetSplitCons()`, `SCIPcomprInitsol()`, `SCIPcomprExitsol()`,
269 `SCIPcertificatePrintSolExact()`, `SCIPincludeExLinconsUpgrade()`, `SCIPupgradeConsExactLinear()`, `SCIPgetRunningErrorStatsExactLinear()`, `SCIPcolExactGetMinPrimsol()`, `SCIPrationalarrayClear()`, `SCIPgetRowActivityExact()`, `SCIPgetRowFeasibilityExact()`, `SCIPvalsExactFree()`,
270 `SCIPbendersApplyDecomposition()`, `SCIPgetExprsdataBilinear()`, `SCIPgetVarCoefChg()`, `SCIPvarGetOrigIndex()`, `SCIPallocateSymgraphConsnodeperm()`, `SCIPwriteSto()`: removed the declaration because there was no implementation
271
272### New API functions
273
274Exact Solving:
275- SCIPenableExactSolving(): enable and disable exact solving mode; see below for a list of many new API functions added to support exact solving
276- `SCIPrational*()`: create and compute with rational numbers
277- SCIPintervalSetRational(): compute interval of rational number
278- SCIPstrToRationalValue(), SCIPrationalStrLen(), SCIPrationalToString(): handle string conversion of a rational number
279- SCIPrationalChgInfinity(), SCIPrationalGetInfinity(): handle infinity threshold of rational numbers
280- `SCIPrationalarray*()`: create and handle rational arrays
281- SCIPisExact(): query whether exact solving is enabled
282- SCIPisCertified(): query whether certification is enabled
283- `SCIPcertify*()`, `SCIP*Certificate()`: support proof logging/certificate generation
284- `SCIP*MarkExact()`: mark plugins as safe to use in exact solving mode
285- `SCIP*IsExact()` : query whether objects are ready for exact solving
286- SCIPincludeConshdlrExactLinear(): include the constraint handler for exact linear constraints
287- `SCIP*ExactLinear()`: create, query, and modify an exact linear constraint
288- SCIPconsGetLhsExact()`, SCIPconsGetRhsExact(), SCIPgetConsValsExact(): query exact sides and coefficients of a linear constraint
289- `SCIPmatrix*Exact()`: query matrix information in rational arithmetic
290- SCIPaddVarExactData(): add exact data to an existing variable
291- `SCIPvarGet*Exact()`: query variable information in rational arithmetic
292- `SCIP*Var*Exact*()`: handle variables exactly
293- SCIPchgVarLbExactDive(), SCIPchgVarUbExactDive(), SCIPisExactDivePossible(), SCIPinExactDive(), SCIPstartExactDive(), SCIPendExactDive(), SCIPsolveExactDiveLP(): handle exact LP diving
294- SCIPlpExactDiving(): query whether exact LP is in diving mode
295- SCIPlpExactIsSolved(): query whether the exact LP is solved
296- SCIPwriteLPexact(): write the exact LP
297- `SCIPcolExact*()`, `SCIProwExact*()`: handle the exact LP columns and rows
298- `SCIPlpiExact*()`: handle the exact LP interface
299- SCIPgetNExactLPs(): query the number of exact LP solves
300- SCIPgetLPExactSolstat(), SCIPgetLPExactObjval(): query solution status and objective value of the exact LP
301- SCIPaddOrigObjoffsetExact(), SCIPgetOrigObjoffsetExact(): add and query exact objective offset of the original problem
302- `SCIP*Sol*Exact()`: create and handle exact solutions
303- SCIPsolOrigAddObjvalExact(): add to exact objective of original solution
304- SCIPincludeConshdlrExactSol(): include the exact post-processing for solutions
305- `SCIP*Row*Exact*()`: create and handle exact LP rows
306- `SCIPaggrRow*Safely()`: compute safe real row aggregation
307- SCIPallowNegSlack(): query whether negative slacks are allowed
308- SCIPbranchLPExact(): branch exactly on the LP solution
309- SCIPeventGetOldboundExact(): query exact old bound for a bound change event
310- SCIPcalcIntegralScalarExact(): compute a scalar so that all given values become exactly integral
311- SCIPnodeGetLowerboundExact(): query the exact lower bound of a node
312- SCIPgetCutoffboundExact(), SCIPgetLowerboundExact(), SCIPgetUpperboundExact(), SCIPgetDualboundExact(), SCIPgetPrimalboundExact(): query exact best bounds on optimal value
313- SCIPvalidateSolveExact(): validate the exact solve
314
315Implicit Integrality:
316- SCIPincludePresolImplint(): include the new implied integral presolver
317- SCIPcreateVarImpl(), SCIPcreateObjVarImpl(): behave identically to SCIPcreateVar() and SCIPcreateObjVar(), respectively, but have an additional argument for the new implied integral type flag (8th position)
318- SCIPchgVarImplType(), SCIPvarGetImplType(), SCIPvarIsImpliedIntegral(), SCIPcolIsImpliedIntegral(): control and query implied integrality
319- SCIPvarIsNonimpliedIntegral(): query whether a variable is integral but not implied integral
320- SCIPgetNOrigBinImplVars(), SCIPgetNOrigIntImplVars(), SCIPgetNOrigContImplVars(): query the number of implied integral variables of each type in original problem;
321 note that SCIPgetNOrigBinVars(), SCIPgetNOrigIntVars(), and SCIPgetNOrigContVars() no longer include the implied integral variables in their counts
322- SCIPgetNBinImplVars(), SCIPgetNIntImplVars(), SCIPgetNContImplVars(): query the number of implied integral variables of each type in current problem;
323 note that SCIPgetNBinVars(), SCIPgetNIntVars(), and SCIPgetNContVars() no longer include the implied integral variables in their counts
324- SCIProwGetNumImpliedIntCols(): query number of implied integer columns in a row
325- SCIPvarsCountTypes(): determine the variable type count distribution for an array of variables
326- SCIPeventGetOldImplType(), SCIPeventGetNewImplType(): query implication type change for the new event \ref SCIP_EVENTTYPE_IMPLTYPECHANGED
327- SCIPexprGetIntegrality(): provides information about the presence of weakly implied integral variables, in addition to the existing function SCIPexprIsIntegral()
328
329Symmetry Handling:
330- SCIPincludeConshdlrOrbitopePP(), SCIPcreateConsOrbitopePP(), SCIPcreateConsBasicOrbitopePP(), SCIPincludeConshdlrOrbitopeFull(), SCIPcreateConsOrbitopeFull(), SCIPcreateConsBasicOrbitopeFull()
331- SCIPdisplaySymmetryGenerators(), SCIPdialogExecDisplaySymmetry(): display generators of symmetry group
332- SCIPclearSymgraph(), SCIPcopySymgraphAsSubgraph(): clear and copy a symmetry detection graph, respectively
333
334Conflict Analysis:
335- SCIPgetNResConflictConssApplied(): return the number of generalized resolution conflict constraints added to the problem
336- SCIPaddConsUpgrade(): add constraint upgrades while informing the conflict store
337
338Branching:
339- SCIPhistoryUpdateAncPseudocost(), SCIPvarUpdateAncPseudocost(): update the ancestral pseudo cost fields in variable history
340- SCIPhistoryGetAncPseudocost(), SCIPhistoryGetAncPseudocostCount(), SCIPhistoryIsAncPseudocostEmpty(), SCIPgetVarAncPseudocostVal(), SCIPvarGetAncPseudocost(): retrieve values related to ancestral pseudo cost fields in variable history
341- SCIPgetAvgDPseudocostScore(), SCIPgetVarDPseudocostScore(): compute discounted pseudo cost scores using ancestral pseudo costs
342- SCIPboundchgGetLPSolVal(): access LP solution value in the branching data of a bound change
343
344Cutting Planes:
345- SCIPincludeSepaFlower(): include the new flower cut separator
346- SCIPconsCreateRow(): to create and return the row of a linearly representable constraint
347- SCIPcreateRowKnapsack(), SCIPcreateRowLinear(), SCIPcreateRowLogicor(), SCIPcreateRowSetppc(), SCIPcreateRowVarbound(): create and get the row of linearly representable constraints
348
349Benders' Decomposition:
350- SCIPincludeRelaxBenders(): include the Benders' decomposition relaxator
351- SCIPgetMasterProblemRelaxBenders(): retrieve master problem SCIP instance from the Benders' decomposition relaxator
352- SCIPbendersGetSubproblemMasterVars(), SCIPbendersGetNSubproblemMasterVars(), SCIPbendersGetSubproblemMasterVarsData(): get the linking master variables for each subproblem and details about the number of binary and integer variables
353- SCIPsetBendersObjectiveType(), SCIPbendersGetObjectiveType(): set and get the objective type for the aggregation of the Benders' decompostion subproblems
354- SCIPbenderGetMasterAuxiliaryVar(): get master auxiliary variable
355- SCIPfreeReaderdataCor(), SCIPfreeReaderdataTim(), SCIPfreeReaderdataSto(): free the data for the COR, TIM, and STO readers, respectively; these readers are all used when reading an SMPS instance
356
357IIS:
358- SCIPincludeIISfinder(), SCIPincludeIISfinderBasic(), SCIPsetIISfinderCopy(), SCIPsetIISfinderFree(), SCIPgenerateIIS(), SCIPfindIISfinder(), SCIPgetIISfinders(), SCIPgetNIISfinders(), SCIPsetIISfinderPriority(), SCIPgetIIS()
359- SCIPiisfinderGetName(), SCIPiisfinderGetData(), SCIPiisfinderGetDesc(), SCIPiisfinderGetPriority(), SCIPiisfinderSetData(), SCIPiisfinderGetTime(), SCIPiisfinderInfoMessage(), SCIPiisGetTime(), SCIPiisIsSubscipInfeasible(), SCIPiisIsSubscipIrreducible(), SCIPiisGetNNodes(), SCIPiisSetSubscipInfeasible(), SCIPiisSetSubscipIrreducible(), SCIPiisAddNNodes(), SCIPiisGetRandnumgen(), SCIPiisGetSubscip(), SCIPiisGreedyMakeIrreducible()
360
361Hypergraphs:
362- SCIPhypergraphCreate(), SCIPhypergraphClear(), SCIPhypergraphFree(), SCIPhypergraphAddVertex(), SCIPhypergraphAddEdge(), SCIPhypergraphIsValid(), SCIPhypergraphComputeVerticesEdges(): build and delete hypergraphs
363- SCIPhypergraphComputeOverlaps(), SCIPhypergraphOverlapFind(), SCIPhypergraphIntersectEdges(), SCIPhypergraphComputeOverlapsEdges(), SCIPhypergraphComputeVerticesOverlaps(), SCIPhypergraphOverlapsDisjoint(): handle pair-wise intersections of hyperedges
364- SCIPhypergraphIterInit(), SCIPhypergraphIterClear(), SCIPhypergraphIterStart(), SCIPhypergraphIterValid(), SCIPhypergraphIterNext(), SCIPhypergraphIterBase(), SCIPhypergraphIterAdjacent(), SCIPhypergraphIterMinVertex(), SCIPhypergraphIterOverlap(): iterate over adjacent edges
365- SCIPhypergraphHasVertexEdges(), SCIPhypergraphHasOverlaps(), SCIPhypergraphHasOverlapsEdges(), SCIPhypergraphHasVertexOverlaps(), SCIPhypergraphGetNVertices(), SCIPhypergraphGetNEdges(), SCIPhypergraphBlkmem(), SCIPhypergraphGetNOverlaps(),
366 SCIPhypergraphVertexData(), SCIPhypergraphEdgeData(), SCIPhypergraphEdgeSize(), SCIPhypergraphEdgeVertices(), SCIPhypergraphVertexEdgesFirst(), SCIPhypergraphVertexEdgesBeyond(), SCIPhypergraphVertexEdgesGetAtIndex(), SCIPhypergraphOverlapData(),
367 SCIPhypergraphOverlapSize(), SCIPhypergraphOverlapVertices(), SCIPhypergraphEdgesOverlapsFirst(), SCIPhypergraphEdgesOverlapsBeyond(), SCIPhypergraphEdgesOverlapsGetAtIndex(), SCIPhypergraphOverlapsEdgesFirst(), SCIPhypergraphOverlapsEdgesBeyond(),
368 SCIPhypergraphOverlapsEdgesGetAtIndex(), SCIPhypergraphVertexOverlapsFirst(), SCIPhypergraphVertexOverlapsBeyond(), SCIPhypergraphVertexOverlapsGetAtIndex(): query information about vertices, edges, and overlaps as well as their incidences
369
370Network Matrix:
371- SCIPnetmatdecCreate(), SCIPnetmatdecFree(): create and delete a network matrix decomposition
372- SCIPnetmatdecTryAddCol(), SCIPnetmatdecTryAddRow(): add columns and rows to a matrix decomposition
373- SCIPnetmatdecContainsRow(), SCIPnetmatdecContainsColumn(): check if a matrix decomposition contains the given row or columns
374- SCIPnetmatdecRemoveComponent(): remove connected components from a matrix decomposition
375- SCIPnetmatdecCreateDiGraph(): expose underlying digraph of matrix decomposition
376- SCIPnetmatdecIsMinimal(), SCIPnetmatdecVerifyCycle(): check whether certain invariants of a matrix decomposition are satisfied and used in tests
377
378Solve Statistics:
379- functions to create, modify, and free SCIP_DATATREE objects and to print as JSON or table (see pub_datatree.h and scip_datatree.h)
380- `SCIPcollect*Statistics()`: for every `SCIPprint*Statistics()` in scip_solvingstats.h
381- SCIPprintStatisticsJson(): output a JSON string of the table statistics data
382
383Nonlinearity:
384- SCIPincludeNlpSolverConopt(), SCIPsetLicenseConopt(), SCIPgetSolverNameConopt(), SCIPgetSolverDescConopt(), SCIPisConoptAvailableConopt(): interact with the new CONOPT interface
385- SCIPnlpiOracleGetConstraintLinearCoef(): get a linear coefficient of a variable in a given constraint in the NLP oracle
386- SCIPnlpiOracleGetJacobianColSparsity(): get the column-wise sparsity pattern of the Jacobian from the NLP oracle
387- SCIPnlpiOracleGetObjGradientNnz(): get indices of nonzeroes in the objective gradient
388- `src/objscip/objexprhdlr.h`: C++ interface for expression handlers
389
390Miscellaneous:
391- SCIPsortRealPtrPtr(), ..., SCIPsortDownIntIntIntReal(): new sorting functions
392- `SCIPdebugClearSol()`: clear the debug solution
393- SCIPdialogIsHidden(), SCIPdialogSetHidden(): determine whether a dialog should be hidden in help list
394- SCIPstatusName() to get a string representation of SCIP_STATUS
395- SCIPconshdlrSetNeedsCons(): set whether constraint handler callbacks should also be called if there are no constraints
396- SCIPpropSetTimingmask(): set timing mask of a propagator
397- SCIPhashmapInsertLong(), SCIPhashmapGetImageLong()
398- SCIPvarGetMinAggrCoef(), SCIPvarGetMaxAggrCoef(): get bounds on absolute aggregation coefficients for a loose variable
399- SCIPisVarAggrCoefAcceptable(): check whether bounds on aggregation coefficients would exceed thresholds when using a loose variable in another aggregation
400- SCIPgetNRootIntFixings(): retrieve the number of integer fixings at the root node
401- SCIPcollectMemoryGarbage(): explicitly trigger garbage collection on block memory; before SCIP 10, this was done in SCIPtransformProb()
402
403### Data Structures
404
405\attention changed the numeric values in the \ref SCIP_STATUS enum
406
407- added struct \ref SCIP_RATIONAL for rational number arithmetic
408- added struct \ref SCIP_LPEXACT and many further data structures to support exact solving mode
409- added structs \ref SCIP_IISFINDER, \ref SCIP_IISFINDERDATA, \ref SCIP_IIS
410- added struct \ref SCIP_DATATREE to model generic serializable data; new enum \ref SCIP_DATATREE_VALUETYPE
411
412### Changes in Preprocessor Macros
413
414- `SCIP_EVENTTYPE_TYPECHANGED`: no longer generated if a variable becomes implied integral
415- `SCIP_EVENTTYPE_IMPLTYPECHANGED`: new event that is generated if a variable is declared implied integral, this event is included in the set \ref SCIP_EVENTTYPE_VARCHANGED
416- `SCIP_EVENTTYPE_DUALBOUNDIMPROVED`: new event that is generated whenever the global dual bound is improved
417- `SCIP_EVENTTYPE_GAPUPDATED`: new event mask for catching updates in primal or dual bound
418- `SCIP_PROPTIMING_NONE`: new propagator timing for never calling a propagator
419- `SCIP_HEURTIMING_NONE`: new heuristic timing for never call a primal heuristic
420- `strcasecmp`, `strncasecmp` (Windows builds): removed `#define` from scip/def.h; use SCIPstrcasecmp() and SCIPstrncasecmp() instead
421- \ref SCIP_VERSION_SUB, `SCIP_SUBVERSION`: deprecated
422- `SCIP_VARTYPE_IMPLINT_CHAR`: removed
423- `NO_RAND_R`: removed its use
424
425### SCIP Shell
426
427- `help <command>` now allows to display information on specific command
428- allow to hide certain commands in the help list
429- added the (hidden) command "exit" to exit the shell
430- added command `iis` to create an infeasible subsystem
431- added `write/iis` dialog to write out the infeasible subsystem to file
432- added `display/iis` dialog to write out the infeasible subsystem to console
433
434### Changed parameters
435
436- `heuristics/scheduler/heurtimelimit` removed to avoid indeterministic behavior of scheduler heuristic, uses main time limit instead
437- removed parameters `constraints/orbitope/checkpporbitope`, `constraints/orbitope/sepafullorbitope`, `constraints/orbitope/forceconscopy`, which became superfluous
438- removed `reading/gmsreader/signpower`
439- removed `benders/default/numthreads`: multi-threading support for Benders' decomposition has been temporarily disabled
440- restricted range of parameter `propagating/symmetry/sstleadervartype` to [1,7]; its new default value is 6
441- `propagating/∗/timingmask` extended by setting 0 to disable propagators completely
442- changed defaults of `constraints/components/propfreq` and `constraints/components/maxdepth` to -1 and 2147483647, respectively, to avoid unnecessary calls of components propagator by default
443- changed frequencies for the following heuristics: shifting, gins, crossover, rins, randrounding
444- changed default `maxlpiterquot` to 0.05 for all LP diving heuristics and feaspump, whereas adaptivediving uses 0.15 and rootsoldiving remains at 0.01
445- changed default of `presolving/restartminred` to 0.05
446- changed default of `presolving/immrestartfac` to 0.05
447- removed parameters `propagating/symmetry/{nautymaxncells,nautymaxnnodes}`
448- updated description of parameter `misc/usesymmetry`
449
450### New parameters
451
452- `exact/enable`: enable exact solving mode
453- `exact/improvingsols`: whether only improving exact solutions should be considered
454- `exact/safedbmethod`: method of safe dual bounding
455- `exact/interleavedbstrat`: interleaving strategy between safe dual bounding and exact LP solving
456- `exact/psdualcolselection`: project-and-shift strategy of dual column selection
457- `exact/cutapproxmaxboundval`: maximal absolute bound for which coefficients in exact cuts should be approximated
458- `exact/cutmaxdenom`: maximal denominator of coefficients in approximating exact cuts
459- `exact/allownegslack`: whether negative slack variables in exact Gomory cuts should be used
460- `exact/lpinfo`: whether the exact LP solver should display status messages
461- `constraints/exact{linear,sol}/{sepafreq,propfreq,proptiming,eagerfreq,maxprerounds,delaysepa,delayprop,presoltiming}`: functionality of constraint handlers exactlinear and exactsol
462- `constraints/exactlinear/sortvars`: whether binary variable coefficients should be sorted with decreasing absolute value in exactlinear constraints
463- `constraints/exactlinear/{tightenboundsfreq,propcont,limitdenom,boundmaxdenom}`: propagation of exactlinear constraints
464- `constraints/exactlinear/{maxrounds,maxroundsroot,maxsepacuts,maxsepacutsroot}`: separation of exactlinear constraints
465- `constraints/exactsol/solbufsize`: size of solution buffer in exactsol handler
466- `constraints/exactsol/{minimprove,checkfpfeasibility,checkcontimplint,abortfrac,unfixfrac}`: solution processing in exactsol handler
467- `constraints/exactsol/maxstalls`: maximal number of consecutive unsuccessful reparations in exactsol handler
468- `certificate/filename`, `certificate/maxfilesize`: certificate file
469- `branching/pscost/discountfactor`, `branching/relpscost/discountfactor`: discount factor for ancestral pseudo costs in pscost and relpscost branching rules
470- `branching/collectancpscost`: enable/disable recording of ancestral pseudo costs
471- `branching/relpscost/dynamiclookahead`, `branching/relpscost/dynamiclookaheadquot`, `branching/relpscost/dynamiclookdistribution`, `branching/relpscost/minsamplesize`:
472 configure the dynamic max-lookahead criterion for strong branching: enable flag, fraction threshold, distribution choice, and minimum sample size
473- `constraints/cumulative/maxtime`: limit the time horizon and avoid integer overflow for unbounded variables
474- `constraints/orbitope_full/forceconscopy`, `constraints/orbitope_pp/forceconscopy`: whether non-model constraints of type full orbitope and packing/partitioning orbitope are copied to sub-SCIPs, respectively
475- `propagating/symmetry/handlesignedorbitopes`: whether to apply special symmetry handling techniques for orbitopes whose columns can be (partially) reflected
476- `propagating/symmetry/usesimplesgncomp:` whether symmetry components all of whose variables are simultaneously reflected by a symmetry shall be handled by a special inequality
477- `propagating/symmetry/dispsyminfo`: whether to print information about applied symmetry handling methods
478- `propagating/symmetry/nautymaxlevel`: limit on depth level of Nauty's search tree
479- `presolving/implint/convertintegers`: whether implied integrality should also be detected for enforced integral variables
480- `presolving/implint/columnrowratio`: ratio of rows/columns where the row-wise network matrix detection algorithm is used instead of the column-wise network matrix detection algorithm
481- `presolving/implint/numericslimit`: limit for absolute integral coefficients beyond which the corresponding rows and variables are excluded from implied integrality detection
482- `write/implintlevel`: whether integrality constraints should be written for implied integral variables (regarded by cip, mps, lp, rlp, pip, fzn, and gms writers)
483- `iis/∗`
484- `presolving/milp/enablecliquemerging`: whether to enable clique merging in PaPILO
485- `presolving/milp/maxedgesparallel`: maximal number of edges in the parallel clique merging graph
486- `presolving/milp/maxedgessequential`: maximal number of edges in the sequential clique merging graph
487- `presolving/milp/maxcliquesize`: maximal size of cliques considered for clique merging
488- `presolving/milp/maxgreedycalls`: maximal number of greedy max clique calls in a single thread
489- `heuristics/dks/∗`: heuristic decomposition kernel search
490- `relaxing/benders/continueorig`: whether original problem should continue solving after the completion of the Benders' decomposition algorithm in the Benders' relaxator, if the problem is not solved to optimality
491- `relaxing/benders/nodelimit`: node limit for the Benders' decomposition master problem in the Benders' relaxator; by default the limits from the original SCIP instance are copied
492- `conflict/usegenres`, `conflict/reduction`, `conflict/mbreduction`, `conflict/maxvarsfracres`, `conflict/resfuiplevels`, `conflict/fixandcontinue`, `conflict/maxcoefquot`: control generalized resolution conflict analysis
493- `lp/minsolvedepth`: lower bound on the depth at which LPs are solved
494- `reading/opbreader/maxintsize`: maximal intsize above which an OPB instance is rejected
495- `reading/nlreader/binary`, `reading/nlreader/comments`: adjust writing of `nl` files
496- `nlpi/conopt/priority`: priority of the CONOPT NLP solver
497- `randomization/randomseedshiftmultiplier`: multiplier for the shift set by `randomization/randomseedshift`;
498 the shift is multiplied by (6*`randomseedshiftmultiplier`+1), with the default value for `randomseedshiftmultiplier` set to 10 now;
499 this default value is expected to change with every major release; setting the parameter to 0 restores SCIP 9 behavior
500
501### Other Changes
502
503- removed LP solver interface `lpi_spx1`, which used the old SoPlex interface; renamed `lpi_spx2` to `lpi_spx`
504- removed `cons_abspower.{h,c}`, `cons_quadratic.{h,c}`, and `cons_soc.{h,c}`
505
506Build system
507------------
508
509- new option `SYM=dejavu` to choose Dejavu for computing symmetries
510- changed the default for `TPI` to `tny`
511- added build flag `CHECKSTAGE=auto` to control stage checks in API function calls
512- removed `LPS` options `spx1` and `spx2`, only `LPS=spx` is available to select SoPlex now
513- removed previously deprecated `PARASCIP` option, use `THREADSAFE=false` instead to disable thread-safety
514
515### Makefile
516
517- added build flag `EXACTSOLVE=<true|false|auto>` to turn exact solving mode on, off, or turn it on if all necessary dependencies are available
518- added build flag `MPFR` (default: false) to link with the multiprecision floating-point library, needed when SoPlex is also built with `MPFR=true` for precision boosting in rational solving mode
519- added build flag `CONOPT` (default: false) to link to the CONOPT NLP solver
520- link-time-optimization can be enabled on Linux and macOS with gcc and clang by setting `LTO=true`, default is false
521- revised `SANITIZE` options: removed `SANITIZE=full`, added `SANITIZE=thread`, `SANITIZE=address`, and `SANITIZE=memory` to enable thread, address, and memory sanitizers, respectively, in addition to undefined behavior sanitizer;
522 changed default to `SANITIZE=false`
523- default settings for makefile variables in `make.project` are now only used if variable hasn't been set already
524- the symlink `$(LIBDIR)/include/papilo` should now point to the `src` subdirectory of a PaPILO repository or the headers directory of a PaPILO installation without TBB; pointing to the directory of a PaPILO repository still works, but is deprecated
525- removed option to link TBB library, as this is not used by default when PaPILO has not been built via cmake (use `USRCXXFLAGS=-DPAPILO_TBB USRLDFLAGS=-ltbb` to enable TBB for PaPILO)
526- `LPS=spx` is no longer mapped to `LPS=spx2`, which changes the name of the generated LPI libraries and binaries when using SoPlex
527- removed `OPENSOURCE` flag
528
529### Cmake
530
531- added build flag `EXACTSOLVE=<on|off|auto>` to turn exact solving mode on, off, or turn it on if all necessary dependencies are available
532- added build flag CONOPT (default: off) to link to the CONOPT NLP solver and variable `CONOPT_DIR` to specify the path to CONOPT
533- link-time-optimization can be enabled if supported by compiler by using `-DLTO=on`, default is `off`
534- replaced `SANITIZE_XYZ=(on|off)` options by `SANITIZE=(on|off|thread|address|memory)`;
535 undefined behavior sanitizer is always enabled if not `SANITIZE=off` (the default)
536- increased minimal required cmake version to 3.11
537- scip-config.cmake now defines a variable `SCIP_COMPILE_FLAGS`, which could be used to compile code that builds against SCIP via cmake;
538 currently, this only passes on the sanitizer flags that were used to build `libscip`
539- removed automatic download and build of Bliss during cmake configuration when `-DSYM=(s)bliss`;
540 a Bliss installation from https://github.com/scipopt/bliss can be specified with `-DBLISS_DIR`
541- removed option `LEGACY`
542
543Fixed bugs
544----------
545
546- fixed bug related to unreleased data for the Benders' decomposition framework; when reading an SMPS file and applying
547 Benders' decomposition, data is created that was not correctly released; also, data within the Benders' decomposition
548 framework was not appropriately reset; the data is now released/reset as expected
549- to fix a bug where duplicate cuts from different constraint handlers were not recognized, `SCIPrealHash()` was changed
550 to be stable around shortly representable numbers, and a numerical tolerance for comparing cutting plane efficacy for the aggregation
551 separator is introduced
552- accept fractional continuous implied integral variables in heuristic "completesol"
553- invalidate activity with contradicting infinity contributions
554- avoid integer overflow in cumulative constraints triggered by unbounded variables, see new parameter `constraints/cumulative/maxtime`
555- allow negative update in SCIPconsAddUpgradeLocks() to unlock constraint upgrade
556- fixed memory leaks when LP, MPS, and OPB/WBO readers abort unsuccessfully
557- removed erroneous catching of objective-changed events in intobj separator; instead, the separator no longer executes within probing with changed objective function
558- propagator dualfix no longer fixes variables to infinity to avoid issues when transferring the solution to the original problem
559- track and check bounds on the coefficients that is used for a variable in aggregations of other variables to improve numerical stability
560- corrected the upgrade of full orbitopes to packing/partitioning orbitopes in case the orbitopal symmetries form a proper subgroup of a component's symmetry group
561- aggregate integer variable to not in clique variable in cliquePresolve() of xor constraints to avoid infeasible solutions
562- fixed memory leak in dynamic partition search primal heuristic
563- fixed issue with file existence check in XML parser when SCIP was build with ZLIB support on Windows
564- fixed thread-safety issue when using CppAD and user-defined expression handler
565- fixed typo in `#pragma` directive of redistributed nauty.h
566
567Miscellaneous
568-------------
569
570- removed 4th number in SCIP version; the new format is major.minor.patch
571- changed sassy to the version included in Dejavu
572- updated ampl/mp to v4.0.3
573- the CIP reader now sets an objective offset instead of adding a variable fixed to the objective offset
574- the solchecker tool has been extended for rational values
575- SCIPclassifyConstraintTypesLinear() classify a varbound only when a binary variable is present
576- the internal limit `MAXGENNUMERATOR` has been increased to allow more generators of symmetry groups, especially for problems with many variables
577
578@page RN9 Release notes for SCIP 9
579
580@section RN924 SCIP 9.2.4
581*************************
582
583Fixed bugs
584----------
585
586- fixed bugs with counting changes in presolving of nonlinear and setppc constraints, which resulted in negative values
587- cut off dead end node to correctly track dual bound update during solving
588- no longer construct and flush the LP in SCIPwriteLP() and SCIPwriteMIP() to avoid unexpected side effects
589- apply multi-aggregations before detecting redundancy in propagation of varbound constraints to keep bound implications
590- skip bound changes when cutting off a branch-and-bound subtree
591- correct detection of doublelex matrices and their handling via orbitope constraints
592- skip attempting to free transformed problem if SCIPtransformProb() failed with an error in SCIPpresolve(), since freeing
593 the transformed problem is likely to fail as well
594- fixed memory leak in primal heuristic "scheduler" when there is a restart
595- fixed stopping when there is a candidate with a change in the LP bound for both children in strong branching of branch_fullstrong
596- fixed detection of sinks in varbound detection from cumulative constraints
597- fixed memory allocation when adding strong SBCs for enclosing orbit of symmetric subgroups (disabled by default)
598- free paths of branch-and-bound tree iteratively instead of recursively to avoid stack overflow
599- fixed rare invalid memory access when collecting symmetry information for indicator constraints
600- recompute activity bounds before checking infeasibility and redundancy in linear constraint presolving
601- skip integer variables with fractional value in reference solution when finding additional variable fixings in ALNS heuristic
602- fix call of SCIPaddExprsViolScoreNonlinear() with constant expressions (no variables)
603- fixed bug with concurrent solve w.r.t. variable indices that led to segmentation faults and fix termination test
604- adjust further bounds before checking feasibility in SCIPvarAddVlb() and SCIPvarAddVub() to detect integrality cutoff
605- fixed that the last fixed binary variable was not set after binary variables were created for linking constraints
606- fixed that when a linking constraint with only one binary variable was added during solving, it was not disabled
607- fixed set_search_limits call when using SYM=sbliss with an old patched Bliss version
608
609Build system
610------------
611
612### CMake
613
614- added workaround for recent ctest versions rejecting -R -default as arguments
615
616### Makefile
617
618- added experimental target to run cppcheck
619
620
621@section RN923 SCIP 9.2.3
622*************************
623
624Fixed bugs
625----------
626
627- avoid hashmap key error in removal of doubletons and singletons in dual presolve of setppc constraints by skipping tripleton locks
628- when upgrading to xor constraint require parity variable to be enforced integral
629- provide the depth of the applied effective root with SCIPtreeGetEffectiveRootDepth() to avert invalid globalization of constraint set changes
630- disable objective limit during lexicographic dual minimization to preserve feasibility status
631- declare infinite bound inference infeasible in SCIPinferVarLbCons() and SCIPinferVarUbCons() to maintain correct loose LP values
632- fixed update of consssorted flags in a variable expressions data when adding an additional constraint using this variable
633- corrected computation of number of variables affected by symmetry
634- fixed computation of symmetry group size
635- correct comparison conditions in checkRedundancySide() of cons_varbound.c to ensure pair redundancy
636- also for the initial LP solve force acceptance of Farkas row in SCIPlpGetDualfarkas() if all other means for obtaining a reliable Farkas proof have failed
637- avoid overwriting the cutoff flag in tightenCoefs(), preprocessConstraintPairs(), and applyFixings() of cons_varbound.c to reject infeasible solutions
638- fix memory leak in CppAD interface w.r.t. user expressions
639- adjust bound before checking feasibility in SCIPvarAddVlb() and SCIPvarAddVub() to detect integrality cutoff
640- choose incumbent solution as reference in varFixingsRins() and varFixingsDins() of ALNS heuristic to ensure integrality
641- consider variable type in selectInitialVariableRandomly() of GINS heuristic to count integral variables
642- correct fractionality sign when standardizing bounds in simplifyInequalities() of cons_linear.c
643
644Build system
645------------
646
647### CMake
648
649- disable setting the boolean variable MACOSX_RPATH to a string value to actually enable @rpath usage
650- define SOPLEX_NEEDED and ZIMPL_NEEDED to avoid syntax error in configuration file
651
652Miscellaneous
653-------------
654
655- when writing a problem with non-generic names, warnings are printed if variable or constraint names are not unique
656
657@section RN922 SCIP 9.2.2
658*************************
659
660Fixed bugs
661----------
662
663- fixed definition of slack variables of >= constraints and ranged rows in LP interface to Gurobi
664- free memory leaking singleton arrays for ignored variables in SCIPapplyHeurDualval()
665- use epsilon tolerance for bound implications of dual substitutions in dualPresolve() of cons_linear
666- fixed timeouts due to race conditions when using TPI=omp
667- fixed issues with indexing of concurrent solvers when a solver finishes (because SCIP is too fast) before others have been created when using TPI=tny
668- respect fixing if variable is declared binary in bounds section of mps file
669- fixed reading mps files with short row and column names and some fixed-form mps files with spaces in row names
670- force local bounds to adjusted value when fixing variable
671- adds missing NULL check for Benders' subproblems in feasalt cut
672- apply objective scale to pseudoboolean non-linear terms
673- impose pseudoboolean cost bound without intermediate casting
674- flatten aggregation graph before finishing presolve to accelerate evaluating an empty solution
675- respect fixed resultants in binvarGetActiveProbindex() of branch_relpscost
676- drop fixed resultants when copying pseudoboolean constraint
677- correct matrix entry when resolving aggregated variables in checkSystemGF2() of cons_xor
678- corrected symmetry detection graph of cons_and, cons_or, cons_xor, and cons_indicator
679- correct redundancy filter in consdataCreateRedundant() of cons_bounddisjunction
680- replaced unreliable comparison of node pointers by node numbers in prop_genvbounds
681- allocate memory for all integral variables in applyCliqueFixings() of heur_clique
682- fix conflict resolution for one particular case in cons_indicator
683- make interface to nauty thread safe
684- use relative epsilon tolerance to check Farkas row in SCIPlpGetDualfarkas() to avoid invalid cutoff
685- fixed bug with SOS2 constraints of size that avoided a correct enforcing
686
687Build system
688------------
689
690### Cmake
691
692- allow to set HIGHS_DIR via -D flag as well
693- reenable building and testing of SCFLP example
694- fixed that compiler flags for sanitizers were not used for compiling objects of SCIP library
695- prioritize local includes for unittests, examples, and applications to link the intended SCIP version
696- fix detection of Gurobi 11 and 12 libs on Linux
697
698### Makefile
699
700- fix use of SANITIZE=full for debug builds with GCC on Linux: removed -fsanitize=leak because it cannot be used together with -fsanitize=address
701- fix that make install SHARED=true missed to install libscipbase
702
703@section RN921 SCIP 9.2.1
704*************************
705
706Fixed bugs
707----------
708
709- apply same feasibility definition in PaPILO as in SCIP to avoid numerical inconsistencies
710- check variable cancellation in SCIPvarAddVlb() and SCIPvarAddVub() to avert wrong infeasibility
711- SCIPfreeReoptSolve() now also clears partial solutions
712- fixed bug in calculation of "fractionality score" for spatial branching candidates in cons_nonlinear
713- fixed bug with installing symmetry dialog in sub-SCIPs
714- added copy callbacks for presolvers dualagg and redvub, branching rules lookahead and cloud, primal heuristics dualval and repair, propagator nlobbt, and separators gauge and convexproj
715- respect maximal separation rounds setting by running remaining delayed separators in last round
716- replace terms consistently in applyFixings() of cons_linear to handle infinite aggregations
717
718Build system
719------------
720
721### Cmake
722
723- fix SCIP Optimization Suite build with -DSYM=(s)bliss and bliss being downloaded and built during configuration by cmake
724- fix use of a bliss cmake installation (from https://github.com/scipopt/bliss) specified via BLISS_DIR if -DSYM=(s)bliss
725
726### Makefile
727
728- the check/solchecker build can now use also GMP installations by Homebrew on macOS/arm64
729
730Miscellaneous
731-------------
732
733- the output precision for writing CIP/OPB files has been increased at several places for nonlinear constraints
734- the solchecker tool now also supports SCIP solutions without unknown or infinite values
735- generate an error if the same linear constraint is used by several indicator constraints
736
737@section RN920 SCIP 9.2.0
738*************************
739
740Features
741--------
742
743- added check for absolute and relative gap limits at end of synchronization in concurrent solving mode, in order to terminate earlier;
744 note that if the concurrent solve is stopped due to a gap limit, the "winner" solver will have an interrupted solution status and
745 its primal and dual bounds may not be the best possible ones (use SCIPgetConcurrentPrimalbound() and SCIPgetConcurrentDualbound() instead)
746- parse pseudoboolean constraint from CIP format (and add linear-"and"-reformulation)
747
748
749Performance improvements
750------------------------
751
752- reoptimization now also stores propagations from propagators if reoptimization/saveconsprop is enabled;
753 the parameter will be renamed to reoptimization/saveprop in a next major release
754- imposed stricter limits on the size of disconnected components which may be solved separately during presolve
755- use individual slack variables also for constraints indicated by a common binary variable to use tighter formulation by default
756- when computing symmetries using Nauty, iteration limits are now available to terminate Nauty early
757
758Fixed bugs
759----------
760
761- Benders' decomposition subproblems that are always infeasible are correctly handled and the complete problem is declared infeasible
762- skip linear constraint propagation if the residual activity bound cancels the side precision
763- correct bound tracking to make the evaluation of primal-dual-integrals work
764- skip aggregations on fixed variables in milp presolver to avoid errors for earlier versions of PaPILO
765- use indices of negation counterparts and accept fixings when ordering and-resultants of pseudoboolean constraints
766- update locks on model variables before removing pseudoboolean constraints in presolve
767- reformulate soft pseudoboolean constraints with linear constraints if the indicator decomposition is disabled
768- add workaround for recent HiGHS versions resetting the model status when changing the presolve option after a solve
769- avoid hashmap key error in removal of doubletons and singletons in dual presolve of setppc constraints by updating constraints and corresponding hashmaps after each multi-aggregation
770
771Interface changes
772-----------------
773
774### New API functions
775
776- added SCIPtpiIsAvailable() to check whether a working task processing interface is available (TPI != none)
777- added SCIPtpiGetLibraryName() and SCIPtpiGetLibraryDesc()
778- SCIPdelCons() can now also be called in SCIP_STAGE_TRANSFORMED
779- added SCIPstrcasecmp() and SCIPstrncasecmp() for case-insensitive string comparison
780- added SCIPbendersSubproblemsAreInfeasible() to return if at least one subproblem has been identified as being
781 infeasible prior to performing any variable fixing
782
783### New parameters
784
785- presolving/milp/abortfacexhaustive to control the abort threshold for exhaustive presolving in PAPILO
786- presolving/milp/abortfacmedium to control the abort threshold for medium presolving in PAPILO
787- presolving/milp/abortfacfast to control the abort threshold for fast presolving in PAPILO
788- constraints/components/maxcompweight to determine the maximum weight for a disconnected component that is solved during presolve
789- constraints/components/contfactor counts the contributing factor of a single continuous variables with respect to the weight limit specified by constraints/components/maxcompweight
790- constraints/indicator/usesameslackvar to decide whether the same slack variable should be used for indicators constraints with common binary variable
791- propagating/symmetry/nautymaxncells and propagating/symmetry/nautymaxnnodes to set iteration limits in Nauty (only available if build with SYM=nauty or SYM=snauty)
792
793### Changed parameters
794
795- presolving/milp/threads is now only available if PaPILO is built with TBB
796- changed default of numerics/recomputefac to 1e+6 to aim at relative epsilon precision
797
798Build system
799------------
800
801### Cmake
802
803- attempted to fix detection of CPLEX library on macOS and Windows systems
804
805Testing
806-------
807
808- added parameter FILTER for tests/Makefile to run only tests with a specific pattern (ctest with -R FILTER)
809
810Miscellaneous
811-------------
812
813- adjusted Gurobi interface for Gurobi 12
814- reordered events: BESTSOLFOUND/NODE_FEASIBLE are now processed before the nodes are cut off and before NODE_DELETE events are processed
815- removed `#define` of `getcwd` (in case of Windows builds) in scip/def.h
816- the `#define` of `strcasecmp` and `strncasecmp` (in case of Windows builds) in scip/def.h will be removed with SCIP 10;
817 use `SCIPstr(n)casecmp()` (scip/pub_misc.h) instead
818
819@section RN911 SCIP 9.1.1
820*************************
821
822Fixed bugs
823----------
824
825- fix bug in separator aggregation that caused incorrect terminations when for an integral objective the objective limit was set to a fractional value
826- fix bug in memory management of doublelex matrices where indices were set beyond array bounds
827- store relevance flags in consdataTightenCoefs() of cons_linear.c to avoid dropping variables unintentionally due to numerical changes
828- fix possible segmentation fault when resetting local and global bounds of original variables after abnormal termination
829- compare coefficient scales to detect parallelism to avoid integral relaxations in detectRedundantConstraints() of cons_linear.c
830- remove coefficient information from linear constraint hashes in order to compare keys with tolerances
831- fixed NULL pointer dereference in SCIPtpiGetNumThreads() of TinyCThread interface if called before SCIPtpiInit(); now returns 0 in this case
832- calling SCIPsolveConcurrent() when SCIP was compiled without a TPI now results in a plugin-not-found error
833- fixed LPI status functions of lpi_cpx if the barrier is called
834- check cuts for redundancy after scaling in cutTightenCoefs() and cutTightenCoefsQuad() of cuts.c
835- maintain definition of artificial integral variables in xor constraints to avoid invalidation of conflict constraints
836- free childless nodes only after the deactivation of the old focus path in treeSwitchPath() of tree.c
837- only normalize rows for column norm evaluations in shift-and-propagate heuristic to avoid unscaled violations
838- expression handler for absolute value computes now also a cut when one of the bounds is infinite as long as the sign of the argument is known
839- check for more data to be freed before modifying nonlinear constraints in SCIPaddExprNonlinear()
840- allow for terms with zero coefficients when checking sum in SCIPexprCheckQuadratic()
841- do not abort writing of constraints to lp/pip files (and forget to free buffer memory) when encountering unsupported nonlinear constraint
842- fixed that strings with names and descriptions of the LPI's were not null-terminated
843- fixed decision on when to enforce nonlinear constraints on relaxation solutions if integer variables are present
844- fixed reading of very long lines (>78000 characters) in FlatZinc reader
845- fixed write of strings with at least 1024 characters when compiling with MSVS 2015 (14.0) or later (still an issue with earlier MSVS, which will not be fixed)
846- keep epsilon coefficients in applyFixings() of cons_linear.c until multiples are merged to avoid loss of relevant contributions
847- fixed that some variable type changes were not accounted correctly in presolve of linear constraints
848- fix constraint sorting in setpp-orbitope upgrade in symmetry code
849- fixed that SCIPnodeGetConsProps() also counted bound changes from propagators
850- use original and-constraints of an untransformed pseudoboolean constraint when copying original problems to avert segmentation faults
851- sort and-constraints of a pseudoboolean constraint with respect to the resultant problem indices to avoid shuffled copies
852- treat pseudoboolean constraints as nonlinear constraints in OPB reader to prevent duplication mistakes
853
854Examples and applications
855-------------------------
856
857- in example Binpacking implement Farkas pricing for packings because branching can actually lead to infeasible restricted master LPs
858
859Testing
860-------
861
862- allow unknown parameters to let tests pass if only optional dependencies are missing
863
864Build system
865------------
866
867### Cmake
868
869- fixed compilation and linking with HiGHS; to use HiGHS, cmake now requires to specify the directory containing the `highs-config.cmake` file via `-DHIGHS_DIR`
870- extended identification of Ipopt library on Windows to also look for ipopt.dll.lib, as this is used since Ipopt 3.13.0 (2019)
871
872
873@section RN910 SCIP 9.1.0
874*************************
875
876Features
877--------
878
879- added constraint handler that checks and enforces bounds on original variables which have been fixed or aggregated in the transformed problem
880- allow for implicit integer variables in xor constraints
881- implemented symmetry detection callbacks for pseudoboolean constraints
882- added option to consider enforcement of nonlinear constraints (including spatial branching) before integrality has been enforced
883
884Fixed bugs
885----------
886
887- make sure that, in dual proof analysis, upgraded constraints can report their number of variables
888- check knapsack constraints as linear constraints to avoid violations based on implicit integrality
889- make sure that symmetry detection callbacks report success
890- make arithmetics in cuts.c more robust to avoid invalid scg cuts due to numerical rounding sensitivity
891- allow to copy pseudoboolean constraints even if no AND constraints are present in order to avoid a warning
892- set value for variable that is introduced to reformulate nonlinear objective function when reading .nl files with initial solution
893- fixed that multi-aggregations from PaPILO were accepted without ensuring that their bounds hold
894
895Examples and applications
896-------------------------
897
898- TSP: removed `gzstream.h/hpp` and parse gzipped files differently
899
900Interface changes
901-----------------
902
903### New callbacks
904
905- SCIP_DECL_NLHDLRENFO takes additional parameter branchcandonly to indicate whether only branching candidates should be registered,
906 without looking for cuts or boundchanges
907
908### New API functions
909
910- new function SCIPgetExprActivityNonlinear() to get activity of nonlinear constraint
911- new function SCIPincludeConshdlrFixedvar() to include new constraint handler that checks bounds on fixed original variables
912
913### New parameters
914
915- limits/primal to terminate the solve as soon as the primal bound is at least as good as this value, same as limits/objectivestop (deprecated)
916- limits/dual to terminate the solve as soon as the dual bound is at least as good as this value
917- presolving/milp/internalmaxrounds to control the maximal rounds for each call of the milp presolver (PaPILO)
918- constraints/fixedvar/∗ to control the new constraint handler that checks bounds on fixed original variables
919- constraints/nonlinear/branching/mixfractional to specify minimal average pseudo cost count for discrete variables
920 at which to start considering spatial branching before branching on fractional integer variables
921 (default infinity means that integrality is always enforced before nonlinear constraints)
922- constraints/nonlinear/branching/fracweight to specify weight of fractionality of integer variables in spatial branching
923
924### New data structures
925
926- enum SCIP_Status has been extended by SCIP_STATUS_PRIMALLIMIT and SCIP_STATUS_DUALLIMIT to indicate termination at limits/primal and limits/dual respectively
927
928Build system
929------------
930- changed the default symmetry computation package from sassy+bliss to sassy+nauty
931- bliss source is no longer included in the source tree, but can be linked as external library (https://github.com/ds4dm/Bliss)
932- cmake now automatically downloads and installs the latest release version of SoPlex from GitHub if it is not found directly
933
934Miscellaneous
935-------------
936
937- updated nauty to version 2.8.8
938
939
940@section RN901 SCIP 9.0.1
941*************************
942
943Fixed bugs
944----------
945
946- fixed bug in detection of double lex matrices due to wrong memory allocation
947- fixed bug where parameter `limits/objectivestop` was copied to subscips in plugins which have different objectives
948- in count mode respect empty solution when problem is solved in presolving
949- fixed that SCIP may have tried to pass a negative random seed to an LP solver
950- fixed bug where conflict analysis in strong branching tried to analyze an unsuccessful LP solve
951- enable parameter limits/restarts by allowing to reach the restart limit in restartAllowed()
952- handle normalizing linear constraints in presolving with more caution to avoid numerical difficulties for integer variables with large coefficients
953- use quad precision to calculate residual activity bounds to reduce numerical errors for large variable bounds in cons_linear.c
954- in SCIPsolveProbingLP() when objective has been changed do not return cutoff due to exceeding the cutoff bound
955- set probing LP to be a relaxation only when objective has not been changed
956- declare contradicting infinities in getMinActivity() and getMaxActivity() as non-tight
957- reject farkas solution with large values to bound magnification of errors in SCIPgetFarkasProof()
958- if all variables are fixed, apply relative feasibility tolerance to avoid invalid infeasibility in applyFixings() of cons_linear.c
959- delete empty redundant knapsack and linear constraints after cleanup in SCIPmatrixCreate()
960- cleanup first constraints in SCIPcleanupConssVarbound(), SCIPcleanupConssSetppc(), and SCIPcleanupConssLogicor()
961- symmetry handling methods have not been added immediately after computing symmetries, which has been fixed
962- delay checking node limits after presolving to correctly continue up to the exceeding main node
963- simplified the objective sense assumption for the subproblems in the Lagromory separator
964- update effective root depth iteratively to avoid trapping it at a single child node
965- fixed that dualsparsify presolver did not always check do-not-multiaggregate variable flag
966- fixed bug in computing elements of orbits in orbital reduction
967
968Miscellaneous
969-------------
970
971- redefine isrelax to istight in cons_linear.c
972
973Build system
974------------
975
976### Cmake
977
978- A file cmake.log containing the changed options is written to the cmake build directory.
979- removed replacement of the settings of RelWithDebInfo
980- add compile option -ffp-contract=off or /fp:precise to enhance reproducibility across different systems
981
982### Makefile
983
984- add flags -ffp-contract=off and /fp:precise to enhance reproducibility across different systems
985
986Interface changes
987-----------------
988
989### New parameters
990
991- added parameter "propagating/symmetry/symtiming" to determine when symmetries are computed and handled
992
993### Changed parameters
994
995- Disabled "propagating/symmetry/addconsstiming" since it is not used anymore.
996- Disabled "propagating/symmetry/ofsymcomptiming" since it is not used anymore.
997
998@section RN900 SCIP 9.0.0
999*************************
1000
1001Features
1002--------
1003
1004- added simplification of abs(x)^n to x^n when n is even (simplify rule POW12)
1005- in expression simplification, added possibility to expand power of sum with exponents larger than 2 (simplify rule POW7)
1006- in expression simplification, added possibility to expand products with sums as factor when there are more than two factors (simplify rule SP12b)
1007- in expression simplification, added possibility to allow expanding power of products with fractional exponent (simplify rule POW5a)
1008- can now build with Lapack (used for solving nonlinear problems) explicitly; if IPOPT is used, then Lapack is accessed through it;
1009 an interface to Lapack is available in lapack_calls.h
1010- added support for logical constraints in binary variables and basic logical operators (and, or, not, equal) to AMPL .nl reader
1011- indicator constraints now use the same slack variable for the linear constraints if binary variables are used multiple times
1012 for indicator constraints
1013- new diving heuristic indicatordiving that focuses on indicator variables which control semicontinuous variables
1014- updated statistics on NLP relaxation; information on convexity of NLP has been added
1015- added new bandit method (EXP.3-IX) that is the new default of the ALNS heuristic
1016- added dialog to display recognized permutation symmetries ("display symmetry")
1017- The symmetry detection code has been completely restructured. Instead of completely encoding symmetry information in
1018 prop_symmetry.c, there is a new callback for constraint handlers, which returns symmetry relevant information by
1019 encoding a constraint as a node and edge colored graph. This way, also custom constraint handlers can provide
1020 symmetry information.
1021- added special presolving step for logicor and set covering/packing for constraints with two variables and one independent variable
1022- increased the depth field of the tree structure from 16 to 30 bits and the max depth of the search tree from 65534 to 1073741822
1023- added new cut selector plugin called cutsel_ensemble. Performs a superset of hybrid cutsel. Implements new filtering methods and scoring options.
1024- added new branching rule based on Gomory mixed-integer cuts
1025- added new branching score to the reliability pseudo-cost branching rule
1026- added new cut selector plugin called cutsel_dynamic. Performs a superset of hybrid cutsel. Implements new filtering methods and scoring options.
1027- added monoidal strengthening to intersection cut generation of nlhdlr_quadratic
1028- extended heuristic dps to run after processing the node and to use strict limits for the reoptimization step
1029- extended obbt propagator to handle variables of the linear constraints corresponding to indicator constraints
1030- added new heuristic heur_scheduler that models the selection of LNS and diving heuristics as a multi-armed bandit problem
1031- added nonlinear handler for signomial expressions: adds cuts based on a difference of convex functions representation
1032- Delayed separators are now called if no other cuts have been found. Previously, such separators were only called near stalling or when the separation rounds limit was reached.
1033- added a new separator sepa_lagromory to generate Lagromory cuts in a relax-and-cut framework, i.e., GMI cuts generated
1034 at different bases that are explored in the process of solving the Lagrangian dual problem at a node. This separator
1035 is OFF by default.
1036- when parsing nonlinear constraints from CIP files, the * after the number in a term is now optional if followed by a variable,
1037 i.e., instead of 3*<x>*<y>, now also 3<x>*<y> can be read, but 3<x><y> is not supported;
1038 this allows to read some CIP files that were written with SCIP < 8
1039- when running bliss, we now limit the number of actually created generators and not the ones considered by bliss
1040
1041Performance improvements
1042------------------------
1043
1044- Variable conflict-based addition of Schreier-Sims cuts for symmetry handling in prop_symmetry.c does no longer use
1045 an expensive explicit conflict graph construction.
1046- Only run propagation of indicator constraints if relevant variables have changed.
1047- Propagation of indicator constraints propagates maximal activity of linear constraint to upper bound of slack variable.
1048- Added initialization of LP relaxation for SOC constraints.
1049- Avoided some numerical issues when separating SOC constraints.
1050- If differentation of convex expression fails in convex nlhdlr, then a perturbed point is tried.
1051- Use sassy/bliss as default symmetry computation package.
1052- No longer linearize indicator constraints in undercover heuristic by default.
1053- Deactivate pre-root heuristic zeroobj in undercover heuristic.
1054- Added new branching score tiebreaker for reliability pseudo-cost branching rule
1055- Try nearest bound if zero solution value is out of bounds in heuristic trivial.
1056
1057Interface changes
1058-----------------
1059
1060### New and changed callbacks
1061
1062- Added solution linearization callback for nonlinear handlers.
1063 The nonlinear handler may use this callback to add tight cuts that use the given solution as reference point to the cutpool.
1064 The callback is called if option constraints/nonlinear/linearizeheursol is enabled.
1065- The callback for copying problem data SCIP_DECL_PROBCOPY() now has a parameter "original" indicating whether the original
1066 or transformed problem should be copied. Similarly, SCIPprobCopy() in prob.h/c has such a parameter.
1067- Added CONSGETPERMSYMGRAPH and CONSGETSIGNEDPERMSYMGRAPH callback for constraint handlers, which provides symmetry information about constraints to SCIP.
1068
1069### Deleted and changed API functions
1070
1071- SCIPtpiInitLock(), SCIPtpiDestroyLock(), SCIPtpiInitCondition(), SCIPtpiDestroyCondition() now take a double
1072 pointer to SCIP_LOCK/SCIP_CONDITION, respectively.
1073- Renamed SCIPtpiSumbitJob() to SCIPtpiSubmitJob().
1074- SCIPcreateConsIndicatorLinCons(), SCIPcreateConsIndicatorGenericLinCons() do not allow binvar to be NULL anymore
1075- Replaced SCIPnlrowSetCurvature() by SCIPsetNlRowCurvature().
1076- SCIPsnprintf() now returns the required string length in case reallocation is necessary.
1077- SCIPcomputeCoverUndercover() receives three more arguments which nonlinearities to cover
1078- removed definition of SQRT
1079- SCIPincludeObjConshdlr(), SCIPincludeConshdlr(), SCIPconshdlrCreate() receive two more arguments for the
1080 conshdlr callbacks CONSGETPERMSYMGRAPH and CONSGETSIGNEDPERMSYMGRAPH
1081- removed SYM_VARTYPE, SYM_OPTYPE, SYM_CONSTTYPE, SYM_RHSTYPE, SYM_MATRIXDATA
1082- new parameter issigned for SCIPcomputeOrbitsSym()
1083- new parameter symtype for SCIPcomputeComponentsSym()
1084- new parameter symtype and permvardomaincenter for SCIPlexicographicReductionAddPermutation()
1085- replaced parameters matrixdata and exprdata of SYMcomputeSymmetryGenerators() by graph
1086
1087### New API functions
1088
1089- new functions for interfacing with Lapack: SCIPlapackIsAvailable(), SCIPlapackIsAvailable(), SCIPlapackComputeEigenvalues(), and SCIPlapackSolveLinearEquations
1090 These functions should be used instead of SCIPisIpoptAvailableIpopt(), SCIPcallLapackDsyevIpopt(), and
1091 SCIPsolveLinearEquationsIpopt() in the context of computing eigenvalues or solving linear equations.
1092 If IPOPT is available, the calls will be passed on to Ipopt's interface to Lapack.
1093- SCIPmultiplyBySumExprSum(), SCIPpowerExprSum()
1094- SCIPsetParam()
1095- SCIPgetPrimalDualIntegral() returns the primal dual integral stored in the statistics
1096- new functions SCIPcreateConsIndicatorLinConsPure() and SCIPcreateConsIndicatorGenericLinConsPure() that
1097 create indicator constraints from a linear constraint without a slack variable
1098- SCIPgetNLPNlRowsStat() to retrieve counts on linear, convex, and nonconvex rows in NLP
1099- SCIPnlhdlrSetSollinearize(), SCIPnlhdlrHasSollinearize()
1100- SCIPbendersGetNLPParam()
1101- new API functions SCIPlexicographicReductionGetStatistics(), SCIPlexicographicReductionPrintStatistics(),
1102 SCIPlexicographicReductionPropagate(), SCIPlexicographicReductionAddPermutation(), SCIPlexicographicReductionReset(),
1103 SCIPlexicographicReductionFree(), SCIPincludeLexicographicReduction(), for lexicographic reduction.
1104- new API functions SCIPorbitopalReductionGetStatistics(), SCIPorbitopalReductionPrintStatistics(),
1105 SCIPorbitopalReductionPropagate(), SCIPorbitopalReductionAddOrbitope(), SCIPorbitopalReductionReset(),
1106 SCIPorbitopalReductionFree(), SCIPincludeOrbitopalReduction(), SCIPorbitopalReductionGetDefaultColumnOrdering(),
1107 for orbitopal fixing.
1108- new API functions SCIPorbitalReductionGetStatistics(), SCIPorbitalReductionPrintStatistics(),
1109 SCIPorbitalReductionPropagate(), SCIPorbitalReductionAddComponent(), SCIPorbitalReductionReset(),
1110 SCIPorbitalReductionFree(), SCIPincludeOrbitalReduction(), for orbital fixing.
1111- new API functions SCIPgetShadowTreeEventHandlerExecutionTime(), SCIPshadowTreeGetShadowNodeFromNodeNumber(),
1112 SCIPshadowTreeGetShadowNode(), SCIPgetShadowTree(), SCIPactivateShadowTree(), SCIPincludeEventHdlrShadowTree(),
1113 for managing a copy of the branch-and-bound tree for symmetry handling purposes.
1114- SCIPdotWriteOpening(), SCIPdotWriteNode(), SCIPdotWriteArc(), SCIPdotWriteClosing()
1115- SCIPincludeCutselEnsemble(), SCIPselectCutsEnsemble() to include cutsel_ensemble or use the selection algorithm
1116- SCIPincludeBranchruleGomory() includes new gomory cut based branching rule
1117- SCIPgetVarAvgGMIScore(), SCIPincVarGMISumScore(), SCIPgetVarLastGMIScore(), SCIPsetVarLastGMIScore() set historical values used by SCIP's default branching rule
1118- SCIPincludeNlhdlrSignomial() includes the signomial nonlinear handler
1119- SCIPgetExprMonomialData() returns a monomial representation of a product expression
1120- SCIPestimateRoot() computes estimators for roots with exponent in [0,1]
1121- SCIPincludeCutselDynamic(), SCIPselectCutsDynamic() to include cutsel_dynamic or use the selection algorithm
1122- SCIPincludeSepaLagromory() to include the new Lagromory separator
1123- SCIPconsCompCheck() to compare two constraints based on their check priority
1124- SCIPgetConsPermsymGraph() and SCIPgetConsSignedPermsymGraph() to access the (signed) permutation symmetry detection graph of a constraint
1125- SCIPsetConshdlrGetPermsymGraph() and SCIPsetConshdlrGetSignedPermsymGraph() to set the (signed) permutation symmetry detection graph of a constraint
1126- SCIPconshdlrSupportsPermsymDetection() and SCIPconshdlrSupportsSignedPermsymDetection() to access whether a conshdlr supports detection of (signed) permutation symmetries
1127- new API functions for creating and manipulating a symmetry detection graph: SCIPcreateSymgraph(), SCIPfreeSymgraph(), SCIPcopySymgraph(), SCIPextendPermsymDetectionGraphLinear(),
1128 SCIPaddSymgraphVarAggregation(), SCIPaddSymgraphOpnode(), SCIPaddSymgraphValnode(), SCIPaddSymgraphConsnode(), SCIPgetSymgraphVarnodeidx(), SCIPgetSymgraphNegatedVarnodeidx(),
1129 SCIPupdateSymgraphLhs(), SCIPupdateSymgraphRhs(), SCIPfixSymgraphVarnode(), SCIPaddSymgraphEdge(), SCIPcomputeSymgraphColors(), SCIPgetSymgraphSymtype(), SCIPgetSymgraphVars(),
1130 SCIPgetSymgraphNVars(), SCIPgetSymgraphNConsnodes(), SCIPgetSymgraphNNodes(), SCIPgetSymgraphNEdges(), SCIPgetSymgraphEdgeFirst(), SCIPgetSymgraphEdgeSecond(),
1131 SCIPgetSymgraphVarnodeColor(), SCIPgetSymgraphNodeType(), SCIPgetSymgraphNodeColor(), SCIPisSymgraphEdgeColored(), SCIPgetSymgraphEdgeColor(), SCIPgetSymgraphNVarcolors(),
1132 SCIPhasGraphUniqueEdgetype(), SCIPcreateSymgraphConsnodeperm(), SCIPgetSymgraphConsnodeperm(), SCIPfreeSymgraphConsnodeperm(),
1133 SCIPgetSymActiveVariables(), SCIPfreeSymDataExpr(), SCIPgetSymExprdataNConstants(), SCIPgetSymExprdataConstants(), SCIPgetCoefSymData(),
1134 SCIPcreateSymOpNodeType(), SCIPgetSymOpNodeType()
1135- SCIPexprhdlrSetGetSymdata(), SCIPexprhdlrHasGetSymData(), SCIPgetSymDataExpr(), SCIPcallExprGetSymData() to access symmetry data of expressions
1136- SYMcheckGraphsAreIdentical() to check whether two symmetry detection graphs are identical
1137- new functions SYMbuildSassyGraph(), SYMbuildSassyGraphCheck()
1138- new type SYM_GRAPH
1139- new definitions SCIP_DECL_CONSGETPERMSYMGRAPH, SCIP_DECL_EXPRGETSYMDATA
1140- new member SYM_NODETYPE_CONS in SYM_NODETYPE enum
1141- new members SYM_CONSOPTYPE_SUM, SYM_CONSOPTYPE_SLACK, SYM_CONSOPTYPE_COEF, SYM_CONSOPTYPE_RHS, SYM_CONSOPTYPE_LAST in SYM_CONSOPTYPE enum
1142- new defintion SCIP_DECL_EXPRGETSYMDATA
1143- new function SCIPdetectSingleOrDoubleLexMatrices()
1144
1145### Command line interface
1146
1147- Added optional parameter -i when calling SCIP in AMPL-mode (-AMPL parameter).
1148 If -i is specified, a SCIP shell is started where normally SCIPsolve() would be called.
1149
1150### Interfaces to external software
1151
1152- added interface to nauty/traces for symmetry computation
1153- added interface to sassy, a preprocessor for symmetry computation
1154- The directory src/sassy contains the source code of sassy.
1155- Added interface to Lapack (used for solving nonlinear problems).
1156- The AMPL interface now supports parameters specified in AMPL command scripts via option scip_options.
1157 The value of scip_options is expected to be a sequence of parameter names and values, separated by a space, e.g.,
1158 `option scip_options 'limits/time 10 display/verblevel 1';`.
1159 String values should not be quoted and spaces in string values are not supported.
1160- sassy can be used now as preprocessor for nauty/traces
1161- The solution status codes written to AMPL solution files now match those from https://mp.ampl.com/details.html#_CPPv4N2mp3sol6StatusE.
1162
1163### Changed parameters
1164
1165- change default value of parameter separating/filtercutpoolrel to FALSE
1166- Shrunk range of parameter "propagating/symmetry/sstleaderrule" from [0,3] to [0,2], removed "MAXCONFLICTS"-option.
1167- Removed reading/gmsreader/freeints. A default upper bound of +inf is now assumed for integer variables in GAMS (which is the case since GAMS 23.1).
1168- Disabled "propagating/symmetry/symfixnonbinaryvars" since it is not used in the new symmetry code.
1169- Replaced "propagating/symmetry/onlybinarysymmetry" with "propagating/symmetry/enforcecomputesymmetry" and set to FALSE by default.
1170- Disabled "propagating/symmetry/performpresolving" since running orbital reduction during presolving is not effective.
1171- Repurposed "propagating/symmetry/usedynamicprop" since it now also applies to lexicographic reduction.
1172- Changed default value of parameter "propagating/symmetry/addsymresacks" from FALSE to TRUE.
1173
1174### New parameters
1175
1176- separating/maxcutsgenfactor and separating/maxcutsrootgenfactor as factors (w.r.t. separating/maxcuts and
1177 separating/maxcutsroot) for limits on the number of cuts generated (which used to be constants '2')
1178- expr/pow/expandmaxexponent to specify limit on exponent when to expand power of sum
1179- expr/pow/distribfracexponent to enable expanding power of products with fractional exponents
1180- expr/product/expandalways to enable expanding any product with sums as factor (that is, also when more than two factors)
1181- nlhdlr/convex/maxperturb to specify maximal perturbation of non-differential reference points
1182- benders/default/nlpiterlimit to adjust iteration limit for NLP solver for Benders' decomposition NLP subproblems
1183- limits/objectivestop to interrupt the solve as soon as a primal solution is found
1184 that is at least as good as the given value
1185- heuristics/undercover/{coverand,coverind,covernl} to control which nonlinearities to consider (by default only "and" and nonlinear constraints)
1186- cutselection/ensemble/∗ all parameters for new ensemble cut selector
1187- cutselection/dynamic/∗ all parameters for new dynamic cut selector
1188- branching/relpscost/gmiavgeffweight specifies the weight in the relpscost branching score of the normalized efficacy of all generated GMI cuts (for a variable)
1189 branching/relpscost/gmilasteffweight specifies the weight in the elpscost branching score of the normalized efficacy of the last generated GMI cut (for a variable)
1190- nlhdlr/quadratic/usemonoidal to enable monoidal strengthening when separating quadratics with intersection cuts
1191- nlhdlr/quadratic/trackmore to collect more statistics for monoidal strengthening when separating quadratics with intersection cuts
1192- nlhdlr/quadratic/useminrep to use the minimal representation to compute cut coefficients when separating quadratics with intersection cuts
1193- nlhdlr/quadratic/sparsifycuts to enable sparsification of intersection cuts for quadratics
1194- heuristics/dps/reoptlimits to set strict limits for the reoptimization step in dps
1195- heuristics/dps/timing to run dps after processing the node
1196- heuristics/scheduler/∗ all parameters for new scheduler heuristic
1197- nlhdlr/signomial/enabled, nlhdlr/signomial/maxnundervars, nlhdlr/signomial/mincutscale: parameters for the signomial nonlinear handler
1198- separating/lagromory/freq to denote the frequency for calling Lagromory separator
1199- separating/lagromory/away to denote the minimal integrality violation of a basis variable to try separation
1200- separating/lagromory/dynamiccuts to denote whether the generated cuts be removed from LP if they are no longer tight
1201- separating/lagromory/maxroundsroot to denote the maximal number of separation rounds in the root node
1202- separating/lagromory/maxrounds to denote the maximal number of separation rounds in a non-root node
1203- separating/lagromory/nmaxcutsperlproot to denote, in the root node, the maximal number of Lagromory cuts that can be
1204 separated per explored basis of the Lagrangian dual
1205- separating/lagromory/nmaxcutsperlp to denote, in a non-root node, the maximal number of Lagromory cuts that can be
1206 separated per explored basis of the Lagrangian dual
1207- separating/lagromory/perroundnmaxlpiters to denote the maximal number of separating LP iterations that are allowed per
1208 separation round
1209- separating/lagromory/dualdegeneracyratethreshold to denote the minimum dual degeneracy rate for the separator execution
1210- separating/lagromory/varconsratiothreshold to denote the minimum variable-constraint ratio on the optimal face for the
1211 separator execution
1212- many other advanced parameters for the Lagromory separator, which are also mentioned under separating/lagromory/∗
1213
1214### Data structures
1215
1216- new data structure SYM_GRAPH to encode symmetry information from a constraint
1217- new data structure SYM_EXPRDATA to encode symmetry information from expressions
1218- replaced enum SYM_SYMTYPE by a complete new one; removed SYM_RHSSENSE, added SYM_NODETYPE and SYM_CONSOPTYPE
1219
1220Deleted files
1221-------------
1222
1223- deleted the now unused files: tpi_none.h, tpi_openmp.h, tpi_tnycthrd.h, type_tpi_none.h, type_tpi_openmp.h, type_tpi_tnycthrd.h
1224
1225Unit tests
1226----------
1227
1228- new unittests for nlhdlr_quadratic that test monoidal strengthening and the use of the minimal representation to compute cut coefficients
1229- unittests for nlhdlr_signomial
1230
1231Testing
1232-------
1233
1234- changed `set lim obj` to `set lim objective` in ctest since `obj` is no longer unambiguous
1235
1236Build system
1237------------
1238
1239### Cmake
1240
1241- New flag -DLAPACK=on for linking with Lapack (must be available in the system)
1242- added flag option "SYM=sbliss" for using sassy/bliss as a graph automorphism package
1243- use SYM=sbliss by default, since sassy and bliss are now shipped with SCIP.
1244- added flag option "SYM=snauty" for using sassy/nauty as a graph automorphism package
1245
1246### Makefile
1247
1248- added flag option "nauty" for SYM variable to specify which graph automorphism package should be used
1249- added flag option "sbliss" (sassy/bliss) for SYM variable to specify which graph automorphism package should be used
1250- added flag option "snauty" (sassy/nauty) for SYM variable to specify which graph automorphism package should be used
1251- use SYM=sbliss by default, since sassy and bliss are now shipped with SCIP
1252- New flag LAPACK for linking with Lapack (must be available in the system)
1253- A file scip/config.h is created in the build directory ($(OBJDIR)/include) now.
1254 Defining NO_CONFIG_HEADER is no longer necessary and has no effect anymore.
1255
1256Fixed bugs
1257----------
1258
1259- Number of runs in which separation is enabled will now be correct as per "separating/maxruns" parameter. Earlier,
1260 separation was enabled for "maxruns + 1" number of runs, i.e., separation was enabled even when "maxruns = 0" was set.
1261- add safeguard for number of selected cuts
1262- use double double precision for delta in activity updates of cons_linear.c
1263- sort constraints in checkSolOrig() to keep the logic of constraint handlers intact
1264- fixed make install when SHARED=no and make uninstall
1265- check absolute coefficients relative to extremal average to avoid invalid unifications in normalizeCons()
1266- enforce and check symmetry-based constraints to take their locks (in dual reductions) into account
1267- flush changes at the end of SCIPlpiSetBase() in lpi_grb.c to apply the newly set basis correctly
1268
1269Miscellaneous
1270-------------
1271
1272- The TPI has been changed to become mostly independent from the actual parallel interface during compile time.
1273 For this, the locks and conditions are now pointers to abstract structs.
1274- fixed that scip/def.h, the header for C preprocessor definition (`#define`'s), included headers for some SCIP type and function definitions
1275 (scip/type_retcode.h, scip/type_message.h, scip/pub_message.h)
1276
1277
1278@page RN8 Release notes for SCIP 8
1279
1280@section RN810 SCIP 8.1.0
1281*************************
1282
1283Fixed bugs
1284----------
1285
1286- fixed that scaling of rows in Gurobi interface (SCIPlpiScaleRow()) changed infinite sides to large finite ones (1e20) when scale factor is negative
1287- check whether objective limit is truly reached in SCIPlpiIsStable()
1288- if an objective limit is set and Mosek claims that it is exceeded, check that this is indeed the case in SCIPlpiIsStable()
1289- the .mps file reader was extended to additionally accept .mps files with the objective sense section on one line
1290- ensure that delayed cutpool separation does not happen if enough cuts have been found already
1291- fixed that a Gurobi or Mosek interface (LPI) could not be freed from a thread different than the one it was created in, which lead to problems when, e.g., using the concurrent optimizer
1292- in cons_varbound if both variables are fixed, instead of propagating the constraint check the feasibility of the constraint since propagating can lead to unnecessary numerical troubles
1293- fixed memory leak in branching rule "distribution"
1294- fixed that undercover did not enforce that sufficiently many variables in an and-constraints were fixed to have it linearized in the generated sub-scip
1295- fixed two bugs in cons_varbound: avoid adding variable bounds if vbdcoef is infinite and unlock/lock variables if lhs/rhs/vbdcoef are changed
1296- globalize constraint changes before bound changes during the effective root shift in treeSwitchPath() to correctly update variable locks by avoiding global bounds with outstanding bound change events when deleting constraints
1297- fixed error when attempting to copy SCIP with activated pricers
1298- remove integrality check for implicit integral variables in cons_integral.c, updated the definition for variable type implicit integer to be more explicit that these variables can take fractional values, and updated FAQ entry
1299- updated and, or, and pseudoboolean constraint handlers to better handle fractional implicit integer variables in enforcement
1300- avoid invalid strong Chvatal-Gomory cuts by ceiling with tolerance in the calculation of parameter k and flooring slack coefficients with standard epsilon tolerance as well as quad precision
1301- add missing row links to columns in SCIPflushRowExtensions() required to maintain correct row norms
1302- restrict separator intobj to solutions for which there can be no better feasible integral objective values to avoid cutting them off
1303- delay removal of clique lists from SCIPvarRemoveCliquesImplicsVbs() into cliqueCleanup() to avoid segmentation faults by incomplete cleanups after variable conversions
1304- reject sub-solutions with invalid objectives in SCIPtranslateSubSols() due to contradicting infinite contributions
1305- correct column index in getMinMaxActivityResiduals() to make presolver dualinfer work
1306- copy quiet flag from main scip's message handler to the one of solverscip in concurrent optimization
1307- avoid bound tightening cycles towards huge redundancy bounds in fullDualPresolve() to avert fatal numerical trouble in representing vertices of linear relaxations with unbounded domains
1308- fix problem where debug solution did not work if branching constraints are present
1309- update index of dominating variable on coefficient deletion in dualPresolving() of constraint handler logicor
1310- pass on flags from a redundant to the implying varbound constraint in preprocessConstraintPairs() to avoid suboptimal fixings by model relaxations
1311- apply reductions of dualinfer only if a dual solution exists (primal is bounded)
1312- before presolving is finished check solutions before retransforming them including tiny values to keep check flags consistent
1313- disable heuristics before and during presolving in benders decomposition to avoid messing up the objective structure in the solution store by dropping auxiliary variables in the required retransformations
1314- correct local flag of singleton conflict constraints in tightenSingleVar() against invalid bound globalization
1315- respect unboundedness in the computation of activity bounds in conflict.c to avoid invalid huge bounds due to small coefficients on unbounded variables
1316- ensure positive sides of a linear constraint when recognizing a set partition in rangedRowSimplify() to account for redundancy issues
1317- relax numerical conditions for variable aggregations to avert invalid variable fixings
1318- fixed harmless read of uninitialized data when creating parameters
1319- fix call of SCIPnlpiOraclePrintProblem in nlpi_worhp
1320
1321Performance improvements
1322------------------------
1323
1324- Use sassy/bliss as default symmetry computation package.
1325
1326Interface changes
1327-----------------
1328
1329### Interfaces to external software
1330
1331- added interface to nauty/traces for symmetry computation
1332- added interface to sassy, a preprocessor for symmetry computation
1333- The directory src/sassy contains the source code of sassy.
1334
1335Build system
1336------------
1337
1338### Cmake
1339
1340- added flag option "SYM=sbliss" for using sassy/bliss as a graph automorphism package
1341
1342### Makefile
1343
1344- added flag option "nauty" for SYM variable to specify which graph automorphism package should be used
1345- added flag option "sbliss" for SYM variable to specify which graph automorphism package should be used
1346- use SYM=sbliss by default, since sassy and bliss are now shipped with SCIP
1347
1348Miscellaneous
1349-------------
1350
1351- the parameter change callback is no longer called at the moment a parameter is created
1352
1353@section RN804 SCIP 8.0.4
1354*************************
1355
1356Features
1357--------
1358
1359- use quad precision in cutsSubstituteMIR() for substituting slack variables into CMIR cuts
1360- use quad precision for activity computations in cons_linear.c
1361
1362### Deleted and changed API functions
1363
1364- SCIPshrinkDisjunctiveVarSet() no longer attempts to cutoff the current node if it finds the
1365 given disjunction to be infeasible; it is now in the responsibility of the caller to act accordingly
1366
1367### New API functions
1368
1369- added SCIPskipSpace
1370- added XML parser routines from src/xml/xml.h
1371
1372### Interfaces to external software
1373
1374- updated XPRESS interface to work with XPRESS 41 as well
1375- new interface to LP solver HiGHS (lpi_highs.cpp)
1376
1377### Changed parameters
1378
1379- changed integer parameter "propagating/symmetry/recomputrestart" from range {0, 1, 2} to being fixed at value 0
1380
1381Unit tests
1382----------
1383
1384- added new checks for objective, bounds and sides inside the scaling tests in lpi/change.c
1385
1386Fixed bugs
1387----------
1388
1389- relax condition of assert in lpSolve to hold only if lp/checkstability is true
1390- OPB reader: dynamically increase the size of the line buffer for reading in getMaxAndConsDim()
1391- Enabled the solution limit checks in SCIPsolveIsStopped in solve.c when in SCIP_STAGE_PRESOLVING
1392- fix quad precision comparison for the calculation of knapsackcover constraints.
1393- force copying of symmetry constraints for concurrent solve
1394- increase the precision of double multiplications in quad precision environments
1395- corrected handling of different variable types in symmetry
1396- orbitope detection: refine computation of overlap structure and fixed bug in finding orbitope generators
1397- ensure that winner is always determined in concurrent mode
1398- when a row with invalid index range is added to the global cutpool, update the indices instead of failing with an assert
1399- update of watched literals in cons_xor.c and ensure that fixed variables are counted in propacateCons()
1400- avoid some numerical issue in check for redundant variables in linear constraints (introduced with version 8.0.2)
1401- more rows are treated as being integral in cutsSubstituteMIR() for CMIR cuts
1402- fixed several relaxations of the rhs of cuts to 0 in cuts.c
1403- avoid aggregation into a single linear constraint if they should not be upgraded (needed for indicator constraints)
1404- apply effective root changes before fork is repropagated during treeSwitchPath() in tree.c
1405- avoid invalid objective value for solutions generated from an unbounded LP relaxation in case of a nonlinear objective function
1406- disable recomputing symmetries after a restart (constraint removal is not permitted)
1407- avoid cutting off optimal solutions for small feasibility tolerances in conflict analysis
1408- initialize variable in presol_dualsparsify.c
1409- fix in presolving of variable bound constraints to use absolute instead of relative difference
1410- free variable histories in reoptimization mode
1411- handle whitespaces in interactive shell history consistently
1412- check and enforce equalities on which the objective is projected in cons_linear.c
1413- ensure row feasibilities of solution shiftings in heur_oneopt.c and heur_twoopt.c
1414- remove rounded row check blocking tolerable primal solutions in cons_varbound.c
1415- fixed that presolve of logicor-constraints may have attempted to cutoff a root of the not yet existing branch-and-bound tree
1416- only consider positive slack variables as active in benders.c
1417- in the feasibility check of and/or constraints, allow for fractional values in operands
1418- fixed linear outer-approximation for some composite absolute-value expressions
1419
1420Miscellaneous
1421-------------
1422
1423- Extended documentation of the parameter limits/solutions to point out that the limit is first checked in presolving
1424- Added more information about using SCIPcache- and SCIPflushRowExtensions() to documentation and comments
1425- Extended the `how to add' sections of the documentation by adding information on how to include default plugins into SCIP
1426
1427@section RN803 SCIP 8.0.3
1428*************************
1429
1430Examples and applications
1431-------------------------
1432
1433- Externalize STP and PolySCIP applications
1434
1435Interface changes
1436-----------------
1437
1438### Command line interface
1439
1440- When running the AMPL interface, the .nl filename extension does not need to be omitted for the input file anymore.
1441
1442Build system
1443------------
1444
1445### Cmake
1446
1447- Forbid CMAKE_BUILD_TYPE nonstandard values
1448- Move -I/path/to/src/amplmp/include to front of compiler flags for include directories
1449
1450### Makefile
1451
1452Fixed bugs
1453----------
1454
1455- fixed an incorrect handling of xor constraints
1456- the feasibility checker for integrality constraints now uses checkintegrality even for implied integers
1457- skip integrality check in cons_integral for relaxation-only implicit-integer variables
1458- fixed an issue caused by aggregated variables not added to a hashmap in the xor constraint handler
1459- changed function solveRowEchelonGF2 in cons_xor.c to avoid errors if rank is 0
1460- fixed that the implication presolver tried to aggregate or tighten bounds of multiaggregated variables
1461- fixed a sign check in detection of linear constraints that are parallel to the objective
1462- fixed bug in Clp and lpi_clp with missing basis information when calling the barrier with crossover; needs new Clp version
1463- do not assume aggregation is successful in cons_setppc.c
1464
1465Miscellaneous
1466-------------
1467
1468- Changed license to Apache 2.0, see https://www.apache.org/licenses/LICENSE-2.0.
1469- When an LP could not be solved accurately, scaling is now turned off as a last fall-back method.
1470- Functions for using the debug solution mechanism SCIPdebugAddSolVal, SCIPdebugGetSol, SCIPdebugGetSolVal,
1471 SCIPdebugSolIsValidInSubtree, SCIPdebugIsMainscip, SCIPdebugSolEnable, SCIPdebugSolDisable, SCIPdebugSolIsEnabled,
1472 SCIPwithDebugSol are now exported
1473
1474@section RN802 SCIP 8.0.2
1475*************************
1476
1477Interface changes
1478-----------------
1479
1480### Deleted and changed API functions
1481
1482- added input parameter SCIP_Bool initiallp to SCIPcutselsSelect
1483- changed function type int to SCIP_Longint for SCIPcutpoolGetMaxNCuts
1484- replaced SCIPsepastoreGetNCutsFound with SCIPsepastoreGetNCutsAdded following the naming convention for the new statistics
1485- replaced SCIPsepaIncNAppliedCuts with SCIPsepaIncNCutsApplied
1486
1487### New API functions
1488
1489- added SCIPsepastoreGetNCutsAdded, SCIPsepastoreGetNCutsAddedViaPool, SCIPsepastoreGetNCutsAddedDirect
1490- added SCIPsepaIncNCutsAdded, SCIPsepaDecNCutsAdded, SCIPsepaIncNCutsApplied, SCIPsepaGetNRootCalls, SCIPsepaGetNCutsAdded, SCIPsepaGetNCutsAddedViaPool, SCIPsepaGetNCutsAddedDirect, SCIPsepaGetNCutsAppliedViaPool, SCIPsepaGetNCutsAppliedDirect
1491- added SCIPcutpoolGetNRootCalls, SCIPcutpoolGetNCutsAdded, SCIPcutpoolAddMaxNCuts, SCIPcutpoolSetTime, SCIPcutpoolAddNCalls, SCIPcutpoolAddNRootCalls, SCIPcutpoolAddNCutsFound, SCIPcutpoolAddNCutsAdded,
1492- added SCIPcutselGetNCalls, SCIPcutselGetNRootCalls, SCIPcutselGetNRootCuts, SCIPcutselGetNRootForcedCuts, SCIPcutselGetNRootCutsFiltered, SCIPcutselGetNLocalCuts, SCIPcutselGetNLocalForcedCuts, SCIPcutselGetNLocalCutsFiltered,
1493
1494### Interfaces to external software
1495
1496- Added compatibility with Mosek 10.0.18.
1497
1498### New parameters
1499
1500- new parameters to turn on more statistics: misc/showdivingstats (diving heuristics), heuristics/alns/shownbstats (ALNS), estimation/showstats (tree size estimation)
1501
1502### Data structures
1503
1504- added nrootcalls and ncutsadded to SCIP_Cutpool
1505- added fromcutpool flag to SCIP_Row and fixed 33 bit allocation
1506- added ncalls, nrootcalls, nrootcutsselected, nrootcutsforced, nrootcutsfiltered, nlocalcutsselected, nlocalcutsforced, nlocalcutsfiltered to SCIP_Cutsel
1507- added ncutsadded, ncutsaddedviapool, ncutsaddeddirect, ncutsappliedviapool, ncutsapplieddirect, nrootcalls to SCIP_Sepa
1508- added ncutsadded, ncutsaddedviapool, ncutsaddeddirect to SCIP_Sepastore
1509- fixed statistics of relaxators w.r.t. number of times conss/cuts were added
1510
1511Build system
1512------------
1513
1514### Cmake
1515
1516- new option `-DAUTOBUILD` that configures scip with dependencies on availability.
1517 Packages like Ipopt, PaPILO, Readline, Zimpl, ZLIB, GMP, Worhp are automatically found and linked, otherwise ignored.
1518 The individual flags for these packages are ignored. This makes a quick build easier. It is by default set to off.
1519
1520Fixed bugs
1521----------
1522
1523- read objective offset from ZIMPL files
1524- Make sure that objective limit is disabled if not all variables are in the LP. If we would run into
1525 an objective limit in this case, the results of the LP solver are unclear.
1526- fixed bug in reopt.c, which occurred for bounds outside of current valid bounds
1527- fixed problem with recomputing symmetries after a restart
1528- fixed bug in SCIPcalcMIR() with wrong order of arguments for removeZerosQuad()
1529- fixed segmentation fault in update of cut statistic
1530- fixed bug in presolving of and constraints by merging variables with multiple occurrences before cliquePresolve()
1531- fixed bug in dual presolving of linear constraints by setting implicit integers to integers in multi-aggregation
1532- fixed update of presolve statistics on added constraints and changed coefficients in constraint handler for nonlinear constraints
1533- fixed bug with reading CIP files with large constraints split over several lines
1534- fixed bug with infinite bounds in the computation of conflict cuts
1535- fixed check for unbounded solution constructed by SCIPlpGetUnboundedSol(): The constructed solution is very likely infeasible
1536 since scaling increases small numerical feasibility violations. Therefore, the solution is now always accepted. However, the
1537 feasibility of the ray is now checked. This fix now might lead to several rounds of separation in order to resolve unbounded solutions,
1538 whereas previously SCIP started to branch immediately.
1539- changed to absolute tolerances in all redundancy checks for linear constraints
1540
1541Miscellaneous
1542-------------
1543
1544- Added extended cutselector statistics splitting between root node specific and general statistics
1545- Added extended and refined cutpool statistics showing the number of cuts added from the cutpool to the sepastore
1546- Added extended and refined separator statistics to get a better view of the individual generators performance
1547- turned off output of statistics for the following information by default:
1548 diving heuristics, ALNS neighborhood information and tree size estimation statistics;
1549 they can be turned on using the following new parameters:
1550 misc/showdivingstats (diving heuristics), heuristics/alns/shownbstats (ALNS), estimation/showstats (tree size estimation)
1551
1552@section RN801 SCIP 8.0.1
1553*************************
1554
1555Features
1556--------
1557
1558- clique lifting in cons_setppc (parameter enablecliquelifting) is only disabled if it has been applied
1559- avoid warning if Mosek has reached/exceeded the objective limit
1560- improved curvature check for quadratic expressions when extended formulations are disabled
1561
1562Examples and applications
1563-------------------------
1564
1565- Fixed handling of enforcing in the TSP example.
1566
1567Interface changes
1568-----------------
1569
1570### Interfaces to external software
1571
1572- Added compatibility with Mosek 10.0.13.
1573
1574Build system
1575------------
1576
1577- BLISS is now built from the vendored version from https://github.com/ds4dm/Bliss
1578
1579### Cmake
1580
1581- avoid warnings about unrecognized compiler warning silencing options when compilation with GCC fails
1582- adjust mosek find module to version 9.3
1583- added cmake compatibility for ipopt versions 3.14.x
1584
1585### Makefile
1586
1587- avoid warnings about unrecognized compiler warning silencing options when compilation with GCC fails
1588- fixed that compilation with MS/Intel compilers on Windows and Cray compilers was broken when enabling PAPILO
1589
1590Fixed bugs
1591----------
1592
1593- fixed uninitialized array in detection of suborbitopes
1594- Fixed problem with reading long lines in LP/FZN/OPB/Diff-files. The buffer is now reallocated,
1595 which also should be much faster.
1596- fixed that recursive products in expressions were sometimes not flattened
1597- fixed that expressions in original variables could not be simplified
1598- fixed handling of objective limit with Mosek
1599- made SCIPlpiGetSolverName()/SCIPlpiGetSolverDesc() thread-safe for LP Solvers (Cplex,Gurobi,Glop,Mosek,SoPlex,Xpress)
1600- made SYMsymmetryGetName() thread-safe for Bliss
1601- fixed memory allocation issue in detection of SOC nlhdlr
1602- fixed that reaching the walltime limit in Ipopt was not handled properly
1603- Deactivated dual fixing of unlocked variables with zero objective in presol_milp that SCIP is unable to postsolve.
1604- set the column flag kImplInt for implicit integers in the papilo problem
1605- fixed bug in propagation of indicator constraints (one case always reported a change through propagation)
1606
1607@section RN800 SCIP 8.0.0
1608*************************
1609
1610Features
1611--------
1612
1613- Variables that were marked as relaxation-only and that were not used in any solution (SCIP_SOL)
1614 are now deleted when during a restart.
1615- New symmetry handling method, symmetry handling inequalities based on the Schreier Sims table,
1616 which is able to handle symmetries of arbitrary kinds of variables.
1617- Revise way in which external memory (e.g., of LP-solver) is estimated.
1618- The symmetry code can now heuristically search for orbitopes that do not completely handle
1619 a symmetry component and add certain Schreier Sims cuts to such components.
1620- The LPIs for Gurobi and Mosek are thread-safe now.
1621- The complete code is now thread-safe by default.
1622- New separator to generate mixing cuts (works well for stochastic programming with probabilistic constraint).
1623- New parsing routines for cons_orbisack and cons_symresack.
1624- Variables can now be marked to forbid aggregation.
1625- Heuristic PADM can now reoptimize found solution with original objective function.
1626- Added code to support debugging of catching or releasing of variables to var.c (prints backtrace
1627 when catching and releasing).
1628- SCIPintervalSin() and SCIPintervalCos() are now rounding-safe.
1629- Removed special handling of second-order cones in undercover heuristic for now.
1630- Removed use of Hessian sparsity pattern for nonquadratic nonlinear constraints in undercover heuristic.
1631- Added reader for AMPL .nl files.
1632- New separator sepa_rlt to compute cuts via the reformulation-linearization technique (RLT).
1633- New separator sepa_minor to compute cuts from 2x2 minors of a violated semidefiniteness constraint that is
1634 implied by the extended formulation for bilinear products.
1635- New separator sepa_interminor to compute intersection cuts from 2x2 (not only principle) minors of a violated
1636 rank-one constraint that is implied by the extended formulation for bilinear products.
1637- Symmetry handling has been extended to detect also symmetries between variables that also appear in nonlinear constraints.
1638- Improved OBBT propagator by only considering variables that are contained in at least one nonconvex expression that has an auxiliary variable.
1639- Default parameter settings for NLP solves are now defined independently of the NLP solver.
1640- Added table to print statistics on NLP solvers.
1641- Knapsack, linear, logicor, setppc, and varbound constraints now add themselves to the NLP relaxation, if enabled.
1642 And, linking constraints and bounddisjunctions in one variable are added to the NLP relaxation now.
1643- Ipopt interface now supports warmstarts from a full primal/dual solution pair.
1644- Extended data structure SCIP_ROWPREP and routines to assemble a linear inequality before it is turned into a SCIP row and
1645 made it available via the API.
1646- MIR procedure is now available for strengthening the Benders' optimality cut
1647- SCIPbranchcandCalcLPCands() now also returns fractional variables in unbounded solutions.
1648- New emphasis "benchmark" to avoid different solving paths that may come from checking remaining memory.
1649- New plugin type for cut selection: users can now include their own cut selection rules, default rule moved to cutsel_hybrid.
1650- New construction heuristic DPS which additionally needs a user-provided decomposition and splits the problem into several sub-SCIPs
1651 according to this decomposition. The sub-SCIPs are solved and updated repeatedly until a feasible solution of the original problem is found.
1652
1653Expressions:
1654- Removed support for expression types min and max for now. Removed support for expression type sign.
1655 Removed complex expression types sum, product, linear, quadratic, polynomial.
1656 Removed support for parameterized expressions.
1657- Added support for expression types sin, cos, and entropy. Added an expression type that stores a SCIP variable.
1658- Added handling of sin and cos expressions in OSiL reader.
1659- Added handling of sin, cos, and tan expressions in ZIMPL reader.
1660- Added expression handler plugin type, removed user expression type.
1661- Replaced expressions, expression trees, and expression graphs by a new implementation of expressions.
1662- Added differentiation methods (Gradients and Hessian directions) to expressions.
1663- Added integrality information to expressions.
1664- Added comparison and hashing of expressions.
1665- Improved simplification of expressions and identification of common subexpressions, in particular terms that appear
1666 equally in several quadratic functions are now identified.
1667- Expression simplification now expands powers also when the resulting exponents will be larger than 2.
1668- Added table to print statistics on expression handlers.
1669- Removed interval-arithmetic evaluation from expression interpreter (interfaces to automatic differentiation codes).
1670- Hessians for user-provided expression handlers are not available in the NLP solver interfaces for now.
1671- Sparse Hessians are now returned by expression interpreter. Removed dense Hessians.
1672
1673Constraint handlers for NLP:
1674- cons_nonlinear has been completely rewritten and now handles constraints of the form lhs <= expr <= rhs, where
1675 expr is an expression using the new expression type. A linear part of a nonlinear constraint is no longer distinguished.
1676- Methods that work on a particular nonlinear structure are now implemented via nonlinear handlers (nlhdlr).
1677 These handlers are plugins of cons_nonlinear and interact with cons_nonlinear by detecting structures in expressions and
1678 providing propagation and separation mechanisms.
1679- Added nlhdlr "default" as a mandatory nlhdlr: this is a nlhdlr that gets active on expressions that no other nlhdlr handles.
1680 It then uses the callbacks implemented in expression handlers to provide domain propagation and linear under/overestimates.
1681- Added nlhdlr for quadratic expressions: domain propagation that was previously part of cons_quadratic; separation via intersection cuts (currently disabled).
1682- Added nlhdlr for bilinear expressions: collects bilinear products and provides under/overestimation of a product over a 2D-projection of the LP.
1683- Added nlhdlr for convex and concave expressions: detection of convex/concave subexpressions and linear under/overestimation.
1684- Added nlhdlr for quotients: detects quotients, provides specialized linear under/overestimation and domain propagation for univariate quotients.
1685- Added nlhdlr for perspective reformulations: detects expressions in semi-continuous variables and tightens linear
1686 under/overestimates of these expressions by applying a perspective transformation.
1687- Added nlhdlr for second-order cones: detects second-order cone constraints (as ||x|| <= t or a quadratic that can written like that) and
1688 separates on a disaggregated reformulation (similar to cons_soc previously).
1689- Removed constraint handlers abspower, bivariate, quadratic, and soc.
1690- Removed simplification of duplicate abspower constraints for now.
1691 Removed simplification of abspower constraints with loose variables.
1692 Removed resolving of domain propagation (ConsResProp callback) and conflict analysis for abspower constraints.
1693 Removed propagation of varbounds for variables of abspower constraints.
1694 Removed reformulation of abs(x)^p * x into signpower expression for now.
1695- Removed reformulation of SOC constraints when adding to the NLP.
1696 Removed possibility to add linearizations a la Glineur or BenTal&Nemirovski for SOC constraints.
1697- Removed possibility to disaggregate quadratic constraints.
1698 Removed lifted tangent inequalities for bilinear terms in quadratic constraints.
1699 Removed option to project LP solution onto feasible region of a quadratic constraint via interior point or gauge function.
1700 Removed handling of unbounded LPs when enforcing quadratic constraints.
1701- Removed construction of cuts from interval gradients for nonlinear constraints.
1702 Removed possibility to pretend that all nonlinear constraints are convex.
1703 Removed possibility to create local or non-initial nonlinear constraints for now.
1704- Removed explicit reformulation of nonlinear constraints in presolve.
1705 An extended formulation is now generated implicitly and used to construct the LP relaxation,
1706 but the original formulation is used to check feasibility, propagate variable domains, etc.
1707 Variables that are added for the extended formulation are now marked as relaxation-only.
1708- Improved locking of nonlinear variables in nonlinear constraints by taking monotonicity into account.
1709- Improved mechanisms to detect and handle structures in nonlinear constraints, which allows for several algorithms
1710 to work simultaneously on equal or overlapping expressions.
1711- Improved linearization of (sums of) products of binary variables, e.g., clique information is now taken into account.
1712 Removed option to linearize products between a binary and a non-binary variable.
1713- Nonlinear constraints with the same function (but possibly different left- or right-hand-side) are now merged.
1714- When a variable appears in only one concave less-or-equal constraint, it will be fixed to one of its bounds in more cases now.
1715- New branching rule for variables in nonlinear constraints (implemented in cons_nonlinear) that scores candidates
1716 based on constraint violation, variable type, and pseudo-costs simultaneously.
1717- Added tables to print statistics of nonlinear constraint handler and nonlinear handlers.
1718
1719Performance improvements
1720------------------------
1721
1722- Use the objective cutoff row as base row for separation in sepa_aggregation.c.
1723- Separate lifted cover cuts based on newer lifting function of Letchford and Souli (2019) in sepa_aggregation.c.
1724- In-tree restarts due to tree size estimation have been made compatible with orbital fixing.
1725- Improved upgrade of orbisacks to packing/partitioning orbitopes.
1726- Improved running time of symresack cover separation.
1727- Improved propagation algorithm for orbisack and symresack.
1728- Improved handling for expressions of type signpower in CppAD interface by making use of CppADs conditional expressions.
1729- Faster reevaluation of Hessian for quadratic expressions in CppAD interface.
1730- Enabled optimization of taped expressions in the CppAD interface.
1731- Sparse Hessian evaluation for expressions with sparse Hessian in the CppAD interface.
1732- Disabled branching on variables that are added for the extended formulation of a nonlinear constraint.
1733- Prefer branching on variables in nonconvex terms of nonlinear constraints also if a cut could be generated but would yield a small reduction in the convexification gap only.
1734- When violations of nonlinear constraints are tiny, the feasibility tolerance for the LP relaxation may now be reduced temporarily to allow for cuts to have an effect.
1735- Improved under/overestimation of multidimensional vertex-polyhedral (e.g., multilinear or concave) functions by use of scaling and keeping the cut-generating LP around.
1736- Products in nonlinear constraints are no longer disaggregated for the extended formulation.
1737- No longer relax bounds of integral variables when computing bounds on activity in nonlinear constraints.
1738- Revised and improved Ipopt interface.
1739- Revised and improved subNLP primal heuristic, in particular choice of iteration limit and starting condition and reuse of subSCIP.
1740- Merge strongcg into the gomory separator to avoid computing the same base equality twice. The files
1741 sepa_strongcg.{h|c} have been removed.
1742- The RENS neighborhood in ALNS now fixes fractional variables if necessary for reaching its target fixing rate.
1743- Use cpsolver emphasis in sepa_rapidlearning.
1744- If decomposition/maxgraphedge = 0, the computation of the block graph is completely turned off.
1745- Fixed a performance bug in cons_integral.c where rounding information was passed incorrectly to the generic diving algorithm.
1746
1747Examples and applications
1748-------------------------
1749
1750- Add c++ Sudoku example
1751- Removed circle.c and renamed string.c to spring.c in CallableLibrary example.
1752- SCIP-Jack (Steiner tree application):
1753 Most files have been modified and many new ones have been added (code base more than doubled).
1754 Two new problem classes are supported: maximum-weight connected subgraph problem with budget constraints, partial-terminal node-weighted Steiner tree problem.
1755 Major performance improvements accross all problem classes that are supported.
1756
1757Interface changes
1758-----------------
1759
1760### New and changed callbacks
1761
1762- extend SEPAEXEC{LP,SOL} callbacks by parameter "depth", which should be used within separation instead of SCIPgetCurrentDepth()
1763- extend SCIPseparateSolCutpool() by parameter "pretendroot", which is passed to SCIPcutpoolSeparate() instead of SCIPtreeGetCurrentDepth(scip->tree) == 0
1764- removed SCIP_DECL_EXPRGRAPHVARADDED, SCIP_DECL_EXPRGRAPHVARREMOVE, SCIP_DECL_EXPRGRAPHVARCHGIDX
1765- removed SCIP_DECL_USEREXPRESTIMATE, SCIP_DECL_USEREXPREVAL, SCIP_DECL_USEREXPRINTEVAL, SCIP_DECL_USEREXPRCURV, SCIP_DECL_USEREXPRPROP, SCIP_DECL_USEREXPRCOPYDATA, SCIP_DECL_USEREXPRFREEDATA, SCIP_DECL_USEREXPRPRINT
1766- added SCIP_DECL_EXPR_OWNERFREE, SCIP_DECL_EXPR_OWNERPRINT, SCIP_DECL_EXPR_OWNEREVALACTIVITY, SCIP_DECL_EXPR_OWNERCREATE
1767- added SCIP_DECL_EXPR_INTEVALVAR, SCIP_DECL_EXPR_MAPEXPR
1768- added SCIP_DECL_EXPRCOPYHDLR, SCIP_DECL_EXPRFREEHDLR, SCIP_DECL_EXPRCOPYDATA, SCIP_DECL_EXPRFREEDATA, SCIP_DECL_EXPRPRINT, SCIP_DECL_EXPRPARSE, SCIP_DECL_EXPRCURVATURE, SCIP_DECL_EXPRMONOTONICITY, SCIP_DECL_EXPRINTEGRALITY, SCIP_DECL_EXPRHASH, SCIP_DECL_EXPRCOMPARE, SCIP_DECL_EXPREVAL, SCIP_DECL_EXPRBWDIFF, SCIP_DECL_EXPRFWDIFF, SCIP_DECL_EXPRBWFWDIFF, SCIP_DECL_EXPRINTEVAL, SCIP_DECL_EXPRESTIMATE, SCIP_DECL_EXPRINITESTIMATES, SCIP_DECL_EXPRSIMPLIFY, SCIP_DECL_EXPRREVERSEPROP
1769- removed SCIP_DECL_QUADCONSUPGD
1770- added SCIP_DECL_VERTEXPOLYFUN
1771- added argument nvarexprs to SCIP_DECL_NONLINCONSUPGD to inform upgrade method about number of variables in constraint
1772- removed SCIP_DECL_EXPRGRAPHNODEREFORM
1773- added SCIP_DECL_NLHDLRCOPYHDLR, SCIP_DECL_NLHDLRFREEHDLRDATA, SCIP_DECL_NLHDLRFREEEXPRDATA, SCIP_DECL_NLHDLRINIT, SCIP_DECL_NLHDLREXIT, SCIP_DECL_NLHDLRDETECT, SCIP_DECL_NLHDLREVALAUX, SCIP_DECL_NLHDLRINTEVAL, SCIP_DECL_NLHDLRREVERSEPROP, SCIP_DECL_NLHDLRINITSEPA, SCIP_DECL_NLHDLREXITSEPA, SCIP_DECL_NLHDLRENFO, SCIP_DECL_NLHDLRESTIMATE
1774- replaced BMS_BLKMEM* blkmem argument of SCIP_DECL_NLPICOPY by SCIP* scip, removed targetnlpi argument
1775- added SCIP* scip and SCIP_NLPIDATA** nlpidata arguments to SCIP_DECL_NLPIFREE
1776- added SCIP* scip to SCIP_DECL_NLPIGETSOLVERPOINTER, SCIP_DECL_NLPICREATEPROBLEM, SCIP_DECL_NLPIFREEPROBLEM, SCIP_DECL_NLPIGETPROBLEMPOINTER, SCIP_DECL_NLPIADDVARS, SCIP_DECL_NLPIADDCONSTRAINTS, SCIP_DECL_NLPISETOBJECTIVE, SCIP_DECL_NLPICHGVARBOUNDS, SCIP_DECL_NLPICHGCONSSIDES, SCIP_DECL_NLPIDELVARSET, SCIP_DECL_NLPIDELCONSSET, SCIP_DECL_NLPICHGLINEARCOEFS, SCIP_DECL_NLPICHGOBJCONSTANT, SCIP_DECL_NLPISETINITIALGUESS, SCIP_DECL_NLPISOLVE, SCIP_DECL_NLPIGETSOLSTAT, SCIP_DECL_NLPIGETTERMSTAT, SCIP_DECL_NLPIGETSOLUTION, SCIP_DECL_NLPIGETSTATISTICS
1777- replaced SCIP_DECL_NLPICHGEXPRTREE by SCIP_DECL_NLPICHGEXPR
1778- removed nquadelems, quadelems, exprvaridxs arguments from SCIP_DECL_NLPIADDCONSTRAINTS, changed exprtrees argument to exprs
1779- removed nquadelems, quadelems, exprvaridxs arguments from SCIP_DECL_NLPISETOBJECTIVE, changed exprtree argument to expr
1780- removed SCIP_DECL_NLPICHGQUADCOEFS, SCIP_DECL_NLPICHGNONLINCOEF, SCIP_DECL_NLPISETMESSAGEHDLR
1781- added SCIP_NLPIPROBLEM* problem to SCIP_DECL_NLPIGETSOLVERPOINTER
1782
1783### Deleted and changed API functions
1784
1785- When calling SCIPdelVar() in the SCIP_STAGE_PROBLEM stage, it is now documented as the user's responsibility to ensure
1786 the variable is not present in any constraints. Otherwise, SCIPsolve() now returns SCIP_INVALIDDATA.
1787- removed SCIPselectCuts(), replaced by SCIPselectCutsHybrid() of the hybrid cut selector plugin
1788- If SCIPvarMarkRelaxationOnly() is called for a variable, then this now need to happen before the
1789 variable is added to the transformed problem (SCIPaddVar()).
1790 SCIPvarMarkRelaxationOnly() will automatically call SCIPvarMarkDeletable().
1791- SCIPcomputeOrbitsFilterSym() and SCIPcomputeComponentsSym(): Type of argument componentblocked
1792 changed from SCIP_Shortbool* to unsigned*.
1793- removed SCIPsetParam()
1794- SCIPcreateConsOrbitope() and SCIPcreateConsBasicOrbitope() have two new arguments "usedynamicprop"
1795 and "mayinteract" to encode whether a dynamic reordering of the orbitope rows shall be used in
1796 full orbitope propagation and whether the orbitope might interact with other symmetry handling
1797 methods, respectively.
1798- internal function SCIPgetPropertiesPerm() has been replaced by SCIPisInvolutionPerm()
1799- internal function SCIPgenerateOrbitopeVarsMatrix() has new arguments "storelexorder", "lexorder",
1800 "nvarsorder", "maxnvarsorder" to compute and store the lexicographic order defined by an orbitope
1801- renamed SCIPcomputeArraysIntersection() and SCIPcomputeArraysSetminus() to
1802 SCIPcomputeArraysIntersectionInt() and SCIPcomputeArraysSetminusInt(), respectively, and changed
1803 their return type from SCIP_RETCODE (which _always_ was SCIP_OKAY) to void
1804- removed SCIPincludeDialogDefault(), use SCIPincludeDialogDefaultBasic() instead and check whether you also need SCIPincludeDialogDefaultSet() and SCIPincludeDialogDefaultFix()
1805- removed exprint argument from SCIPaddNlRowGradientBenderscutOpt()
1806- added copyexprhdlrs argument to SCIPcopyPlugins() (19th position)
1807- added copycutselectors argument to SCIPcopyPlugins() (10th position)
1808- removed refpoint argument from SCIPaddSquareSecant()
1809- added argument exprdata to SYMcomputeSymmetryGenerators()
1810- removed SCIPconsNonlinearGetRhs(), SCIPconsNonlinearGetLhs(), SCIPconsNonlinearAddLinearCoef()
1811- removed arguments timelimit, minimprove, itercontingent, and iterused from SCIPapplyHeurSubNlp()
1812- removed SCIPresolveSolHeurSubNlp(), SCIPgetSubScipHeurSubNlp(), SCIPgetVarMappingScip2SubScipHeurSubNlp(), SCIPgetVarMappingSubScip2ScipHeurSubNlp()
1813- SCIPlockVarCons() and SCIPunlockVarCons() are now allowed in stage TRANSFORMED as well
1814- Added functions SCIPsetSepaIsParentsepa(), SCIPsetSepaParentsepa() [in scip_sepa.h], SCIPsepaSetIsParentsepa(), SCIPsepaSetParentsepa() [in sepa.h],
1815 SCIPsepaIsParentsepa(), SCIPsepaGetParentsepa() [in pub_sepa.h]
1816- Added function SCIPpruneTree() to immediately delete nodes that were marked to be deleted with SCIPcutoffNode
1817
1818NLP:
1819- SCIPhasNLPContinuousNonlinearity() now returns SCIP_RETCODE and has additional argument result
1820- removed SCIPnlrowGetNQuadVars(), SCIPnlrowGetQuadVars(), SCIPnlrowSearchQuadVar(), SCIPnlrowGetNQuadElems(), SCIPnlrowGetQuadElems(), SCIPnlrowGetQuadData()
1821- renamed SCIPnlrowGetExprtree() to SCIPnlrowGetExpr() and changed return type to SCIP_EXPR*
1822- removed arguments nquadvars, quadvars, nquadelems, quadelems from SCIPcreateNlRow(); argument expr(ession) is now of type SCIP_EXPR*
1823- removed SCIPaddQuadVarToNlRow(), SCIPaddQuadVarsToNlRow(), SCIPaddQuadElementToNlRow(), SCIPaddQuadElementsToNlRow(), SCIPchgNlRowQuadElement(), SCIPsetNlRowExprtreeParam(), SCIPsetNlRowExprtreeParams()
1824- renamed SCIPsetNlRowExprtree() to SCIPsetNlRowExpr() and changed type of expr(tree) argument to SCIP_EXPR*
1825- SCIPenableNLP() is no longer allowed in stages INITSOLVE and SOLVING
1826- removed SCIPaddLinearConsToNlpHeurSubNlp()
1827- SCIPhasNLPSolution() now returns true also if a infeasible solution to the NLP exists; SCIPcreateNLPSol() can now also be used when only an infeasible solution to the NLP exists
1828- renamed SCIPsolveNLP() to SCIPsolveNLPParam() and added parameter SCIP_NLPPARAM param
1829- removed SCIPsolveDiveNLP(), use SCIPsolveNLPParam() instead
1830
1831NLPI:
1832- removed SCIPnlpiCopy(), SCIPnlpiFree(), SCIPnlpiChgQuadCoefs(), SCIPnlpiChgNonlinCoef(), SCIPnlpiSetMessageHdlr()
1833- removed SCIPnlpiCreate() from public API, use SCIPincludeNlpi() instead
1834- removed SCIPnlpiGetSolverPointer() from public API, use SCIPgetNlpiSolverPointer() instead
1835- removed SCIPnlpiCreateProblem() from public API, use SCIPcreateNlpiProblem() instead
1836- removed SCIPnlpiFreeProblem() from public API, use SCIPfreeNlpiProblem() instead
1837- removed SCIPnlpiGetProblemPointer() from public API, use SCIPgetNlpiProblemPointer() instead
1838- removed SCIPnlpiAddVars() from public API, use SCIPaddNlpiVars() instead
1839- removed SCIPnlpiAddConstraints() from public API, use SCIPaddNlpiConstraints() instead
1840- removed SCIPnlpiSetObjective() from public API, use SCIPsetNlpiObjective() instead
1841- removed SCIPnlpiChgVarBounds() from public API, use SCIPchgNlpiVarBounds() instead
1842- removed SCIPnlpiChgConsSides() from public API, use SCIPchgNlpiConsSides() instead
1843- removed SCIPnlpiDelVarSet() from public API, use SCIPdelNlpiVarSet() instead
1844- removed SCIPnlpiDelConsSet() from public API, use SCIPdelNlpiConsSet() instead
1845- removed SCIPnlpiChgLinearCoefs() from public API, use SCIPchgNlpiLinearCoefs() instead
1846- removed SCIPnlpiChgExprtree() from public API, use SCIPchgNlpiExpr() instead
1847- removed SCIPnlpiChgObjConstant() from public API, use SCIPchgNlpiObjConstant() instead
1848- removed SCIPnlpiSetInitialGuess() from public API, use SCIPsetNlpiInitialGuess() instead
1849- removed SCIPnlpiSolve() from public API, use SCIPsolveNlpiParam() instead
1850- removed SCIPnlpiGetSolstat() from public API, use SCIPgetNlpiSolstat() instead
1851- removed SCIPnlpiGetTermstat() from public API, use SCIPgetNlpiTermstat() instead
1852- removed SCIPnlpiGetSolution() from public API, use SCIPgetNlpiSolution() instead
1853- removed SCIPnlpiGetStatistics() from public API, use SCIPgetNlpiStatistics() instead
1854- removed SCIPnlpiGetWarmstartSize()
1855- removed SCIPnlpiGetWarmstartMemo()
1856- removed SCIPnlpiSetWarmstartMemo()
1857- removed SCIPnlpiGetIntPar()
1858- removed SCIPnlpiSetIntPar()
1859- removed SCIPnlpiGetRealPar()
1860- removed SCIPnlpiSetRealPar()
1861- removed SCIPnlpiGetStringPar(),
1862- removed SCIPnlpiSetStringPar()
1863- removed SCIPnlpiSetPriority() from public API, use SCIPsetNlpiPriority() instead
1864- removed argument nlpi from SCIPincludeNlpi() and added name, description, priority,
1865 nlpicopy, nlpifree, nlpigetsolverpointer, nlpicreateproblem, nlpifreeproblem, nlpigetproblempointer, nlpiaddvars, nlpiaddconstraints, nlpisetobjective, nlpichgvarbounds, nlpichgconssides, nlpidelvarset, nlpidelconsset, nlpichglinearcoefs, nlpichgexpr, nlpichgobjconstant, nlpisetinitialguess, nlpisolve, nlpigetsolstat, nlpigettermstat, nlpigetsolution, nlpigetstatistics, nlpidata
1866- removed SCIPcreateNlpSolverAll(), use SCIPincludeNlpSolverAll() instead
1867- removed SCIPcreateNlpSolverFilterSQP(), use SCIPincludeNlpSolverFilterSQP() instead
1868- removed SCIPcreateNlpSolverIpopt(), use SCIPincludeNlpSolverIpopt() instead
1869- removed SCIPcreateNlpSolverWorhp(), use SCIPincludeNlpSolverWorhp() instead
1870- replaced argument BMS_BLKMEM* blkmem of SCIPnlpiOracleCreate() by SCIP* scip
1871- added argument SCIP* scip to SCIPnlpiOracleFree(), SCIPnlpiOracleSetProblemName(), SCIPnlpiOracleAddVars(), SCIPnlpiOracleAddConstraints(), SCIPnlpiOracleSetObjective(), SCIPnlpiOracleChgVarBounds(), SCIPnlpiOracleChgConsSides(), SCIPnlpiOracleDelVarSet(), SCIPnlpiOracleDelConsSet(), SCIPnlpiOracleChgLinearCoefs(), SCIPnlpiOracleChgObjConstant(), SCIPnlpiOracleGetEvalCapability(), SCIPnlpiOracleEvalObjectiveValue(), SCIPnlpiOracleEvalConstraintValue(), SCIPnlpiOracleEvalConstraintValues(), SCIPnlpiOracleEvalObjectiveGradient(), SCIPnlpiOracleEvalConstraintGradient(), SCIPnlpiOracleGetJacobianSparsity(), SCIPnlpiOracleEvalJacobian(), SCIPnlpiOracleGetHessianLagSparsity(), SCIPnlpiOracleEvalHessianLag(), SCIPnlpiOraclePrintProblem(), SCIPnlpiOraclePrintProblemGams()
1872- removed arguments nquadelems, quadelems, exprvaridxs, exprtrees from SCIPnlpiOracleAddConstraints(), added argument SCIP_EXPR** exprs
1873- removed arguments nquadelems, quadelems, exprvaridxs, exprtree from SCIPnlpiOracleSetObjective(), added argument SCIP_EXPR* expr
1874- replaced arguments isnewx of SCIPnlpiOracleEvalHessianLag() by two arguments isnewx_obj and isnewx_cons
1875- removed SCIPnlpiOracleChgExprtree(), use SCIPnlpiOracleChgExpr() instead
1876- removed SCIPnlpiOracleSetInfinity(), SCIPnlpiOracleGetInfinity(), SCIPnlpiOracleChgQuadCoefs(), SCIPnlpiOracleChgExprParam(), SCIPnlpiOracleGetMaxDegree()
1877- removed SCIPnlpiOracleGetVarDegree() and SCIPnlpiOracleGetVarDegrees(), use SCIPnlpiOracleIsVarNonlinear() and SCIPnlpiOracleGetVarCounts(), respectively, instead
1878- removed SCIPnlpiOracleGetConstraintDegree(), use SCIPnlpiOracleIsConstraintNonlinear() instead
1879- removed argument messagehdlr from SCIPnlpiOraclePrintProblem() and SCIPnlpiOraclePrintProblemGams()
1880- removed SCIPcreateNlpiProb(), use SCIPcreateNlpiProblemFromNlRows() instead
1881- renamed SCIPupdateNlpiProb() to SCIPupdateNlpiProblem() and moved into scip_nlpi.{h,c}
1882- renamed SCIPaddNlpiProbRows() to SCIPaddNlpiProblemRows() and moved into scip_nlpi.{h,c}
1883- removed SCIPsetModifiedDefaultSettingsIpopt()
1884- removed SCIPgetIpoptApplicationPointerIpopt(), use SCIPgetNlpiSolverPointer() instead
1885- removed SCIPnlpStatisticsCreate(), SCIPnlpStatisticsFree(), SCIPnlpStatisticsGetNIterations(), SCIPnlpStatisticsGetTotalTime(), SCIPnlpStatisticsSetNIterations(), SCIPnlpStatisticsSetTotalTime(), the struct is public now
1886- renamed LapackDsyev() to SCIPcallLapackDsyevIpopt()
1887- renamed SCIPsolveLinearProb() to SCIPsolveLinearEquationsIpopt()
1888
1889Expression interpreter:
1890- removed functions that operated with SCIPInterval
1891- changed first argument of SCIPexprintCreate() to SCIP*
1892- added SCIP* as first argument to SCIPexprintFree()
1893- added SCIP* as first argument to SCIPexprintCompile(), changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA**
1894- added arguments SCIP*, SCIP_EXPRINT*, and SCIP_EXPR* as first arguments to SCIPexprintFreeData()
1895- renamed SCIPexprintGetExprtreeCapability() to SCIPexprintGetExprCapability();
1896 added SCIP* as first argument, changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA*
1897- removed SCIPexprintNewParametrization()
1898- SCIPexprintEval(): added SCIP* as first argument, changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA*
1899- removed SCIPexprintEvalInt()
1900- SCIPexprintGrad(): added SCIP* as first argument, changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA*
1901- removed SCIPexprintGradInt()
1902- removed SCIPexprintHessianSparsityDense() and SCIPexprintHessianDense, use SCIPexprintHessianSparsity() and SCIPexprintHessian() instead
1903
1904Expressions:
1905- removed SCIPexpropGetName(), use SCIPexprhdlrGetName() instead
1906- removed SCIPexpropGetNChildren()
1907- removed SCIPexprGetOperator(), use SCIPexprGetHdlr() instead
1908- removed SCIPexprGetOpIndex(), SCIPexprGetOpReal(), SCIPexprGetOpData(), use SCIPexprGetData() instead
1909- removed SCIPexprGetRealPowerExponent(), SCIPexprGetIntPowerExponent(), SCIPexprGetSignPowerExponent(), use SCIPgetExponentExprPow() instead
1910- removed SCIPexprGetLinearCoefs(), SCIPexprGetLinearConstant(), use SCIPgetCoefsExprSum() and SCIPgetConstantExprSum() instead
1911- removed SCIPexprGetQuadElements(), SCIPexprGetQuadConstant(), SCIPexprGetQuadLinearCoefs(), SCIPexprGetNQuadElements(), use SCIPexprGetQuadraticData(), SCIPexprGetQuadraticQuadTerm(), SCIPexprGetQuadraticBilinTerm() instead
1912- removed SCIPexprGetMonomials(), SCIPexprGetNMonomials, SCIPexprGetPolynomialConstant(), SCIPexprGetMonomialCoef(), SCIPexprGetMonomialNFactors(), SCIPexprGetMonomialChildIndices(), SCIPexprGetMonomialExponents()
1913- removed SCIPexprGetUserData(), SCIPexprHasUserEstimator(), SCIPexprGetUserEvalCapability()
1914- removed SCIPexprCreate(), use SCIPcreateExpr() instead
1915- removed SCIPexprCopyDeep(), use SCIPduplicateExpr() instead
1916- removed SCIPexprFreeDeep(), use SCIPreleaseExpr() instead
1917- removed SCIPexprFreeShallow()
1918- removed SCIPexprAdd(), SCIPexprMulConstant()
1919- removed SCIPexprCreateLinear(), use SCIPcreateExprSum() instead
1920- replaced SCIPexprAddToLinear() by SCIPappendExprSumExpr()
1921- replaced SCIPexprCreateQuadratic() by SCIPcreateExprQuadratic()
1922- removed SCIPexprSortQuadElems()
1923- removed SCIPexprCreatePolynomial(), SCIPexprAddMonomials(), SCIPexprChgPolynomialConstant(), SCIPexprMultiplyPolynomialByConstant(), SCIPexprMultiplyPolynomialByMonomial(), SCIPexprMultiplyPolynomialByPolynomial(), SCIPexprPolynomialPower()
1924- removed SCIPexprMergeMonomials(), SCIPexprFreeMonomial(), SCIPexprSortMonomialFactors(), SCIPexprFindMonomialFactor(), SCIPexprAreMonomialsEqual(), SCIPexprAddMonomialFactors(), SCIPexprChgMonomialCoef(), SCIPexprMultiplyMonomialByMonomial(), SCIPexprMonomialPower(), SCIPexprMergeMonomialFactors(), SCIPexprSortMonomials()
1925- replaced SCIPexprCreateMonomial() by SCIPcreateExprMonomial()
1926- removed SCIPexprCreateUser(), use SCIPincludeExprhdlr() instead
1927- removed SCIPexprHasParam(), SCIPexprGetMaxDegree(), SCIPexprGetVarsUsage()
1928- replaced SCIPexprAreEqual() by SCIPcompareExpr()
1929- replaced SCIPexprSimplify() by SCIPsimplifyExpr()
1930- replaced SCIPexprEvalShallow() by SCIPcallExprEval()
1931- replaced SCIPexprEval() by SCIPevalExpr()
1932- replaced SCIPexprEvalIntShallow() by SCIPcallExprInteval()
1933- replaced SCIPexprEvalInt() by SCIPevalExprActivity()
1934- removed SCIPexprEvalUser(), SCIPexprEvalIntUser(), SCIPexprEstimateUser()
1935- replaced SCIPexprCheckCurvature() by SCIPcomputeExprCurvature()
1936- removed SCIPexprSubstituteVars(), use SCIPcopyExpr() instead
1937- removed SCIPexprReindexVars(), SCIPexprReindexParams()
1938- replaced SCIPexprPrint() by SCIPprintExpr()
1939- replaced SCIPexprParse() by SCIPparseExpr()
1940
1941Expression tree:
1942- removed SCIPexprtreeGetVars(), SCIPexprtreeSetVars(), SCIPexprtreeAddVars(), SCIPexprtreePrintWithNames(), SCIPexprtreeFindVar()
1943- removed SCIPexprtreeGetRoot(), SCIPexprtreeGetNVars(), SCIPexprtreeGetNParams(), SCIPexprtreeGetParamVals(), SCIPexprtreeSetParamVal(), SCIPexprtreeHasParam()
1944- removed SCIPexprtreeGetInterpreterData(), SCIPexprtreeSetInterpreterData(), SCIPexprtreeFreeInterpreterData()
1945- removed SCIPexprtreeGetMaxDegree()
1946- removed SCIPexprtreeEval(), use SCIPevalExpr() instead
1947- removed SCIPexprtreeEvalInt(), use SCIPevalExprActivity() instead
1948- removed SCIPexprtreePrint(), use SCIPprintExpr() instead
1949- removed SCIPexprtreeCreate()
1950- removed SCIPexprtreeCopy(), use SCIPduplicateExpr() instead
1951- removed SCIPexprtreeFree(), use SCIPreleaseExpr() instead
1952- removed SCIPexprtreeSetParams(), SCIPexprtreeGetVarsUsage()
1953- removed SCIPexprtreeSimplify(), use SCIPsimplifyExpr() instead
1954- removed SCIPexprtreeAddExpr()
1955- removed SCIPexprtreeCheckCurvature(), use SCIPcomputeExprCurvature() instead
1956- removed SCIPexprtreeSubstituteVars(), use SCIPcopyExpr() instead
1957- removed SCIPquadelemSort(), SCIPquadelemSortedFind(), SCIPquadelemSqueeze()
1958
1959Expression graph:
1960- removed SCIPexprgraphCaptureNode(), use SCIPcaptureExpr() instead
1961- removed SCIPexprgraphIsNodeEnabled()
1962- removed SCIPexprgraphGetNodeNChildren(), use SCIPexprGetNChildren() instead
1963- removed SCIPexprgraphGetNodeChildren(), use SCIPexprGetChildren() instead
1964- removed SCIPexprgraphGetNodeNParents(), SCIPexprgraphGetNodeParents(), SCIPexprgraphGetNodeDepth(), SCIPexprgraphGetNodePosition()
1965- removed SCIPexprgraphGetNodeOperator(), use SCIPexprGetHdlr() instead
1966- removed SCIPexprgraphGetNodeOperatorIndex(), SCIPexprgraphGetNodeOperatorReal(), use SCIPexprGetData() instead
1967- removed SCIPexprgraphGetNodeVar(), use SCIPgetVarExprVar() instead
1968- removed SCIPexprgraphGetNodeRealPowerExponent(), SCIPexprgraphGetNodeIntPowerExponent(), SCIPexprgraphGetNodeSignPowerExponent(), use SCIPgetExponentExprPow() instead
1969- removed SCIPexprgraphGetNodeLinearCoefs(), SCIPexprgraphGetNodeLinearConstant(), use SCIPgetCoefsExprSum(), SCIPgetConstantExprSum() instead
1970- removed SCIPexprgraphGetNodeQuadraticConstant(), SCIPexprgraphGetNodeQuadraticLinearCoefs(), SCIPexprgraphGetNodeQuadraticQuadElements(), SCIPexprgraphGetNodeQuadraticNQuadElements(), use SCIPexprGetQuadraticData(), SCIPexprGetQuadraticQuadTerm(), SCIPexprGetQuadraticBilinTerm() instead
1971- removed SCIPexprgraphGetNodePolynomialMonomials(), SCIPexprgraphGetNodePolynomialNMonomials(), SCIPexprgraphGetNodePolynomialConstant(), SCIPexprgraphGetNodePolynomialMonomialCurvature()
1972- removed SCIPexprgraphGetNodeUserData(), SCIPexprgraphHasNodeUserEstimator()
1973- removed SCIPexprgraphGetNodeBounds(), use SCIPexprGetActivity() instead
1974- removed SCIPexprgraphGetNodeVal(), use SCIPexprGetEvalValue() instead
1975- removed SCIPexprgraphGetNodeCurvature(), use SCIPexprGetCurvature() instead
1976- removed SCIPexprgraphCreateNode()
1977- removed SCIPexprgraphCreateNodeLinear(), use SCIPcreateExprSum() instead
1978- removed SCIPexprgraphCreateNodeQuadratic(), use SCIPcreateExprQuadratic() instead
1979- removed SCIPexprgraphCreateNodePolynomial(), SCIPexprgraphNodePolynomialAddMonomials()
1980- removed SCIPexprgraphCreateNodeUser(), removed SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphMoveNodeParents()
1981- removed SCIPexprgraphReleaseNode(), use SCIPreleaseExpr() instead
1982- removed SCIPexprgraphFreeNode(), use SCIPreleaseExpr() instead
1983- removed SCIPexprgraphEnableNode(), SCIPexprgraphDisableNode()
1984- removed SCIPexprgraphHasNodeSibling(), SCIPexprgraphAreAllNodeChildrenVars(), SCIPexprgraphHasNodeNonlinearAncestor()
1985- removed SCIPexprgraphPrintNode(), SCIPprintExpr() instead
1986- removed SCIPexprgraphTightenNodeBounds()
1987- removed SCIPexprgraphUpdateNodeBoundsCurvature(), use SCIPevalExprActivity() and SCIPcomputeExprCurvature() instead
1988- removed SCIPexprgraphGetDepth(), SCIPexprgraphGetNNodes(), SCIPexprgraphGetNodes(), SCIPexprgraphGetNVars(), SCIPexprgraphGetVars()
1989- removed SCIPexprgraphGetVarNodes(), SCIPexprgraphSetVarNodeValue(), SCIPexprgraphSetVarsBounds(), SCIPexprgraphSetVarBounds(), SCIPexprgraphSetVarNodeBounds(), SCIPexprgraphSetVarNodeLb(), SCIPexprgraphSetVarNodeUb(), SCIPexprgraphGetVarsBounds()
1990- removed SCIPexprgraphCreate(), SCIPexprgraphFree()
1991- removed SCIPexprgraphAddNode(), SCIPexprgraphAddVars(), SCIPexprgraphAddConst(), SCIPexprgraphAddExprtreeSum()
1992- removed SCIPexprgraphReplaceVarByLinearSum(), SCIPexprgraphFindVarNode(), SCIPexprgraphFindConstNode()
1993- replaced SCIPexprgraphPrintDot() by SCIPprintExprDotInit[2](), SCIPprintExprDot(), SCIPprintExprDotFinal()
1994- removed SCIPexprgraphEval(), use SCIPevalExpr() instead
1995- removed SCIPexprgraphPropagateVarBounds(), SCIPexprgraphPropagateNodeBounds()
1996- removed SCIPexprgraphCheckCurvature(), use SCIPcomputeExprCurvature() instead
1997- removed SCIPexprgraphSimplify(), use SCIPsimplifyExpr() instead
1998- removed SCIPexprgraphGetTree(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphGetSubtreeVarsUsage(), SCIPexprgraphGetSumTreesNSummands(), SCIPexprgraphGetSumTrees()
1999
2000Constraint handlers for NLP:
2001- removed SCIPincludeConshdlrAbspower()
2002- deprecated SCIPcreateConsAbspower() and SCIPcreateConsBasicAbspower(), use SCIPcreateConsBasicSignpowerNonlinear() instead
2003- deprecated SCIPgetNlRowAbspower(), use SCIPgetNlRowNonlinear() instead
2004- removed SCIPgetNonlinearVarAbspower(), SCIPgetLinearVarAbspower(), SCIPgetExponentAbspower(), SCIPgetOffsetAbspower(), SCIPgetCoefLinearAbspower(), SCIPgetLhsAbspower(), SCIPgetRhsAbspower()
2005- removed SCIPgetViolationAbspower(), use SCIPgetAbsViolationNonlinear() instead
2006- removed SCIPisConvexAbspower(), use SCIPhasExprCurvature() instead
2007- removed SCIPincludeConshdlrBivariate(), SCIPcreateConsBivariate(), SCIPcreateConsBasicBivariate()
2008- removed SCIPgetLinearVarBivariate(), SCIPgetLinearCoefBivariate(), SCIPgetExprtreeBivariate(), SCIPgetLhsBivariate(), SCIPgetRhsBivariate()
2009- removed SCIPincludeConshdlrQuadratic(), use SCIPincludeNlhdlrQuadratic() instead
2010- removed SCIPincludeQuadconsUpgrade()
2011- removed SCIPcreateConsQuadratic2(), SCIPcreateConsBasicQuadratic2()
2012- deprecated SCIPcreateConsBasicQuadratic(), use SCIPcreateConsBasicQuadraticNonlinear() instead
2013- deprecated SCIPcreateConsQuadratic(), use SCIPcreateConsQuadraticNonlinear() instead
2014- deprecated SCIPaddConstantQuadratic(), use SCIPgetLhsNonlinear() and SCIPgetRhsNonlinear() instead
2015- deprecated SCIPaddLinearVarQuadratic(), use SCIPaddLinearVarNonlinear() instead
2016- deprecated SCIPaddQuadVarQuadratic(), use SCIPaddLinearVarNonlinear() and SCIPaddExprNonlinear() instead
2017- deprecated SCIPaddQuadVarLinearCoefQuadratic(), use SCIPaddLinearVarNonlinear() instead
2018- deprecated SCIPaddSquareCoefQuadratic(), use SCIPaddExprNonlinear() instead
2019- deprecated SCIPaddBilinTermQuadratic(), use SCIPaddExprNonlinear() instead
2020- deprecated SCIPchgLhsQuadratic(), use SCIPgetLhsNonlinear() instead
2021- deprecated SCIPchgRhsQuadratic(), use SCIPgetRhsNonlinear() instead
2022- deprecated SCIPgetNlRowQuadratic(), use SCIPgetNlRowNonlinear() instead
2023- removed SCIPgetNLinearVarsQuadratic(), SCIPgetLinearVarsQuadratic(), SCIPgetCoefsLinearVarsQuadratic(), SCIPgetNQuadVarTermsQuadratic(), SCIPgetQuadVarTermsQuadratic(), SCIPsortQuadVarTermsQuadratic(), SCIPfindQuadVarTermQuadratic(), SCIPgetNBilinTermsQuadratic(), SCIPgetBilinTermsQuadratic(), SCIPgetLhsQuadratic(), SCIPgetRhsQuadratic()
2024- removed SCIPgetLinvarMayDecreaseQuadratic(), SCIPgetLinvarMayIncreaseQuadratic()
2025- removed SCIPcheckCurvatureQuadratic() and SCIPisConvexConsQuadratic(), use SCIPcomputeExprQuadraticCurvature() instead
2026- removed SCIPisConvexQuadratic(), SCIPisConcaveQuadratic()
2027- removed SCIPgetViolationQuadratic() and SCIPgetFeasibilityQuadratic(), use SCIPgetAbsViolationNonlinear() instead
2028- removed SCIPisLinearLocalQuadratic(), SCIPaddToNlpiProblemQuadratic()
2029- removed SCIPchgLinearCoefQuadratic(), SCIPchgSquareCoefQuadratic(), SCIPchgBilinCoefQuadratic()
2030- renamed SCIPgetNAllBilinearTermsQuadratic() to SCIPgetNBilinTermsNonlinear() and changed argument from SCIP* to SCIP_CONSHDLR*
2031- renamed SCIPgetAllBilinearTermsQuadratic() to SCIPgetBilinTermsNonlinear() and replaced arguments by SCIP_CONSHDLR* and changed return type to SCIP_CONSNONLINEAR_BILINTERM*
2032- removed SCIPaddBilinearIneqQuadratic(), use SCIPinsertBilinearTermImplicitNonlinear() instead
2033- renamed SCIPcreateConsQuadratic() to SCIPcreateConsQuadraticNonlinear() and removed argument stickingatnode
2034- removed SCIPincludeConshdlrSOC()
2035- replaced SCIPcreateConsBasicSOC() by SCIPcreateConsBasicSOCNonlinear()
2036- deprecated SCIPcreateConsSOC(), use SCIPcreateConsBasicSOCNonlinear() instead
2037- deprecated SCIPgetNlRowSOC(), use SCIPgetNlRowNonlinear() instead
2038- removed SCIPgetNLhsVarsSOC(), SCIPgetLhsVarsSOC(), SCIPgetLhsCoefsSOC(), SCIPgetLhsOffsetsSOC(), SCIPgetLhsConstantSOC(), SCIPgetRhsVarSOC(), SCIPgetRhsCoefSOC(), SCIPgetRhsOffsetSOC(), use SCIPisSOCNonlinear() instead
2039- removed SCIPaddToNlpiProblemSOC()
2040- renamed SCIPincludeNonlinconsUpgrade() to SCIPincludeConsUpgradeNonlinear() and removed nodereform argument
2041- removed arguments nlinvars, linvars, lincoefs, nexprtrees, exprtrees, nonlincoefs, stickingatnode from SCIPcreateConsNonlinear() and added SCIP_EXPR* argument
2042- removed arguments nlinvars, linvars, lincoefs, nexprtrees, exprtrees, nonlincoefs from SCIPcreateConsBasicNonlinear() and added SCIP_EXPR* argument
2043- removed SCIPcreateConsNonlinear2(), SCIPcreateConsBasicNonlinear2()
2044- removed SCIPsetExprtreesNonlinear(), use SCIPchgExprNonlinear() instead
2045- removed SCIPaddExprtreesNonlinear()
2046- removed SCIPgetNLinearVarsNonlinear(), SCIPgetLinearVarsNonlinear(), SCIPgetLinearCoefsNonlinear()
2047- removed SCIPgetNExprtreesNonlinear(), SCIPgetExprtreesNonlinear(), SCIPgetExprtreeCoefsNonlinear(), SCIPgetExprgraphNodeNonlinear(), use SCIPgetExprNonlinear() instead
2048- removed argument scip from SCIPgetLhsNonlinear() and SCIPgetRhsNonlinear()
2049- removed SCIPcheckCurvatureNonlinear(), SCIPgetCurvatureNonlinear(), and SCIPgetExprtreeCurvaturesNonlinear(), use SCIPhasExprCurvature() instead
2050- renamed SCIPgetViolationNonlinear() to SCIPgetAbsViolationNonlinear()
2051- added arguments var and coef to SCIPgetLinvarMayDecreaseNonlinear() and SCIPgetLinvarMayIncreaseNonlinear() and changed return type to void
2052- removed SCIPgetExprgraphNonlinear()
2053- removed SCIPcomputeHyperplaneThreePoints(), use SCIPcomputeFacetVertexPolyhedralNonlinear() instead
2054
2055### New API functions
2056
2057- added SCIPallocClearMemory() and SCIPallocClearBlockMemory() to allocate a chunk of (block) memory
2058 that is initialized to zeros
2059- New internal functions for changing the default values of parameters:
2060 SCIPparamsetSetDefaultLongint(), SCIPparamsetSetDefaultReal(), SCIPparamsetSetDefaultChar(),
2061 SCIPparamsetSetDefaultString() and
2062 SCIPparamSetDefaultLongint(), SCIPparamSetDefaultReal(), SCIPparamSetDefaultChar(),
2063 SCIPparamSetDefaultString()
2064- new internal function SCIPisPackingPartitioningOrbitope() to check whether an orbitope is of
2065 packing or partitioning type
2066- new internal function SCIPcomputeOrbitVar() to compute the symmetry orbit of a variable
2067- added SCIPcalcFibHash(SCIP_Real) to hash a floating-point value to an unsigned integer
2068- added SCIPcomputeArraysIntersectionPtr() to compute intersection of two sorted arrays of pointers
2069- new function SCIPinterruptLP() (intended to be called from a different thread) that interrupts ongoing lp solve
2070- added SCIPcreateConsIndicatorGeneric() and SCIPcreateConsIndicatorGenericLinCons()
2071 which copy the interface of SCIPcreateConsIndicator() and SCIPcreateConsIndicatorLinCons() and
2072 add an activeone argument to specify whether the indicator constraint should be activated on 0 or 1.
2073 SCIPcreateConsIndicator() also adds a lessthanineq flag to choose whether the linear constraint is a less-than or greater-than inequality.
2074- added SCIPmarkDoNotAggrVar() to mark that a variable should not be aggregated
2075- added SCIPdoNotAggrVar() to query whether a variable should not be aggregated
2076- added SCIPdecompGetNBorderVars() and SCIPdecompGetNBorderConss() to get number of border variables/constraints
2077- added SCIPdecompGetVarsSize() and SCIPdecompGetConssSize() to get variable/constraint size for each block of a decomposition
2078- added SCIPincludeDialogDefaultBasic()
2079- added SCIPintervalAreDisjointEps(), SCIPintervalIntersectEps()
2080- added SCIPintervalEntropy()
2081- added SCIPintervalPropagateWeightedSum()
2082- added SCIPcalcRootNewton()
2083- added SCIPvarGetImplicVarBounds()
2084- added SCIPcreateRowprep(), SCIPfreeRowprep(), SCIPcopyRowprep(),
2085 SCIProwprepGetNVars(), SCIProwprepGetVars(), SCIProwprepGetCoefs(), SCIProwprepGetSide(), SCIProwprepGetSidetype(), SCIProwprepIsLocal(), SCIProwprepGetName(), SCIProwprepGetNModifiedVars(), SCIProwprepGetModifiedVars(),
2086 SCIProwprepReset(), SCIProwprepAddSide(), SCIProwprepAddConstant(), SCIProwprepSetSidetype(), SCIProwprepSetLocal(), SCIProwprepRecordModifications(),
2087 SCIPprintRowprep(), SCIPprintRowprepSol(), SCIPensureRowprepSize(), SCIPaddRowprepTerm(), SCIPaddRowprepTerms(), SCIPgetRowprepViolation(), SCIPisRowprepViolationReliable(),
2088 SCIPmergeRowprepTerms(), SCIPcleanupRowprep(), SCIPcleanupRowprep2(), SCIPscaleupRowprep(), SCIPscaleRowprep(),
2089 SCIPgetRowprepRowConshdlr(), SCIPgetRowprepRowCons(), SCIPgetRowprepRowSepa()
2090- added SCIPsetClockEnabled()
2091- added SCIPisSolveInterrupted() to check whether SCIPinterruptSolve() has been called
2092- added SCIPgetNPresolRounds()
2093- added SCIPgetNUnfixedLPCols()
2094- moved SCIPhistoryGetInferenceSum() and SCIPhistoryGetAvgConflictlength() from internal to public API
2095
2096Expression handler:
2097- added SCIPincludeExprhdlr(), SCIPgetExprhdlrs(), SCIPgetNExprhdlrs(), SCIPfindExprhdlr()
2098- added SCIPgetExprhdlrVar(), SCIPgetExprhdlrValue(), SCIPgetExprhdlrSum(), SCIPgetExprhdlrProduct(), SCIPgetExprhdlrPower()
2099- added SCIPexprhdlrSetCopyFreeHdlr(), SCIPexprhdlrSetCopyFreeData(), SCIPexprhdlrSetPrint(), SCIPexprhdlrSetParse(), SCIPexprhdlrSetCurvature(), SCIPexprhdlrSetMonotonicity(), SCIPexprhdlrSetIntegrality(), SCIPexprhdlrSetHash(), SCIPexprhdlrSetCompare(), SCIPexprhdlrSetDiff(), SCIPexprhdlrSetIntEval(), SCIPexprhdlrSetSimplify(), SCIPexprhdlrSetReverseProp(), SCIPexprhdlrSetEstimate()
2100- added SCIPexprhdlrGetName(), SCIPexprhdlrGetDescription(), SCIPexprhdlrGetPrecedence(), SCIPexprhdlrGetData(), SCIPexprhdlrHasPrint(), SCIPexprhdlrHasBwdiff(), SCIPexprhdlrHasFwdiff(), SCIPexprhdlrHasIntEval(), SCIPexprhdlrHasEstimate(), SCIPexprhdlrHasInitEstimates(), SCIPexprhdlrHasSimplify(), SCIPexprhdlrHasCurvature(), SCIPexprhdlrHasMonotonicity(), SCIPexprhdlrHasReverseProp()
2101- added SCIPexprhdlrComp()
2102- added SCIPexprhdlrGetNIntevalCalls(), SCIPexprhdlrGetIntevalTime(), SCIPexprhdlrGetNReversepropCalls(), SCIPexprhdlrGetReversepropTime(), SCIPexprhdlrGetNCutoffs(), SCIPexprhdlrGetNDomainReductions(), SCIPexprhdlrIncrementNDomainReductions(), SCIPexprhdlrGetNEstimateCalls(), SCIPexprhdlrGetEstimateTime(), SCIPexprhdlrGetNBranchings(), SCIPexprhdlrIncrementNBranchings(), SCIPexprhdlrGetNSimplifyCalls(), SCIPexprhdlrGetSimplifyTime(), SCIPexprhdlrGetNSimplifications()
2103- added SCIPprintExpressionHandlerStatistics()
2104- added SCIPincludeExprhdlrEntropy(), SCIPcreateExprEntropy(), SCIPisExprEntropy()
2105- added SCIPincludeExprhdlrErf(), SCIPcreateExprErf(), SCIPisExprErf()
2106- added SCIPcreateExprAbs(), SCIPincludeExprhdlrAbs(), SCIPisExprAbs()
2107- added SCIPcreateExprExp(), SCIPincludeExprhdlrExp(), SCIPisExprExp()
2108- added SCIPcreateExprLog(), SCIPincludeExprhdlrLog(), SCIPisExprLog()
2109- added SCIPcreateExprPow(), SCIPcreateExprSignpower(), SCIPincludeExprhdlrPow(), SCIPincludeExprhdlrSignpower(), SCIPisExprSignpower(), SCIPgetExponentExprPow(), SCIPisExprPower()
2110- added SCIPincludeExprhdlrProduct(), SCIPcreateExprProduct(), SCIPgetCoefExprProduct(), SCIPisExprProduct()
2111- added SCIPincludeExprhdlrSum(), SCIPcreateExprSum(), SCIPsetConstantExprSum(), SCIPappendExprSumExpr(), SCIPmultiplyByConstantExprSum(), SCIPgetCoefsExprSum(), SCIPgetConstantExprSum(), SCIPisExprSum()
2112- added SCIPincludeExprhdlrSin(), SCIPcreateExprSin(), SCIPincludeExprhdlrCos(), SCIPcreateExprCos(), SCIPisExprSin(), SCIPisExprCos()
2113- added SCIPincludeExprhdlrValue(), SCIPcreateExprValue(), SCIPgetValueExprValue(), SCIPisExprValue()
2114- added SCIPincludeExprhdlrVar(), SCIPcreateExprVar(), SCIPgetVarExprVar(), SCIPisExprVar()
2115- added SCIPincludeExprhdlrVaridx(), SCIPcreateExprVaridx(), SCIPisExprVaridx(), SCIPgetIndexExprVaridx(), SCIPsetIndexExprVaridx()
2116
2117Expression:
2118- added SCIPcaptureExpr(), SCIPreleaseExpr(), SCIPexprGetNUses()
2119- added SCIPexprGetHdlr(), SCIPexprGetData(), SCIPexprSetData(), SCIPexprGetOwnerData()
2120- added SCIPevalExpr(), SCIPgetExprNewSoltag(), SCIPexprGetEvalValue(), SCIPexprGetEvalTag()
2121- added SCIPevalExprGradient(), SCIPevalExprHessianDir(), SCIPexprGetDerivative(), SCIPexprGetDot(), SCIPexprGetBardot(), SCIPexprGetDiffTag()
2122- added SCIPevalExprActivity(), SCIPexprGetActivity(), SCIPexprGetActivityTag(), SCIPexprSetActivity()
2123- added SCIPcomputeExprCurvature(), SCIPexprGetCurvature(), SCIPexprSetCurvature()
2124- added SCIPcomputeExprIntegrality(), SCIPexprIsIntegral(), SCIPexprSetIntegrality()
2125- added SCIPcheckExprQuadratic(), SCIPfreeExprQuadratic(), SCIPevalExprQuadratic(), SCIPprintExprQuadratic(), SCIPcomputeExprQuadraticCurvature()
2126- added SCIPexprGetQuadraticData(), SCIPexprGetQuadraticQuadTerm(), SCIPexprGetQuadraticBilinTerm(), SCIPexprAreQuadraticExprsVariables()
2127- added SCIPcreateExpr(), SCIPcreateExpr2(), SCIPcreateExprQuadratic(), SCIPcreateExprMonomial()
2128- added SCIPappendExprChild(), SCIPreplaceExprChild(), SCIPremoveExprChildren()
2129- added SCIPduplicateExpr(), SCIPduplicateExprShallow(), SCIPcopyExpr()
2130- added SCIPparseExpr()
2131- added SCIPprintExpr(), SCIPdismantleExpr()
2132- added SCIPprintExprDotInit(), SCIPprintExprDotInit2(), SCIPprintExprDot(), SCIPprintExprDotFinal(), SCIPshowExpr()
2133- added SCIPcompareExpr(), SCIPhashExpr()
2134- added SCIPsimplifyExpr(), SCIPreplaceCommonSubexpressions()
2135- added SCIPgetExprNVars(), SCIPgetExprVarExprs()
2136- added SCIPcallExprPrint(), SCIPcallExprCurvature(), SCIPcallExprMonotonicity(), SCIPcallExprEval(), SCIPcallExprEvalFwdiff(), SCIPcallExprInteval(), SCIPcallExprEstimate(), SCIPcallExprInitestimates(), SCIPcallExprSimplify(), SCIPcallExprReverseprop()
2137- added SCIPexprcurvPowerInv(), SCIPexprcurvMonomialInv()
2138
2139Expression iterator:
2140- added SCIPcreateExpriter(), SCIPfreeExpriter()
2141- added SCIPexpriterIsInit(), SCIPexpriterInit()
2142- added SCIPexpriterRestartDFS(), SCIPexpriterSetStagesDFS(), SCIPexpriterGetCurrent(), SCIPexpriterGetStageDFS(), SCIPexpriterGetChildIdxDFS(), SCIPexpriterGetChildExprDFS(), SCIPexpriterGetParentDFS()
2143- added SCIPexpriterGetCurrentUserData(), SCIPexpriterGetChildUserDataDFS(), SCIPexpriterGetExprUserData(), SCIPexpriterSetCurrentUserData(), SCIPexpriterSetExprUserData(), SCIPexpriterSetChildUserData()
2144- added SCIPexpriterGetNext(), SCIPexpriterSkipDFS(), SCIPexpriterIsEnd()
2145- added SCIPexprintHessianSparsity(), SCIPexprintHessian()
2146
2147Constraint handlers for NLP:
2148- added SCIPgetCurBoundsTagNonlinear(), SCIPgetLastBoundRelaxTagNonlinear(), SCIPincrementCurBoundsTagNonlinear()
2149- added SCIPgetVarExprHashmapNonlinear()
2150- added SCIPprocessRowprepNonlinear()
2151- added SCIPassumeConvexNonlinear()
2152- added SCIPcollectBilinTermsNonlinear(), SCIPgetBilinTermIdxNonlinear(), SCIPgetBilinTermNonlinear(), SCIPevalBilinAuxExprNonlinear(), SCIPinsertBilinearTermExistingNonlinear(), SCIPinsertBilinearTermImplicitNonlinear()
2153- added SCIPcomputeFacetVertexPolyhedralNonlinear()
2154- added SCIPgetExprNonlinear()
2155- added SCIPcheckQuadraticNonlinear(), SCIPchgLhsNonlinear(), SCIPchgRhsNonlinear(), SCIPchgExprNonlinear(), SCIPaddExprNonlinear()
2156- added SCIPgetRelViolationNonlinear()
2157- added SCIPgetExprNLocksPosNonlinear(), SCIPgetExprNLocksNegNonlinear(), SCIPgetExprAuxVarNonlinear(), SCIPgetExprNEnfosNonlinear(), SCIPgetExprEnfoDataNonlinear(), SCIPsetExprEnfoAuxValueNonlinear()
2158- added SCIPgetExprNPropUsesActivityNonlinear(), SCIPgetExprNSepaUsesActivityNonlinear(), SCIPgetExprNAuxvarUsesNonlinear(), SCIPregisterExprUsageNonlinear()
2159- added SCIPgetExprAbsOrigViolationNonlinear(), SCIPgetExprAbsAuxViolationNonlinear(), SCIPgetExprRelAuxViolationNonlinear()
2160- added SCIPgetExprBoundsNonlinear(), SCIPtightenExprIntervalNonlinear(), SCIPmarkExprPropagateNonlinear()
2161- added SCIPaddExprViolScoreNonlinear(), SCIPaddExprsViolScoreNonlinear(), SCIPgetExprViolScoreNonlinear()
2162- added SCIPgetExprPartialDiffNonlinear(), SCIPgetExprPartialDiffGradientDirNonlinear()
2163- added SCIPevalExprQuadraticAuxNonlinear()
2164- added SCIPincludeNlhdlrNonlinear(), SCIPfindNlhdlrNonlinear(), SCIPgetNNlhdlrsNonlinear(), SCIPgetNlhdlrsNonlinear(), SCIPgetNlhdlrExprDataNonlinear()
2165- added SCIPcreateConsQuadraticNonlinear() and SCIPcreateConsBasicQuadraticNonlinear() to create a nonlinear constraint that is quadratic
2166- added SCIPcreateConsBasicSignpowerNonlinear() to create a nonlinear constraint that looks like the former abspower or signpower constraints
2167
2168Nonlinear Handler:
2169- added SCIPincludeNlhdlrBilinear(), SCIPgetExprsBilinear(), SCIPgetNExprsBilinear(), SCIPaddIneqBilinear()
2170- added SCIPincludeNlhdlrConvex(), SCIPincludeNlhdlrConcave(), SCIPhasExprCurvature()
2171- added SCIPincludeNlhdlrDefault()
2172- added SCIPincludeNlhdlrPerspective()
2173- added SCIPincludeNlhdlrQuadratic()
2174- added SCIPincludeNlhdlrQuotient()
2175- added SCIPincludeNlhdlrSoc(), SCIPisSOCNonlinear(), SCIPfreeSOCArraysNonlinear()
2176- added SCIPnlhdlrSetCopyHdlr(), SCIPnlhdlrSetFreeHdlrData(), SCIPnlhdlrSetFreeExprData(), SCIPnlhdlrSetInitExit(), SCIPnlhdlrSetProp(), SCIPnlhdlrSetSepa()
2177- added SCIPnlhdlrGetName(), SCIPnlhdlrGetDesc(), SCIPnlhdlrGetDetectPriority(), SCIPnlhdlrGetEnfoPriority(), SCIPnlhdlrIsEnabled(), SCIPnlhdlrGetData()
2178- added SCIPnlhdlrHasIntEval(), SCIPnlhdlrHasReverseProp(), SCIPnlhdlrHasInitSepa(), SCIPnlhdlrHasExitSepa(), SCIPnlhdlrHasEnfo(), SCIPnlhdlrHasEstimate()
2179- added SCIPnlhdlrComp()
2180
2181NLPI:
2182- added SCIPgetNlpiSolverPointer(), SCIPcreateNlpiProblem(), SCIPfreeNlpiProblem(), SCIPgetNlpiProblemPointer(), SCIPaddNlpiVars(), SCIPaddNlpiConstraints(), SCIPsetNlpiObjective(), SCIPchgNlpiVarBounds(), SCIPchgNlpiConsSides(), SCIPdelNlpiVarSet(), SCIPdelNlpiConsSet(), SCIPchgNlpiLinearCoefs(), SCIPchgNlpiExpr(), SCIPchgNlpiObjConstant(), SCIPsetNlpiInitialGuess(), SCIPsolveNlpiParam(), SCIPgetNlpiSolstat(), SCIPgetNlpiTermstat(), SCIPgetNlpiSolution(), SCIPgetNlpiStatistics()
2183- added SCIPincludeNlpSolverAll()
2184- added SCIPincludeNlpSolverFilterSQP(), SCIPgetSolverNameFilterSQP(), SCIPgetSolverDescFilterSQP(), SCIPisFilterSQPAvailableFilterSQP()
2185- added SCIPincludeNlpSolverIpopt()
2186- added SCIPincludeNlpSolverWorhp()
2187- added SCIPnlpiOracleChgExpr()
2188- added SCIPcreateNlpiProblemFromNlRows()
2189- added SCIPnlpiOracleGetObjectiveConstant()
2190- added SCIPnlpiOracleIsVarNonlinear(), SCIPnlpiOracleGetVarCounts(), SCIPnlpiOracleIsConstraintNonlinear()
2191- added SCIPnlpiGetNProblems(), SCIPnlpiGetProblemTime(), SCIPnlpiGetNSolves(), SCIPnlpiGetSolveTime(), SCIPnlpiGetEvalTime(), SCIPnlpiGetNIterations(), SCIPnlpiGetNTermStat(), SCIPnlpiGetNSolStat(), SCIPnlpiMergeStatistics()
2192- added SCIPmergeNLPIStatistics(), SCIPprintNLPIStatistics()
2193- added SCIPnlpiOracleResetEvalTime(), SCIPnlpiOracleGetEvalTime()
2194- added SCIPaddNlpiProblemNlRows()
2195
2196Cut Selector:
2197- added SCIPincludeCutsel(), SCIPincludeCutselBasic(), SCIPsetCutselCopy(), SCIPsetCutselFree(), SCIPsetCutselInit(), SCIPsetCutselExit(), SCIPsetCutselInitsol(), SCIPsetCutselExitsol(), SCIPfindCutsel(), SCIPgetCutsels(), SCIPgetNCutsels(), SCIPsetCutselPriority()
2198- added SCIPcutselGetName(), SCIPcutselGetData(), SCIPcutselGetDesc(), SCIPcutselGetPriority(), SCIPcutselSetData(), SCIPcutselIsInitialized(), SCIPcutselGetSetupTime(), SCIPcutselGetTime()
2199
2200### Command line interface
2201### Interfaces to external software
2202
2203- removed GAMS interface (originally in interfaces/gams) and reading capability of gms reader;
2204 the removed interface was a poorly maintained copy of the GAMS/SCIP interface that is available at
2205 https://github.com/coin-or/GAMSlinks
2206- integrated AMPL interface into main SCIP executable, that is, added possibility to use SCIP executable as solver in AMPL
2207 (AMPL calls solver with name of .nl file and -AMPL as arguments; SCIP will then attempt to solve the problem and write an AMPL solution file)
2208- the ZIMPL interface has been updated to support ZIMPL 3.4.1;
2209 the minimal required ZIMPL version is now 3.4.1
2210
2211### Changed parameters
2212
2213- Extended range of parameter "misc/usesymmetry" from [0,3] to [0,7], changed default from 3 to 5
2214- deleted parameter "constraints/orbitope/usedynamicprop"
2215- changed type of parameter "propagating/symmetry/recomputerestart" from SCIP_Bool to int with range [0,2]
2216- deleted parameter "propagating/symmetry/disableofrestart"
2217- parameter "heuristics/padm/original" is now an advanced parameter
2218- removed constraints/nonlinear/linfeasshift, constraints/nonlinear/reformulate, constraints/nonlinear/maxexpansionexponent, constraints/nonlinear/sepanlpmincont
2219- removed constraints/nonlinear/upgrade/abspower
2220- removed constraints/nonlinear/upgrade/and, use constraints/nonlinear/reformbinprodsand instead
2221- removed constraints/nonlinear/upgrade/bivariate
2222- removed constraints/nonlinear/upgrade/quadratic, use nlhdlr/quadratic/enabled instead
2223- changed default of constraints/nonlinear/maxproprounds from 1 to 10
2224- replaced constraints/nonlinear/enfocutsremovable by constraints/nonlinear/rownotremovable
2225- replaced constraints/nonlinear/cutmaxrange by separating/maxcoefratiofacrowprep
2226- removed constraints/quadratic/sepafreq, constraints/quadratic/propfreq, constraints/quadratic/proptiming, constraints/quadratic/eagerfreq, constraints/quadratic/maxprerounds, constraints/quadratic/delaysepa, constraints/quadratic/delayprop, constraints/quadratic/presoltiming
2227- removed constraints/quadratic/replacebinaryprod, use constraints/nonlinear/reformbinprodsfac instead
2228- removed constraints/quadratic/empathy4and, use constraints/nonlinear/reformbinprodsand instead
2229- removed constraints/quadratic/binreforminitial, constraints/quadratic/binreformbinaryonly, constraints/quadratic/binreformmaxcoef
2230- removed constraints/quadratic/cutmaxrange, constraints/quadratic/mincurvcollectbilinterms, constraints/quadratic/linearizeheursol, constraints/quadratic/checkcurvature, constraints/quadratic/checkfactorable, constraints/quadratic/checkquadvarlocks, constraints/quadratic/linfeasshift
2231- removed constraints/quadratic/maxdisaggrsize, constraints/quadratic/disaggrmergemethod, constraints/quadratic/maxproprounds, constraints/quadratic/maxproproundspresolve, constraints/quadratic/enfolplimit, constraints/quadratic/sepanlpmincont, constraints/quadratic/enfocutsremovable
2232- removed constraints/quadratic/gaugecuts, constraints/quadratic/interiorcomputation, constraints/quadratic/projectedcuts, constraints/quadratic/branchscoring, constraints/quadratic/usebilinineqbranch, constraints/quadratic/bilinineqmaxseparounds,
2233- removed constraints/quadratic/minscorebilinterms, use nlhdlr/bilinear/enabled instead
2234- removed constraints/quadratic/upgrade/linear, constraints/quadratic/upgrade/abspower, constraints/quadratic/upgrade/bivariate, constraints/quadratic/upgrade/bounddisjunction
2235- removed constraints/quadratic/upgrade/soc, use nlhdlr/soc/enabled instead
2236- renamed constraints/quadratic/upgrade/setppc to constraints/nonlinear/upgrade/setppc
2237- removed constraints/abspower/sepafreq, constraints/abspower/propfreq, constraints/abspower/proptiming, constraints/abspower/eagerfreq, constraints/abspower/maxprerounds, constraints/abspower/delaysepa, constraints/abspower/delayprop, constraints/abspower/presoltiming
2238- removed constraints/abspower/cutmaxrange, constraints/abspower/projectrefpoint, constraints/abspower/preferzerobranch, constraints/abspower/branchminconverror, constraints/abspower/addvarboundcons, constraints/abspower/linfeasshift, constraints/abspower/dualpresolve, constraints/abspower/sepainboundsonly, constraints/abspower/sepanlpmincont, constraints/abspower/enfocutsremovable
2239- removed constraints/bivariate/sepafreq, constraints/bivariate/propfreq, constraints/bivariate/proptiming, constraints/bivariate/eagerfreq, constraints/bivariate/maxprerounds, constraints/bivariate/delaysepa, constraints/bivariate/delayprop, constraints/bivariate/presoltiming
2240- removed constraints/bivariate/cutmaxrange, constraints/bivariate/linfeasshift, constraints/bivariate/maxproprounds, constraints/bivariate/ninitlprefpoints, constraints/bivariate/enfocutsremovable
2241- removed constraints/soc/sepafreq, constraints/soc/propfreq, constraints/soc/proptiming, constraints/soc/eagerfreq, constraints/soc/maxprerounds, constraints/soc/delaysepa, constraints/soc/delayprop, constraints/soc/presoltiming
2242- removed constraints/soc/projectpoint, constraints/soc/nauxvars, constraints/soc/glineur, constraints/soc/sparsify, constraints/soc/sparsifymaxloss, constraints/soc/sparsifynzgrowth, constraints/soc/linfeasshift, constraints/soc/nlpform, constraints/soc/sepanlpmincont, constraints/soc/enfocutsremovable, constraints/soc/disaggregate
2243- removed constraints/soc/generalsocupgrade, use nlhdlr/soc/compeigenvalues instead
2244- changed default of presolving/qpkktref/maxrounds from -1 to 0
2245- changed default of propagating/obbt/onlynonconvexvars from FALSE to TRUE
2246- changed default of heuristics/subnlp/resolvetolfactor from 0.001 to 1.0
2247- removed heuristics/subnlp/nlpoptfile, use nlpi/ipopt/optfile instead
2248- removed separating/convexproj/nlptimelimit
2249- removed separating/gauge/nlptimelimit
2250- removed heuristics/subnlp/nlptimelimit and heuristics/subnlp/nlpiterlimit
2251- removed heuristics/subnlp/resolvetolfactor and heuristics/subnlp/resolvefromscratch
2252- changed default of heuristics/subnlp/itermin to 20
2253- renamed heuristics/subnlp/iteroffset to heuristics/subnlp/nodesoffset
2254- renamed heuristics/subnlp/iterquotient to heuristics/subnlp/nodesfactor
2255- removed heuristics/subnlp/runalways, use heuristics/subnlp/nodesoffset=INT_MAX and heuristics/subnlp/successrateexp = 0.0 instead
2256- removed heuristics/subnlp/minimprove, heuristics/multistart/nlpminimpr
2257- Removed parameters for strongcg separator: separating/strongcg/..., i.e.,
2258 maxrounds, maxroundsroot, maxsepacutsroot, maxsepacuts, dynamiccuts. One can control the
2259 strongcg behavior throught the parameters of sepa_gomory.
2260- renamed separating/{minortho,minorthoroot,objparalfac,intsupportfac} to cutselection/hybrid/{minortho,minorthoroot,objparalweight,intsupportweight}
2261
2262### New parameters
2263
2264- It is now possible to add orbitope constraints to handle symmetries even if not all variables
2265 in a component of the symmetry group are binary. This feature can be enabled using the
2266 parameter "propagating/symmetry/onlybinorbitope".
2267
2268- new parameter "propagating/symmetry/sstleaderrule" to select a rule for selecting the
2269 leader in SST cuts
2270- new parameter "propagating/symmetry/ssttiebreakrule" to select a tiebreak rule for selecting the
2271 leader in SST cuts
2272- new parameter "propagating/symmetry/sstleadervartype" to select the possible variable types
2273 for a leader in SST cuts
2274- new parameter "propagating/symmetry/addconflictcuts" to control whether SST cuts are added if
2275 a binary leader variable is in conflict with a variable in its orbit
2276- new parameter "propagating/symmetry/sstaddcuts" to control whether SST cuts are added
2277- new parameter "propagating/symmetry/sstmixedcomponents" to control whether SST cuts are added
2278 if a symmetry component contains variables of different types
2279- new parameter "propagating/symmetry/detectsubgroups" to search for orbitopes defined by subgroups
2280- new parameter "propagating/symmetry/addweaksbcs" to add Schreier Sims cuts for a single
2281 variable orbit in case an orbitope subgroup is detected
2282- new parameter "propagating/symmetry/addstrongsbcs" to add symretope facets for a single
2283 variable orbit on which the symmetry group acts like a symmetric group
2284- new parameter "propagating/symmetry/maxnconsssubgroup" to control up to which number of
2285 constraints subgroups are detected
2286- new parameter "propagating/symmetry/preferlessrows" to control whether orbitopes with
2287 smallest number of rows shall be computed by the subgroup detection heuristic
2288- new parameter "propagating/symmetry/usedynamicprop" to control if rows of full orbitope
2289 shall be ordered dynamically in propagation
2290- new parameter "separating/filtercutpoolrel" to control whether cutpool uses
2291 a dynamic strategy to separate only cuts with high relative efficacy
2292- if run from AMPL: display/statistics to enable printing detailed solve statistics after solve
2293- if run from AMPL: display/logfile to specify name of file to write SCIP log to (additionally to writing to stdout)
2294- constraints/nonlinear/propauxvars, constraints/nonlinear/varboundrelax, constraints/nonlinear/varboundrelaxamount, constraints/nonlinear/conssiderelaxamount
2295- constraints/nonlinear/vpmaxperturb, constraints/nonlinear/vpadjfacetthresh, constraints/nonlinear/vpdualsimplex
2296- constraints/nonlinear/bilinmaxnauxexprs, constraints/nonlinear/forbidmultaggrnlvar, constraints/nonlinear/checkvarlocks, constraints/nonlinear/violscale
2297- constraints/nonlinear/reformbinprods, constraints/nonlinear/reformbinprodsand, constraints/nonlinear/reformbinprodsfac
2298- constraints/nonlinear/tightenlpfeastol, constraints/nonlinear/propinenforce, constraints/nonlinear/weakcutthreshold, constraints/nonlinear/strongcutmaxcoef, constraints/nonlinear/strongcutefficacy, constraints/nonlinear/forcestrongcut, constraints/nonlinear/enfoauxviolfactor, constraints/nonlinear/weakcutminviolfactor
2299- constraints/nonlinear/branching/aux, constraints/nonlinear/branching/external, constraints/nonlinear/branching/highviolfactor, constraints/nonlinear/branching/highscorefactor, constraints/nonlinear/branching/violweight, constraints/nonlinear/branching/dualweight, constraints/nonlinear/branching/pscostweight, constraints/nonlinear/branching/domainweight, constraints/nonlinear/branching/vartypeweight, constraints/nonlinear/branching/scoreagg, constraints/nonlinear/branching/violsplit, constraints/nonlinear/branching/pscostreliable
2300- constraints/nonlinear/linearizeheursol
2301- nlhdlr/default/enabled
2302- nlhdlr/convex/enabled, nlhdlr/convex/detectsum, nlhdlr/convex/extendedform, nlhdlr/convex/cvxquadratic, nlhdlr/convex/cvxsignomial, nlhdlr/convex/cvxprodcomp, nlhdlr/convex/handletrivial
2303- nlhdlr/concave/enabled, nlhdlr/concave/detectsum, nlhdlr/concave/cvxquadratic, nlhdlr/concave/cvxsignomial, nlhdlr/concave/cvxprodcomp, nlhdlr/concave/handletrivial
2304- nlhdlr/bilinear/enabled, nlhdlr/bilinear/useinteval, nlhdlr/bilinear/usereverseprop, nlhdlr/bilinear/maxseparoundsroot, nlhdlr/bilinear/maxseparounds, nlhdlr/bilinear/maxsepadepth
2305- nlhdlr/perspective/enabled, nlhdlr/perspective/maxproprounds, nlhdlr/perspective/mindomreduction, nlhdlr/perspective/minviolprobing, nlhdlr/perspective/probingonlyinsepa, nlhdlr/perspective/probingfreq, nlhdlr/perspective/convexonly, nlhdlr/perspective/tightenbounds, nlhdlr/perspective/adjrefpoint
2306- nlhdlr/quadratic/enabled, nlhdlr/quadratic/useintersectioncuts, nlhdlr/quadratic/usestrengthening, nlhdlr/quadratic/useboundsasrays, nlhdlr/quadratic/ncutslimit, nlhdlr/quadratic/ncutslimitroot, nlhdlr/quadratic/maxrank, nlhdlr/quadratic/mincutviolation, nlhdlr/quadratic/minviolation, nlhdlr/quadratic/atwhichnodes, nlhdlr/quadratic/nstrengthlimit, nlhdlr/quadratic/ignorebadrayrestriction, nlhdlr/quadratic/ignorehighre
2307- nlhdlr/quotient/enabled
2308- nlhdlr/soc/enabled, nlhdlr/soc/mincutefficacy, nlhdlr/soc/compeigenvalues
2309- propagating/obbt/createlincons
2310- propagating/symmetry/onlybinarysymmetry
2311- separating/minor/priority, separating/minor/freq, separating/minor/maxbounddist, separating/minor/delay, separating/minor/expbackoff, separating/minor/maxminorsconst, separating/minor/maxminorsfac, separating/minor/mincutviol, separating/minor/maxrounds, separating/minor/maxroundsroot, separating/minor/ignorepackingconss
2312- separating/rlt/priority, separating/rlt/freq, separating/rlt/maxbounddist, separating/rlt/delay, separating/rlt/expbackoff, separating/rlt/maxncuts, separating/rlt/maxunknownterms, separating/rlt/maxusedvars, separating/rlt/maxrounds, separating/rlt/maxroundsroot, separating/rlt/onlyeqrows, separating/rlt/onlycontrows, separating/rlt/onlyoriginal, separating/rlt/useinsubscip, separating/rlt/useprojection, separating/rlt/detecthidden, separating/rlt/hiddenrlt, separating/rlt/addtopool, separating/rlt/goodscore, separating/rlt/badscore, separating/rlt/objparalweight, separating/rlt/efficacyweight, separating/rlt/dircutoffdistweight, separating/rlt/goodmaxparall, separating/rlt/maxparall
2313- separating/interminor/usestrengthening, separating/interminor/usebounds, separating/interminor/mincutviol, separating/interminor/maxrounds, separating/interminor/maxroundsroot
2314- table/cons_nonlinear/active, table/nlhdlr/active, table/exprhdlr/active, table/nlpi/active, table/nlhdlr_bilinear/active, table/nlhdlr_quadratic/active
2315- expr/log/minzerodistance, expr/pow/minzerodistance
2316- benders/default/maxslackvarcoef to specify maximal coefficient for slack variables; if exceeded, slack variables are fixed to zero
2317- nlpi/ipopt/optfile to specify name of Ipopt options file to use for every solve with Ipopt
2318- nlpi/ipopt/print_level, nlpi/ipopt/hsllib, nlpi/ipopt/pardisolib, nlpi/ipopt/linear_solver, nlpi/ipopt/linear_system_scaling, nlpi/ipopt/nlp_scaling_method, nlpi/ipopt/mu_strategy, nlpi/ipopt/hessian_approximation
2319- nlpi/ipopt/warm_start_push
2320- timing/nlpieval
2321- heuristics/subnlp/iterinit, heuristics/subnlp/ninitsolves, heuristics/subnlp/successrateexp
2322- heuristics/subnlp/expectinfeas, heuristics/subnlp/opttol, heuristics/subnlp/feastolfactor
2323- heuristics/subnlp/presolveemphasis, heuristics/subnlp/setcutoff
2324- new parameters "branching/inference/conflictprio" and "branching/inference/cutoffprio" that allow
2325 using the different score criteria in inference branching hierarchically
2326- new parameters "heuristics/alns/nodesquotmin", "heuristics/alns/maxcallssamesol" and "heuristics/alns/initduringroot"
2327 to control neighborhoods in ALNS
2328- new parameter "benders/default/benderscut/optimality/mir" to control whether mixed-integer rounding procedure is applied to Benders optimality cuts
2329- new parameter "misc/avoidmemout" to try to avoid running into memory limit
2330- cutselection/hybrid/dircutoffdistweight, cutselection/hybrid/efficacyweight, cutselection/hybrid/intsupportweight, cutselection/hybrid/objparalweight, cutselection/hybrid/priority
2331- new parameter "decomposition/disablemeasures" to disable expensive measures in SCIPcomputeDecompStats()
2332- new parameter "presolving/milp/probfilename" filename to write the problem to a file before MILP presolving starts
2333
2334### Data structures
2335
2336- removed quadratic terms from NLROWs
2337- removed SCIP_NLPPAR_INFINITY from SCIP_NLPPARAM enum
2338- added types SYM_OPTYPE, SYM_CONSTTYPE, SYM_RHSTYPE, SYM_EXPRDATA
2339- removed class SCIPInterval
2340- removed enum SCIP_EXPROP
2341- removed union SCIP_EXPROPDATA, added SCIP_EXPRDATA
2342- removed struct SCIP_EXPRTREE, use SCIP_EXPR instead
2343- removed structs SCIP_QUADELEM, SCIP_EXPRDATA_QUADRATIC, SCIP_EXPRDATA_MONOMIAL, SCIP_EXPRDATA_POLYNOMIAL, SCIP_EXPRDATA_USER
2344- removed structs SCIP_EXPRGRAPHNODE, SCIP_EXPRGRAPH
2345- removed type SCIP_EXPRBOUNDSTATUS
2346- removed struct SCIP_USEREXPRDATA
2347- added enum SCIP_MONOTONE
2348- added structs SCIP_EXPRHDLR, SCIP_EXPRHDLRDATA
2349- added union SCIP_EXPRITER_USERDATA
2350- added enum SCIP_EXPRITER_TYPE
2351- added structs SCIP_EXPRITERDATA, SCIP_EXPRITER
2352- added type SCIP_EXPRPRINT_WHAT, struct SCIP_EXPRPRINTDATA
2353- removed enum SCIP_BIVAR_CONVEXITY
2354- removed structs SCIP_QUADVAREVENTDATA, SCIP_QUADVARTERM, SCIP_BILINTERM
2355- added structs SCIP_CONSNONLINEAR_AUXEXPR, SCIP_CONSNONLINEAR_BILINTERM
2356- added type SCIP_NLHDLR_METHOD
2357- added structs SCIP_NLHDLR, SCIP_NLHDLRDATA, SCIP_NLHDLREXPRDATA
2358- enum SCIP_NLPPARAM has been changed to a struct that holds values of parameters for an NLP solve
2359- removed SCIP_NLPPAR_OPTFILE/optfile from SCIP_NLPPARAM
2360- added SCIP_NLPTERMSTAT_INTERRUPT to SCIP_NLPTERMSTAT enum; returned from NLP solver if SCIPinterruptSolve() has been called
2361- renamed SCIP_NLPTERMSTAT_TILIM to SCIP_NLPTERMSTAT_TIMELIMIT
2362- renamed SCIP_NLPTERMSTAT_ITLIM to SCIP_NLPTERMSTAT_ITERLIMIT
2363- renamed SCIP_NLPTERMSTAT_LOBJLIM to SCIP_NLPTERMSTAT_LOBJLIMIT
2364- renamed SCIP_NLPTERMSTAT_NUMERR to SCIP_NLPTERMSTAT_NUMERICERROR
2365- renamed SCIP_NLPTERMSTAT_EVALERR to SCIP_NLPTERMSTAT_EVALERROR
2366- renamed SCIP_NLPTERMSTAT_MEMERR to SCIP_NLPTERMSTAT_OUTOFMEMORY
2367- renamed SCIP_NLPTERMSTAT_LICERR to SCIP_NLPTERMSTAT_LICENSEERROR
2368- added evaltime to SCIP_NLPSTATISTICS
2369- added structs SCIP_CUTSEL, SCIP_CUTSELDATA
2370
2371Deleted files
2372-------------
2373
2374- interfaces/gams/∗
2375- interfaces/ampl/∗
2376- src/nlpi/∗
2377- src/scip/cons_bivariate.{c,h}
2378- src/scip/pub_misc_nonlinear.h
2379- src/scip/misc_nonlinear.c
2380- src/scip/scip_nonlinear.{c,h}
2381- src/scip/sepa_strongcg.{h|c}
2382
2383Unit tests
2384----------
2385
2386- added cons/linear/nonlinupgd.c
2387- added cons/nonlinear/addcons.c
2388- added cons/nonlinear/bilinhash.c
2389- added cons/nonlinear/check.c
2390- added cons/nonlinear/copy.c
2391- added cons/nonlinear/create_nlrow.c
2392- added cons/nonlinear/curvature.c
2393- added cons/nonlinear/glbconss.c
2394- added cons/nonlinear/hessian.c
2395- added cons/nonlinear/locks.c
2396- added cons/nonlinear/nlhdlr.c
2397- added cons/nonlinear/nlhdlr_bilinear.c
2398- added cons/nonlinear/nlhdlr_concave.c
2399- added cons/nonlinear/nlhdlr_convex.c
2400- added cons/nonlinear/nlhdlr_perspective.c
2401- added cons/nonlinear/nlhdlr_quadratic.c
2402- added cons/nonlinear/nlhdlr_quotient.c
2403- added cons/nonlinear/nlhdlr_soc.c
2404- added cons/nonlinear/parse.c
2405- added cons/nonlinear/presolve.c
2406- added cons/nonlinear/propagate.c
2407- added cons/nonlinear/readers.c
2408- added cons/nonlinear/reformbinprods.c
2409- added cons/nonlinear/repair.c
2410- added cons/nonlinear/transform.c
2411- added cons/nonlinear/vertexpolyhedral.c
2412- removed cons/nonlinear/getCoeffsAndConstantFromLinearExpr.c
2413- removed cons/soc/upgrade.c
2414- added expr/abs/estimation.c
2415- added expr/commonsubexprs.c
2416- added expr/compare.c
2417- added expr/copy.c
2418- added expr/cos/cos.c
2419- added expr/cos/estimation.c
2420- added expr/curvature.c
2421- added expr/derivative.c
2422- added expr/entropy/entropy.c
2423- added expr/entropy/estimation.c
2424- added expr/eval.c
2425- added expr/exp/estimation.c
2426- added expr/free.c
2427- added expr/getvarexprs.c
2428- added expr/hash.c
2429- added expr/hessian.c
2430- added expr/integrality.c
2431- added expr/iterator.c
2432- added expr/log/estimation.c
2433- added expr/monotonicity.c
2434- added expr/parse.c
2435- added expr/pow/estimation.c
2436- added expr/pow/pow.c
2437- added expr/product/estimation.c
2438- added expr/quad.c
2439- added expr/simplify.c
2440- added expr/sin/estimation.c
2441- added expr/sin/sin.c
2442- added expr/sum/estimation.c
2443- added nlpi/exprinterpret.c
2444- speedup test nlpi:solveQP in nlpi/nlpi.c
2445- added test projection:transitivity in prob/obbt.c
2446- added reader/nl.c
2447- added test intervalarith:sincos in scip/intervalarith.c
2448- added sepa/minor.c
2449- added sepa/rlt/cuts.c
2450- added sepa/rlt/product_detection.c
2451- added sepa/rlt/separation.c
2452- added tests test_compute_symmetry:expr{1,2,3,4} in symmetry/compute.c
2453
2454Build system
2455------------
2456
2457- the separate NLPI library has been integrated into the main SCIP library;
2458 uses of NLPILIBFILE or NLPILIBSRC in Makefiles that use make/make.project
2459 should be removed
2460
2461### Cmake
2462
2463- replace flag PARASCIP by THREADSAFE
2464- option AMPL is now ON by default
2465- add -D_XOPEN_SOURCE=600 cflag for compilation on systems other than windows
2466- add compile options directly instead of modifying CMAKE_C_FLAGS and CMAKE_CXX_FLAGS
2467
2468### Makefile
2469
2470- prefix PKG_CONFIG_PATH with Ipopt's pkgconfig dir instead of postfixing
2471- replace flag PARASCIP by THREADSAFE
2472- flag AMPL is now true by default
2473- libscip has been renamed to libscipbase and libscipsolver has been renamed to libscip
2474 in order to have the same library names for makefiles and cmake. For downward
2475 compatibility libscipsolver still exists (as a link).
2476
2477Fixed bugs
2478----------
2479
2480- fixed handling of multi-aggregation in cons_symresack and cons_orbisack
2481- SCIPgetLowerbound() now consistently returns infinity when status is infeasible
2482- improved the likelihood that a solution that satisfies the nonlinear constraints in the transformed (presolved) problem is also feasible for the original problem
2483- worked around a problem with derivatives of pow at 0 with non-integer exponents in CppAD
2484- fixed that setting of feasiblity and optimiality tolerance for NLP relaxation was overwritten with defaults when solving NLP
2485- fixed variance computation in t-value computation in hypothesis testing of reliability branching
2486- fixed potential overflow in cuts.c:evaluateLiftingFunctionKnapsack()
2487- do not transfer dual reductions to main SCIP in sepa_rapidlearning if strong dual reductions are forbidden
2488- fixed a bug in cons_setppc.c:removeDoubleAndSingletonsAndPerformDualpresolve() which led to wrong variable aggregations
2489- added missing redundancy check to coefficient tightening routine in cons_varbound that led to wrong variable locks
2490- added a check of numerics to avoid wrong reductions in cons_linear.c:simplifyInequalities()
2491- fixed a bug in cons_logicor.c regarding fixed variables that were not removed
2492- presol_milp.c handles variable fixings, suggested by PaPILO, more carefully to cover all cases that can appear
2493- fixed several reproducability bugs that led to different solving paths across multiple runs with one SCIP environment
2494- fixed check of limits/absgap, which was incorrectly applied to the scaled objective of the transformed problem
2495
2496Miscellaneous
2497-------------
2498
2499- in LP, use absolute instead of relative tolerances to check whether solutions from LP solver are primal feasible
2500- when a restart occurs, SCIP now asserts (during EXITSOLVE) that all relaxation-only variables are unlocked and
2501 only captured by the transformed problem.
2502- Avoid redundant calls to LP solver when LP is already flushed and solved
2503- In SCIPdebugMsg(), SCIPsetDebugMsg(), SCIPstatDebugMsg() strip directory from filename.
2504- Recompute activity of rows when checking LP solutions instead of trusting the value given by the LP solver
2505- The define NPARASCIP has been replaced by SCIP_THREADSAFE
2506- Parameters are not reset to their default values before activating an emphasis setting; this now allows to combine
2507 different emphasis settings.
2508- If a lazy bound is set to a value that is tighter than the current global bound, then the global bound is now tightened accordingly.
2509
2510@page RN7 Release notes for SCIP 7
2511
2512@section RN703 SCIP 7.0.3
2513*************************
2514
2515Interface changes
2516-----------------
2517
2518### New API functions
2519
2520- added function SCIPwithDebugSol() to determine whether SCIP was compiled with WITH_DEBUG_SOLUTION
2521
2522- New function SCIPcreateConsBounddisjunctionRedundant() and SCIPcreateConsBasicBounddisjunctionRedundant() that allow
2523 the input to contain redundant literals.
2524
2525### Changed API functions
2526
2527- added __attribute__((format(printf,,,))) to variadic SCIP message printing functions;
2528 this enables warnings about mismatches between format string and variadic function arguments if using GCC.
2529
2530### Interfaces to external software
2531
2532- removed MATLAB interface from interfaces/matlab
2533
2534Build system
2535------------
2536
2537- Compilation will now also work in a raw tarball of the scip git repository
2538
2539### Cmake
2540
2541- Make find_package more verbose and require packages to be found. Now enabled packages that are not found result in an error.
2542
2543Fixed bugs
2544----------
2545
2546- Fixed numerical bug by creating and checking the empty solution when problem vanishes in presolving.
2547- Fixed several bugs in reoptimization.
2548- Fixed bug in cons_bounddisjunction in which a constraint leads to a cutoff.
2549- Fixed bug in reoptimization by avoiding redundant literals for bound disjunctions.
2550- Replace wrong usage of CMAKE_BINARY_DIR by PROJECT_BINARY_DIR in CMake system
2551- Fixed lpi_glop to use absl flag instead of GFlags
2552- Fixed invalid initialization of limits/softtime parameter in cons_components
2553- Fixed MIN macro not defined in some cases.
2554- Safeguard some API functions for querying solving statistics against segmentation faults after SCIPpresolve()
2555- Fixed unfreed solution in concurrent solving
2556- Make sure that logicor constraints are enforced/separated if genlogicor is true in cons_indicator.
2557 Thus, do not change constraints/logicor/sepafreq anymore, but output warning.
2558- Fixed assert that assumed infeasibility cannot occur in presol_boundshift.
2559- Fixed sign bug during creation of conflict constraints with almost zero left-hand side.
2560- Disabled call of conflict handler for conflict sets that contain relaxation-only variables.
2561- Fixed bug in cons_symresack by initializing all constraint data in constrans
2562- Avoid allowing the upgrade of linear constraints corresponding to indicators in propagation of nodes.
2563- Fixed bug in computing lex. min/max faces in dynamic orbitope propagation.
2564- Limit vbounds propagator to one sweep through all bounds per call in order to avoid an infinite loop.
2565- Fixed mismatches between formatter strings and arguments in calls to SCIP message printing functions.
2566
2567Miscellaneous
2568-------------
2569
2570- To avoid performance variablity during reoptimization, the active constraints are now stored in the same order as in the
2571 original problem.
2572- Added workaround for bug in MSVS 2019 when compiling CppAD source.
2573- The original order of variables is now only restored after presolve if `randomization/permutevars` is set to FALSE.
2574
2575@section RN702 SCIP 7.0.2
2576*************************
2577
2578Features
2579--------
2580
2581- Extended check for valid variable and constraint names in PIP writer.
2582- Indicator constraints now write the name of the linear constraint in CIP format. This avoids a complicated
2583 name matching during parsing. The old format is still supported.
2584- The objective scale and offset are now taken into account when reading/writing problems in lp/mps/fzn/pip format.
2585 This often changes the behavior when writing transformed problems.
2586
2587Performance improvements
2588------------------------
2589
2590Examples and applications
2591-------------------------
2592
2593- Add c++ Sudoku example
2594
2595Interface changes
2596-----------------
2597
2598### Deleted and changed API functions
2599
2600- deprecated SCIPsetParam(); use SCIPsetIntParam(), SCIPsetRealParam(), etc, instead
2601
2602### New API functions
2603
2604- new function SCIPcolGetVarProbindex() for accessing the probindex of a variable corresponding to a column
2605- added new sorting functions SCIPsortPtrRealRealBoolBool()
2606
2607Fixed bugs
2608----------
2609
2610- Fixed a sign bug occuring for some cases in the computation of the directed cutoff distance
2611- Fixed overflow in inference information of cumulative constraint handler
2612- Fixed problem with propfreq == 0 in cons_linear.c
2613- Fixed aggregation heuristic in sepa_aggregation.c to not use local rows when that is requested nor modifiable rows
2614- Fixed problem with incompatibility of symmetry handling in Benders decomposition
2615- Fixed parsing of small number in CIP format of nonlinear constraint
2616- Fixed problem in upgrading full orbitopes to partitioning orbitopes
2617- Fixed treatment of negated variables in parsing orbitope constraints
2618- Fixed potential indexing error in prop_vbounds.c
2619- Fixed bug in writing fzn format
2620- Revert to old parameter value when parameter change is rejected in PARAMCHGD callback
2621- Fixed order of linker flags when building AMPL interface with cmake system.
2622- Fixed bug with ofsymcomptiming == 0: now symmetry is actually computed
2623- Improved separation for SOC constraint with multiaggregated variable on right-hand-side.
2624- Fixed bug in presol_boundshift: do not shift non-active variables
2625- Fixed bug in domain propagation for SOC constraints with negative coefficient for variable on right-hand-side.
2626- Fixed bug with multi-aggregated integer variables in cons_xor.
2627- Fixed bug with changed number of variables in storing relaxation solution in probing/diving.
2628- Fixed issues with scip statistics
2629- Fixed issue with multi-aggregated variables
2630- Fixed issue in with buffer memory in cons_cumulative
2631
2632@section RN701 SCIP 7.0.1
2633*************************
2634
2635Build system
2636------------
2637
2638### Cmake
2639
2640- Fixed cmake module for Ipopt to support Ipopt 3.13
2641- Added cmake variable BLISS_LIBRARY_DIR to pass a bliss library
2642- Added warning to require minimal GCC version 4.8
2643- Renamed FindCriterion cmake findmodule to FindCRITERION
2644
2645### Makefile
2646
2647- Updated make/make.project for macOS
2648- Add SANITZERFLAGS (only OPT=dbg) to LDFLAGS also if SHARED=true (and rename SANITZERFLAGS to SANITIZERFLAGS)
2649- Fixed GCC version check in make/make.linux.gnu.dbg
2650
2651Fixed bugs
2652----------
2653
2654- Fixed handling of constant term in quadratic objective of pip-reader
2655- Fixed incorrect value string for parameter estimation/completiontype
2656- Fixed initialization of first LP which led to wrong output about LPs not resolved correctly
2657- Fixed bug in SCIPcutpoolClear() function not clearing internal datastructures properly
2658- Fixed inability to set a value in a solution if it was within epsilon to the current value
2659- Fixed problems for linking optimized code with debug library of SCIP (and vice versa) by moving debug-only members
2660 to end of SCIP structs
2661
2662Miscellaneous
2663-------------
2664
2665- Variables that are marked as relaxation-only are no longer checked against debug solutions if
2666 they are captured by the transformed problem only.
2667
2668@section RN700 SCIP 7.0.0
2669*************************
2670
2671Features
2672--------
2673
2674- Using the parameter "propagating/symmetry/recomputerestart" one can now decide to recompute symmetries after a
2675 restart or not. Previously one could just turn off symmetry computation after a restart. If orbital fixing
2676 has found a reduction before the restart occurred, symmetries have to be updated to ensure correctness.
2677 To this end, the user can decide via "propagating/symmetry/disableofrestart" whether orbital fixing is disabled or
2678 whether symmetries are recomputed.
2679
2680- extended relaxators statistics in solve statistics about information on number of cutoffs, improved bounds, etc.
2681
2682- extends SMPS file reader for the stochastic information, the sto files, to read a lower bound for the discrete
2683 scenarios. The lower bound is used when creating the auxiliary variables for Benders' decomposition.
2684
2685- extended Benders framework to solve NLPs and generate optimality and feasibility cuts from their solution
2686 when the subproblem is convex nonlinear.
2687
2688- extended Benders framework to create copies of Benders decompositions that can be used in a multithreading environment
2689
2690- additional functionality has been added to enable the transfer of Benders' decomposition cuts between different SCIP
2691 instances, e.g., when used in UG
2692
2693- LP rows (SCIP_ROW) can now store pointer to a constraint from which the row originates
2694
2695- Trust region, a new LNS heuristic, has been added to SCIP as both a standalone primal heuristic heur_trustregion.c
2696 and as a neighborhood inside of Adaptive Large Neighborhood Search (heur_alns.c). This heuristic is designed to improve the
2697 heuristic performance of the Benders' decomposition algorithm. It builds upon the successful trust region approaches
2698 applied to Benders' decomposition.
2699
2700- Modularity of symmetry handling has been increased. It is now possible to use orbitopes (i.e., polyhedral symmetry
2701 handling techniques) and orbital fixing on the same instance.
2702
2703- cut strengthening enabled within the Benders' decomposition framework. This uses a mix of the Improved Magnanti-Wong
2704 method and Kelly's method. The cut strengthening is enabled by setting the paramemter
2705 "benders/<bendersname>/cutstrengthenenabled" to TRUE. The parameters "cutstrengthenmult", "noimprovelimit" and
2706 "corepointperturb" control the behavior of the cut strengthening method. Additionally, the parameter
2707 "cutstrengthenintpoint" allows the user to specify the solution that is used to initialize the core point. The options
2708 are the first LP solution, the first integer feasible solution, a relative interior point, a solution vector of all
2709 ones and a solution vector of all zeros. Also, the core point can be reinitialized after each update to the incumbent
2710 solution.
2711
2712- added option to adjust weights of different scores in relpscost (hybrid) branching rule based on degeneracy information
2713 and skip strong branching for very high degeneracy rates
2714
2715- added new SCIP_DECOMP* object to store user decompositions. The user can specify one or several decompositions by assigning variable
2716 and/or constraint labels either through the API or by reading a file in DEC format (which is one of the formats that GCG writes).
2717 This format specifies constraint labels, variable labels are inferred from that. The decomposition is transformed after presolving.
2718- statistics regarding the number of blocks, the largest and smallest blocks, the border, and the constraint graph are printed for the original decomposition,
2719 and for each decomposition after presolving.
2720- the decomposition can be used as initial decomposition for the Benders functionality of SCIP.
2721- new subsection "How to provide a problem decomposition" in the SCIP documentation
2722
2723- GINS heuristic can make use of a user-provided decomposition labels in two ways:
2724 1. by selecting a block of variables that maximizes the potential, and randomly selecting a start variable for the neighborhood and/or
2725 2. by selecting an interval of consecutive blocks as neighborhood, until fixing rate is reached. In this case, no variable is randomly selected.
2726
2727- extend potential parameter of GINS to allow computation based on local LP solution, as well
2728
2729- new primal heuristic Adaptive Diving, which registers all publicly available dive sets from other diving heuristics.
2730 At each call, it selects one of the available dive sets based on the user's score type choice (heuristics/adaptivediving/scoretype).
2731 During the solution process, the heuristics learns online which divesets reach the best score, and executes them more frequently.
2732 The statistic output for Diving heuristics has been extended to incorporate the statistics of each dive set within Adaptive diving.
2733
2734- Added new penalty alternating direction method (PADM) primal heuristic that splits the problem into several sub-SCIPs
2735 according to a user-provided decomposition. The sub-SCIPs are solved on an alternating basis until a feasible solution of
2736 the original problem is found.
2737
2738- Symmetry handling constraints (cons_orbisack, cons_orbitope, cons_symresack) now have an additional parameter to encode
2739 whether they are model constraints, i.e., define the problem, or whether they are only present to handle symmetries.
2740
2741- The symmetry code has been completely restructured. The presolvers presol_symbreak and presol_symmetry as well as the propagator
2742 prop_orbitalfixing have been merged into the single propagator prop_symmetry to avoid storing the same information
2743 multiple times. This propagator is now responsible for adding symmetry handling constraints as well as activating orbital
2744 fixing. Moreover, the new file symmetry.c contains general functions for symmetry computations like orbit computations.
2745
2746- Variables can now be marked as "relaxation-only". This flag should be used to introduce new variables that are required
2747 to define a relaxation, but that are not part of any checked constraints. Essentially, these variables should only be used
2748 in the current SCIP solve and disregarded after a restart or in SCIP copies. Hence, these variables are not copied by SCIPcopy and
2749 SCIPgetVarCopy, they are currently not used in conflict constraints, and cuts involving them are not upgraded to linear constraints.
2750 Relaxation-only variables cannot appear in the objective function.
2751
2752- The OSiL reader now supports nonlinear expressions of type "signpower".
2753
2754- Expressions of form abs(x)^p * x in a nonlinear constraint are now sometimes recognized and handled by abspower constraints.
2755
2756- If polyhedral symmetry handling methods are used (cons_orbisack, cons_orbitope, cons_symresack), it is now possible to
2757 recompute symmetries if a restart occurred.
2758
2759- upgrade some more quadratic constraints to second-order cone constraints, that is,
2760 handle linear binary variables as if squared in simple upgrade and
2761 do not require bounds for variables that have a zero entry in the computed eigenvectors in the non-simple upgrade
2762
2763- new variable event when changing the variable type
2764
2765- It is no longer necessary to provide a SCIP pointer for the subproblem in SCIPaddBendersSubproblem if custom solving
2766 methods are defined. A NULL pointer can be supplied to SCIPaddBendersSubproblem. In this case, no internal Benders'
2767 cut generation methods can be used.
2768
2769- Using the parameter "constraints/symresack/checkmonotonicity" one can now decide to upgrade to packing/partitioning
2770 symresacks even if the underlying permutation is not monotone.
2771
2772- New branching rule `vanillafullstrong`, mostly for scientific purpose, with the following features:
2773 1) no cutoff or domain reduction: only branching;
2774 2) idempotent (optional): leave SCIP, as much as possible, in the same state before / after the strong branching calls
2775 - basically, do not update any statistic;
2776 3) donotbranch (optional): do no perform branching. So that the brancher can be called as an oracle only
2777 (on which variable would you branch ? But do not branch please);
2778 4) scoreall (optional): keep scoring variables, even if infeasibility is detected;
2779 5) collectscores (optional): store the candidate scores from the last call, which can then be retrieved by calling SCIPgetVanillafullstrongData();
2780 6) integralcands (optional): consider integral candidates for branching,
2781 i.e., get candidates from SCIPgetPseudoBranchCands() instead of SCIPgetLPBranchCands().
2782
2783- If a reference value (misc/referencevalue) is given, the primal-reference and reference-dual integrals are calculated automatically and printed within the SCIP statistics.
2784
2785- Locally valid cuts / rows are now considered for dual proof analysis when `conflict/uselocalrows` is set to TRUE.
2786
2787- Linking variables in the linking constraint handler (cons_linking.{ch}) can now be integer or continuous. The coefficients of the binary variables are therefore now stored as SCIP_Real.
2788
2789- To save memory, it is now possible to remove all variables from the internal symmetry data structures that are
2790 not affected by any symmetry.
2791
2792- Allow to filter first variables from orbits and transfer pseudo cost information to variables in orbit
2793
2794- Add integration of external MILP presolve library as a SCIP presolver plugin that runs on MILP problems
2795
2796- Parallelisation can be used when applying Benders' decomposition. There are two different forms of parallelisation
2797 available. The first is applying Benders' decomposition within a parallel branch-and-bound. This is achieved through
2798 the integration with the UG framework. The second is the use of shared memory parallelisation for solving the Benders'
2799 decomposition subproblems. A priority queue has been added to help with load balancing.
2800
2801- The Benders' decomposition framework can handle MINLPs. If a convex relaxation of the MINLP exists, then this is
2802 solved to generate optimality and feasibility cuts. The extensions to the framework are:
2803 - New generic solving methods to solve convex NLP subproblems.
2804 - Modification to benderscut_opt and benderscut_feas to enable the generation of cuts from convex NLPs.
2805 - Addition of benderscut_feasalt to generate feasibility cuts from an alternative subproblem that minimises the
2806 violation of infeasible problems.
2807 - Better handling of subproblem solution results
2808
2809- Adds a feasibility phase to the Benders' decomposition subproblem solving methods. The feasibility phase adds slack
2810 variables to each of the constraints to ensure feasibility of the subproblem. A large coefficient is given to these
2811 slack variables in the objective function to penalise constraint violations. The coefficients are progressively
2812 increased until all slack variables take the value 0.0.
2813
2814- Improved convexity check for Benders' decomposition subproblems. The constraints of the subproblem are now checked for
2815 convexity in the initialisation of the Benders' decomposition algorithm. This enables the solving of convex NLPs as
2816 Benders' decomposition subproblems.
2817
2818- Benders' decomposition can be applied using decomposition supplied in the DEC format. To apply Benders' decomposition
2819 the parameters decomposition/benderslabels and decomposition/applybenders must be set to TRUE.
2820
2821- new event handler event_estim.c/h that approximates search tree completion and estimates tree size
2822 to trigger restarts; many approximations of search tree completion and estimation, including WBE, SSG, and tree profile method
2823- new display column that reports approx. search tree completion during the search, and an overview in the statistics table
2824- added resources (script, tutorial, test data) to adapt tree size estimation to user instances.
2825
2826- Orbital Fixing uses a list of variables that have been fixed globally since the computation of symmetries to filter
2827 symmetries. Previously, some plugins were disabled, which is not necessary anymore.
2828
2829- A new presolver "dualsparsify" was added. It tries to combine columns (i.e. variables) to cancel nonzero coefficients in the constraint matrix.
2830
2831- The presolver "tworowbnd" was implemented with better performance.
2832
2833- To be able to calculate better bounds for the dual variables, the presolver "dualinfer" was extended by the ability to perform convex combinations of continuous columns.
2834
2835- allow disabling of pricers during solving process
2836
2837- added emphasis setting for numerically challenging instances
2838
2839Performance improvements
2840------------------------
2841
2842- Extended cut presolving by removing variables that been fixed at their bounds
2843
2844- Improved branching point selection when branching on externals branching candidates. Instead of using exactly the
2845 LP solution, a point closer to the middle of the variables domain is chosen.
2846
2847- Matrix presolvers that do not work on incomplete matrices now skip matrix creation if unsupported constraint types are detected.
2848
2849- consLockBenders callback implemented to add down locks on the Benders' decomposition auxiliary variables and
2850 up and down locks per subproblem for all master problem variables. This allows the use of presolving and propagation
2851 with Benders' decomposition.
2852
2853- improved performance of orbital fixing in several ways:
2854 store permutations in transposed form to improve cache efficency;
2855 reverse order to speed up filtering of permutations;
2856 handle variables globally fixed to 1 in list;
2857 use event handler to catch global fixings;
2858 speed up orbit computations;
2859 change handling of restarts;
2860 use only permutations that can contribute to a variable's orbit;
2861
2862- allow rapid learning at local nodes
2863
2864- allow to recompute cut without using fractional values for sepa_cgmip
2865
2866- restrict the number of the clique table nonzeros relative to the number of problem nonzeros, which could be a performance bottleneck.
2867
2868- variable fixings of LP face heuristic are now computed earlier; subproblem creation is skipped if not enough variables are fixed.
2869
2870- Improved domcol presolver to not require a complete representation of all constraints in the matrix
2871
2872- performance improvement of adaptive large neighborhood search heuristic on merely continuous problems. The heuristic
2873 stops if presolving in the sub-SCIP fixes less than 50 % of the current target fixing rate over all variables
2874 (including continuous).
2875
2876- reduce memory usage in symmetry detection by a staggered allocation with decreasing overhead for larger instances
2877
2878- improved full orbitope propagation using a static implementation or a dynamic reordering of orbitope rows by a global rank function
2879
2880- improved detection of packing/partitioning orbitopes
2881
2882- enable an in-tree restart if after a reasonable initialization, the estimated size of the remaining tree is large.
2883
2884
2885Examples and applications
2886-------------------------
2887
2888- added functions to set and get hmin and hmax for optcumulative constraints
2889
2890Interface changes
2891-----------------
2892
2893### New and changed callbacks
2894
2895- new optional callback `SCIP_DECL_DIVESETAVAILABLE` to check preconditions for this dive set, e.g., if an incumbent solution is available,
2896 which is passed as new argument to SCIPcreateDiveset(). SCIPcreateDiveset() has another new parameter "ispublic".
2897
2898- new callback `SCIP_DECL_CONSHDLRCOPY` and `SCIP_DECL_CONSCOPY` in cons_orbisack and cons_symresack
2899
2900- new `idempotent` argument to SCIPgetVarStrongbranchInt() and SCIPgetVarStrongbranchFrac(),
2901 so that statistics are not updated during the call. Likewise, new `updatecol` and `updatestat` arguments to SCIPcolGetStrongbranch().
2902
2903- callback `SCIP_DECL_CONSHDLRENFOLP` can now also return SCIP_SOLVELP as *result, which indicates to the SCIP core that the LP relaxation
2904 should be solved again because the primal feasibility tolerance of the LP has been tightened (using SCIPsetLPFeastol())
2905
2906- extension of SCIP_PQUEUE by a new callback SCIP_DECL_PQUEUEELEMCHGPOS to catch swaps as well as functionality to delete arbitrary elements from the priority queue.
2907
2908### Deleted and changed API functions
2909
2910- LPI:
2911 + now for all lp interfaces consistent requirements on SCIP_LPPAR:
2912 LPITLIM and BARRIERCONVTOL positive or zero; FEASTOL, DUALFEASTOL, LPTILIM strictly positive
2913 + now projecting SCIP_LPPAR values on feasible values for each lp interface
2914 + add interface to Glop
2915 + fixed mapping between scaling parameter values in Gurobi LPI lpi_grb
2916- Symmetry:
2917 + removed function SCIPseparateCoversOrbisack() in cons_orbisack.h since the orbitope constraint
2918 handler has its own implementation of this routine with advanced features now
2919 + renamed SCIPgetGeneratorsSymmetry() to SCIPgetSymmetry() and removed two arguments
2920 + extended function SCIPgetSymmetry(): It is possible to access both the original and
2921 transposed permutations matrix as well as the (independent symmetry) components of a permutation group now.
2922 + arguments of functions SCIPcreateConsOrbisack(), SCIPcreateConsBasicOrbisack(), SCIPcreateConsOrbitope(),
2923 SCIPcreateConsBasicOrbitope(), SCIPcreateConsSymresack(), SCIPcreateConsBasicSymresack(), and SCIPcreateSymbreakCons() extended
2924 by "ismodelcons" to encode whether the constraints are model constraints or not
2925 + the function SCIPgetSymmetry() no longer accepts the parameter recompute, but has parameter permvarmap as new input
2926 + removed SCIPgetPermvarsObjSymmetry(), SCIPsetSymmetryComponentblocked(), SCIPgetSymmetryComponentblocked(),
2927 SCIPgetSyminfoGloballyFixedVars(), SCIPcomputeGroupOrbitsSymbreak, SCIPincludePresolSymmetry(),SCIPincludePresolSymbreak(),
2928 and SCIPincludePropOrbitalfixing()
2929 + add function SCIPcomputeOrbitsComponentsSym() to compute orbits without filtering permutations and indices of orbits for each variable
2930- SCIPallowObjProp() and SCIPallowDualReds() are deprecated and replaced by SCIPallowWeakDualReds() and SCIPallowStrongDualReds(), respectively
2931- Benders' decomposition
2932 + changed SCIPstoreBenderscutCut() in scip_benders.c to SCIPstoreBendersCut(). Where this function used to take a
2933 SCIP_BENDERSCUT pointer, it now accepts a SCIP_BENDERS pointer.
2934 + the functions SCIPsolveBendersSubproblem() no longer accepts the parameter type. The type is not a necessary
2935 argument for the subproblem solving method.
2936 + arguments of functions SCIPbendersSolveSubproblemLP(), SCIPbendersSolveSubproblemCIP(), and SCIPbendersOnlyCheckConvexRelax() changed
2937 - removed SCIPbenderscutGetNAddedCuts() and SCIPbenderscutGetAddedCutData()
2938
2939
2940### New API functions
2941
2942- new argument "onlyifcomplete" in SCIPmatrixCreate() to skip matrix creation right after detecting unsupported constraint types
2943 and new arguments to count statistics when doing a clean-up of inactive variables in the constraints before building the matrix
2944
2945- new argument "threadsafe" in SCIPcopy(), SCIPcopyConsCompression(), SCIPcopyOrig(), SCIPcopyOrigConsCompression and
2946 SCIPcopyBenders(). This argument must only be set to TRUE if the source and target SCIP instances are to be solved in
2947 parallel. Setting this argument to TRUE has a performance cost.
2948
2949- new argument "append" in SCIPsetModifiedDefaultSettingsIpopt()
2950- functions SCIPclearRelaxSolVals(), SCIPsetRelaxSolVal(), SCIPsetRelaxSolVals(), SCIPsetRelaxSolValsSol(), and SCIPmarkRelaxSolValid()
2951 receive an additional argument "relax" to store the relaxation handler as creator of the relaxation solution.
2952
2953- LP:
2954 - SCIProwGetOriginCons() now returns a SCIP_CONS* instead of a SCIP_CONSHDLR*, use SCIProwGetOriginConshdlr() for the previous behavior
2955 - SCIPcreateRowCons() and SCIPcreateEmptyRowCons() now expect a SCIP_CONS* instead of a SCIP_CONSHDLR*,
2956 use SCIPcreateRowConshdlr() and SCIPcreateEmptyRowConshdlr(), respectively, for the previous behavior
2957 - deprecated SCIPlpfeastol() and SCIPchgLpfeastol(), use SCIPgetLPFeastol() and SCIPsetLPFeastol()
2958
2959- new parameter "divecontext" for every function that queries statistics for a diveset. The context can be used to distinguish between the dive set
2960 as single (standalone) heuristic or within Adaptive Diving.
2961- new parameters "divecontext" and "iterlim" to SCIPperformGenericDivingAlgorithm() to control in which context (single,adaptive) statistics are updated.
2962
2963- SCIPcopyVars, SCIPcopy, SCIPcopyConsCompression, and SCIPgetVarCopy do not copy variables that are marked as relaxation-only,
2964 thus it cannot be assumed anymore that each active variable from the master SCIP also has a counterpart in the copy.
2965 SCIPcopy, SCIPcopyConsCompression, and SCIPcopyConss can now return *valid=TRUE if some non-checked and non-enforced constraints were not copied, e.g.,
2966 because they involved relaxation-only variables. Thus, a copy is already regarded as valid if all checked or enforced constraints were copied successfully.
2967
2968- linking constraint handler:
2969 - changed type of vals argument from int* to SCIP_Real* in SCIPcreateConsLinking() and SCIPcreateConsBasicLinking()
2970 - SCIPgetIntvarLinking() has been renamed to SCIPgetLinkvarLinking().
2971 - changed return value of SCIPgetValsLinking() from int* to SCIP_Real*.
2972 - new function SCIPgetBinvarsDataLinking().
2973
2974- SCIPbendersCheckSubproblemOptimality() now returns a boolean indicating whether the subproblem is optimal or not.
2975 Previously this result was returned through a parameter. The change was required to facilitate the integration with
2976 the UG framework.
2977
2978- deleted SCIPcombineTwoInt(), SCIPcombineThreeInt(), SCIPcombineFourInt(); use the appropriate SCIPhashTwo(), ..., SCIPhashSeven() function instead
2979
2980- SCIPsetupBendersSubproblem takes a parameter of the enforcement type.
2981
2982- SCIPcreateNlpiProb takes a hashmap to store the map between the nlrows and the index in the nlrow array.
2983
2984### New API functions
2985
2986- SCIPallowWeakDualReds() and SCIPallowStrongDualReds() replace the deprecated SCIPallowObjProp() and SCIPallowDualReds(), respectively
2987- functions have been added to facilitate the transfer of Benders' decomposition cuts between solvers in UG. These include
2988 SCIPapplyBendersStoredCuts(), SCIPbendersGetNStoredCuts(), SCIPbendersGetStoredCutData() and
2989 SCIPbendersGetStoredCutOrigData().
2990- added SCIPisConvexAbspower()
2991- new functions SCIPsolGetType(), SCIPsolGetRelax(), SCIPsolSetRelax(), SCIPsolSetLPRelaxation(), SCIPsolSetStrongbranch(),
2992 SCIPsolSetPseudo to set or query the new type attribute of a primal solution. The type attribute gives information
2993 about the origin of the solution, ie, whether it was created by a relaxation handler,
2994 by the LP relaxation, by strong branching, by the current pseudo solution, or by a primal heuristic.
2995 The meaning of the argument 'heur' in all creation methods for primal solutions such as SCIPcreateSol() stays unchanged.
2996- added SCIProwGetOriginConshdlr(), SCIPcreateRowConshdlr(), SCIPcreateEmptyRowConshdlr()
2997- new API functions SCIPsetCommonSubscipParams(), SCIPtranslateSubSol(), and SCIPtranslateSubSols() shared by several Large Neighborhood Search heuristics.
2998- new API function SCIPgetLPDualDegeneracy() to get two measures for the dual degeneracy of the current LP
2999- new API functions SCIPdivesetIsAvailable() to check preconditions of a dive set and SCIPdivesetIsPublic() to check if the dive set can be used
3000 by other primal heuristics.
3001- new API functions SCIPcomputeOrbitsSym(), SCIPcomputeOrbitsFilterSym(), SCIPgetPropertiesPerm(), SCIPdetermineBinvarAffectedSym(),
3002 SCIPdetermineNVarsAffectedSym(), SCIPcomputeComponentsSym(), and SCIPextendSubOrbitope(), SCIPgenerateOrbitopeVarsMatrix() for symmetry computations
3003- new API functions SCIPvarIsRelaxationOnly() and SCIPvarMarkRelaxationOnly() to query and set, resp., whether a variable is marked as relaxation-only
3004- new API functions SCIPconshdlrGetNUpdateConss() and SCIPconshdlrGetUpdateConss(), for expert users only
3005- new API function SCIPgetNConflictDualproofsApplied()
3006- new API functions SCIPeventGetOldtype() and SCIPeventGetNewtype() for the new event when changing the variable type
3007- new API function SCIPisConvexConsQuadratic() to check whether a quadratic constraint is convex when a given set of variables would be fixed
3008- new API functions SCIPgetLPFeastol(), SCIPsetLPFeastol(), and SCIPresetLPFeastol() to get, set, and reset (to the default), respectively, the primal
3009 feasibility tolerance for the LP relaxation
3010- new API functions SCIPcleanupConss{Linear,Varbound,Setppc,Logicor,Knapsack}() to clean up inactive variables from those types of linear constraints
3011- new API function SCIPsetBendersSubproblemComp() used to add a custom comparison method for ordering the Benders'
3012 decomposition subproblem solves. The comparison method is used to help with load balancing.
3013- new API function SCIPgetRowObjParallelism to get the objective parallelism of a row
3014- new API function SCIPcolGetAge to get the age of a column
3015- added SCIPhashThree(), SCIPhashFive(), SCIPhashSix(), and SCIPhashSeven() that complement SCIPhashTwo(), SCIPhashFour() to combine 32bit integers to
3016 a 32bit hash value
3017- new API function SCIPgenerateAndApplyBendersOptCut is used to generate a Benders' optimality cut using the dual
3018 solutions. This function can be supplied vectors for the primal and dual solution for generating an optimality cut.
3019 This avoids the need for a SCIP instance to solve the Benders' decomposition subproblem and generating cuts.
3020- new API function SCIPconsAddCoef used for adding a coefficient to a linear-type constraint.
3021- new API functions SCIPconsNonlinearGetRhs, SCIPconsNonlinearGetLhs and SCIPconsNonlinearAddLinearCoef for getting the
3022 RHS and LHS from a nonlinear-type constraint and adding a linear coefficient to the constraint.
3023- new API function SCIPbendersSolSlackVarsActive for checking whether any slack variables from the feasibility phase are
3024 active in the subproblem solution.
3025- new API functions SCIPbendersSetSubproblemType and SCIPbendersGetSubproblemType sets and gets the subproblem type.
3026 This is either:
3027 - Convex constraints with continuous variables
3028 - Convex constraints with discrete variables
3029 - Non-convex constraints with continuous variables
3030 - Non-convex constraints with discrete variables
3031- new API functions SCIPbendersSetSubproblemIsNonlinear() and SCIPbendersSubproblemIsNonlinear() for setting and
3032 identifying whether the Benders' decomposition subproblems contain nonlinear constraints. Similarly, the functions
3033 SCIPbendersSetMasterIsNonlinear() and SCIPbendersMasterIsNonlinear() sets and identifies whether the Benders'
3034 decomposition master problem contains nonlinear constraints.
3035- new API function SCIPapplyBendersDecomposition for applying Benders' decomposition given a decomposition in the DEC
3036 format
3037- new API function SCIPwasNodeLastBranchParent to query if a node has been the parent of the most recent branching in the tree
3038- new API functions SCIPtreemodelInit(), SCIPtreemodelFree(), SCIPtreemodelIsEnabled(), SCIPtreemodelSelectCandidate() related to the new
3039 treemodel way of comparing branching candidates. These functions are only currently used for reliability pscost branching, but they can be used
3040 in other parts of the code.
3041- New function SCIPcalcChildEstimateIncrease() to compute the increase in the child estimation
3042- new API functions SCIPisOrbitalfixingEnabled() and SCIPgetSymmetryNGenerators() to check whether orbital fixing is
3043 enabled and to get the number of generators of the current symmetry group, respectively
3044- new API function SCIPdelNlRow() to remove a row from the NLP
3045
3046### Event system
3047
3048- new event type SCIP_EVENTTYPE_NODEDELETE to react on nodes that are about to be deleted from the tree
3049
3050### Changed parameters
3051
3052- renamed parameter "propagating/orbitalfixing/enableafterrestart" to ".../symmetry/recomputerestart"
3053- Parameter "misc/allowdualreds" is now called "misc/allowstrongdualreds"
3054- Parameter "misc/allowobjprop" is now called "misc/allowweakdualreds"
3055- changed default values of propagation (new value: 1, old value: 5) and separation frequency (new value: -1, old value: 5) in cons_orbitope.c
3056- all primal heuristics that use sub-SCIPs are disabled within the heuristics fast emphasis setting
3057- deleted parameter heuristics/localbranching/useuct, use heuristics/useuctsubscip instead
3058- changed default value of "presolving/symbreak/detectorbitopes" (new value: TRUE, old value: FALSE)
3059- extended range of "misc/usesymmetry" (new range: [0,3], old range: [0,2])
3060- deleted parameter "constraints/orbisack/checkalwaysfeas"
3061- deleted parameter "constraints/orbitope/checkalwaysfeas"
3062- deleted parameter "constraints/symresack/checkalwaysfeas"
3063- deleted parameter "presolving/symmetry/maxgenerators"
3064- deleted parameter "presolving/symmetry/checksymmetries"
3065- deleted parameter "presolving/symmetry/displaynorbitvars"
3066- deleted parameter "presolving/symbreak/conssaddlp"
3067- deleted parameter "presolving/symbreak/addsymresacks"
3068- deleted parameter "presolving/symbreak/computeorbits"
3069- deleted parameter "presolving/symbreak/detectorbitopes"
3070- deleted parameter "presolving/symbreak/addconsstiming"
3071- deleted parameter "propagating/orbitalfixing/symcomptiming"
3072- deleted parameter "propagating/orbitalfixing/performpresolving"
3073- deleted parameter "propagating/orbitalfixing/recomputerestart"
3074- changed default value of "heuristics/coefdiving/freq" (old: 10, new: -1)
3075- changed default value of "heuristics/conflictdiving/freq" (old: -1, new: 10)
3076- changed default value of "heuristics/conflictdiving/lockweight" (old: 1.0, new: 0.75)
3077- replaced parameter "numerics/lpfeastol" by "numerics/lpfeastolfactor" to specify which factor should be applied to the SCIP feasibility
3078 tolerance to initialize the primal feasibility tolerance of the LP solver
3079- enabling aggressive presolving now activates all available presolving plugins,
3080 and decreases the presolving/restartfac parameter correctly with respect to default.
3081- changed default value of heuristics/rins/nodesquot to 0.3 (was 0.1), to compensate
3082 the removal of a hard coded factor of 3.0 in the code without affecting the default behavior
3083 of the RINS heuristic.
3084- changed default value of "constraints/quadratic/empathy4and" (old: 0, new: 2)
3085- changed default value of "propagating/redcost/useimplics" (old: TRUE, new: FALSE)
3086
3087### New parameters
3088
3089- the possibility to define the Benders' decomposition auxiliary variables as implicit integer is provided. This
3090 behavior is controlled with an additional parameter in the Benders' decomposition framework.
3091- added parameter benders/<bendersname>/cutcheck to enable the generation of Benders' decomposition cuts during solution
3092 checking.
3093- constraints/orbitope/usedynamicprop: the possibility to propagate orbitope constraints by reordering the rows based on the
3094 branching strategy is provided (only possible for non-model constraints)
3095
3096- new parameters heuristics/shiftandpropagate/minfixingratelp and heuristics/locks/minfixingratelp to stop the
3097 heuristics after propagating integer fixings if no sufficient fixing of the all variables (including continuous)
3098 could be achieved. These parameters help to avoid solving LP's that are comparable in hardness to the main root LP.
3099
3100- Added parameters branching/midpull and branching/midpullreldomtrig to control by how much to move
3101 the branching point for an external branching candidate closer to the middle of the candidates domain. The
3102 default of 0.75 and 0.5, respectively, uses a point that is 75*alpha% closer to the middle of the domain, where
3103 alpha is the relative width of the candidates domain (width of local domain divided by width of global domain),
3104 if the latter is below 0.5, and alpha=1.0 otherwise. That is, with the default settings, a branching point is
3105 chosen closer to the middle of the candidates domain if the variables local domain is still similar to its
3106 global domain, but is chosen closer to the LP solution if the local domain is much smaller than the global
3107 domain.
3108
3109- Added parameter lp/minmarkowitz to set the Markowitz stability threshold (range 0.0001 to 0.9999).
3110 High values sacrifice performance for stability.
3111
3112- Added parameters benders/<bendersname>/lnsmaxcalls and benders/<bendersname>/lnsmaxcallsroot to the Benders'
3113 decomposition core. These parameters limit the number of Benders' decomposition subproblem checks, for the full
3114 branch-and-bound tree and root node respective, when solving the auxiliary problem of LNS hueristics. These
3115 parameters only have effect if the lnscheck parameter is set to TRUE.
3116
3117- Added parameter cons/linear/maxmultaggrquot to limit the maximum coefficient dynamism of an equation on which
3118 multiaggregation is performed. This replaces a compiler define of the same name.
3119 Default value is 1000, smaller values make multiaggregations numerically more stable.
3120- new global parameter heuristics/useuctsubscip that affects all LNS heuristics using common sub-SCIP parameters
3121
3122- new parameter branching/relpscost/degeneracyaware to switch degeneracy-aware hybrid branching
3123
3124- new parameter separation/rapidlearning/checkexec to check whether rapid learning is allowed to run locally
3125- new parameters separation/rapidlearning/check{degeneracy,dualbound,leaves,nsols,obj} to enable checking the respective feature for local rapid learning
3126- new parameter separation/rapidlearning/maxcalls to limit the number of rapid learning executions
3127- new parameter separation/rapidlearning/nwaitingnodes to set the number of waiting nodes before the dual bound is checked
3128- new parameter separation/rapidlearning/mindegeneracy to set the minimal threshold of degenerate basic-variables
3129- new parameters separation/rapidlearning/minvarconsratio to set the minimal ratio of unfixed variables in relation to basis size
3130
3131- new parameters to control the Benders' decomposition two-phase method.
3132 - constraints/benderslp/depthfreq: after the maxdepth is reached, then the two-phase method will only be called at
3133 nodes at a depth divisible by depthfreq.
3134 - constraints/benderslp/stalllimit: after the maxdepth is reached, if there has been no improvement in the dual bound
3135 for stalllimit number of nodes, then the two-phase method is executed for the next fractional LP solution that is
3136 encountered.
3137 - constraints/benderslp/iterlimit: after the root node, only iterlimit fractional LP solutions are used at each node
3138 to generate Benders' decomposition cuts.
3139
3140- new parameters for symmetry handling
3141 - new parameter "propagating/symmetry/maxgenerators"
3142 - new parameter "propagating/symmetry/checksymmetries"
3143 - new parameter "propagating/symmetry/displaynorbitvars"
3144 - new parameter "propagating/symmetry/conssaddlp"
3145 - new parameter "propagating/symmetry/addsymresacks"
3146 - new parameter "propagating/symmetry/detectorbitopes"
3147 - new parameter "propagating/symmetry/addconsstiming"
3148 - new parameter "propagating/symmetry/ofsymcomptiming"
3149 - new parameter "propagating/symmetry/performpresolving"
3150 - new parameter "propagating/symmetry/recomputerestart"
3151 - new parameter "constraints/symresack/checkmonotonicity"
3152 - new parameter "propagating/symmetry/compresssymmetries"
3153 - new parameter "propagating/symmetry/compressthreshold"
3154 - new parameter "propagating/symmetry/disableofrestart"
3155 - new parameter "propagating/symmetry/symfixnonbinaryvars"
3156
3157- new parameter for enabling shared memory parallelisation for solving Benders' decomposition subproblems. The parameter
3158 benders/<bendersname>/numthreads sets the number of threads used for parallel subproblem solving.
3159
3160- new parameters to control enhancements for solving MINLPs by Benders' decomposition
3161 - benders/<bendersname>/execfeasphase: enables the feasibility phase for solving the Benders' decomposition
3162 subproblems
3163 - benders/<bendersname>/slackvarcoef: the initial coefficient of the slack variable for the feasibility phase
3164 - benders/<bendersname>/checkconsconvexity: should the constraints be checked for convexity. This can be set to FALSE
3165 if you are certain that the NLP subproblem is convex.
3166
3167- new parameter presolving/clqtablefac (default value 2.0) as limit on number of entries in clique table relative to number of problem nonzeros
3168
3169- new parameter conflict/uselocalrows (default: TRUE) to incorporate locally valid cuts / rows for dual proof analysis
3170
3171- new return code SCIP_NOTIMPLEMENTED for functions, e.g., in the LPI that have not been implemented (yet)
3172
3173- new parameter separating/cgmip/genprimalsols that allows to generate initial primal solutions from Gomory cuts
3174
3175- new parameter branching/relpscost/filtercandssym to allow filtering from orbits
3176
3177- new parameter branching/relpscost/transsympscost to transfer pseudo cost information to orbit
3178
3179- new parameters for tree size estimation and restarts:
3180 - estimation/restarts/restartpolicy (default value n)
3181 - estimation/method (default value c)
3182 - estimation/restarts/restartlimit (default value 1)
3183 - estimation/restarts/minnodes (default value 1000)
3184 - estimation/restarts/countonlyleaves (default value FALSE)
3185 - estimation/restarts/restartfactor (default value 2)
3186 - estimation/coefmonoprog (default value 0.3667)
3187 - estimation/coefmonossg (default value 0.6333)
3188 - estimation/restarts/hitcounterlim (default value 50)
3189 - estimation/reportfreq (default value -1)
3190 - estimation/regforestfilename (default value "-")
3191 - estimation/completiontype (default value a)
3192 - estimation/treeprofile/enabled (default value FALSE)
3193 - estimation/treeprofile/minnodesperdepth (default value 20)
3194 - estimation/useleafts (default value TRUE)
3195 - estimation/ssg/nmaxsubtrees (default value -1)
3196 - estimation/ssg/nminnodeslastsplit (default value 0)
3197
3198- new parameter constraints/linear/extractcliques to turn clique extraction off
3199
3200- new emphasis setting emphasis/numerics to increase numerical stability of (mostly) presolving operations such as (multi-)aggregations at the cost of performance.
3201
3202- new parameters for treemodel:
3203 - new parameter branching/treemodel/enable to enable the treemodel in reliability pscost branching and possible
3204 future parts of the code where it could be used.
3205 - new parameter branching/treemodel/highrule to specify which branching rule to use when treemodel thinks the node
3206 is high in the tree.
3207 - new parameter branching/treemodel/lowrule to specify which branching rule to use when treemodel thinks the node
3208 is low in the tree.
3209 - new parameter branching/treemodel/height to specify at which (estimated) height a node is high or low in the tree.
3210 - new parameter branching/treemodel/filterhigh to specify whether to filter dominated candidates in nodes which are
3211 high in the tree.
3212 - new parameter branching/treemodel/filterlow to specify whether to filter dominated candidates in nodes which are
3213 low in the tree.
3214 - new parameter branching/treemodel/maxfpiter to specify the maximum number of fixed-point iterations to use when
3215 computing the ratio of a variable using the fixed-point method.
3216 - new parameter branching/treemodel/maxsvtsheight to specify the maximum height to compute the SVTS score exactly
3217 before approximating it using the ratio.
3218 - new parameter branching/treemodel/fallbackinf defines the fallback strategy to use when the tree size estimates
3219 obtained by SVTS are infinite.
3220 - new parameter branching/treemodel/fallbacknoprim defines the fallback strategy to use when no primal bound is known
3221 and thus SVTS would not be able to compute a tree size (it would be infinite).
3222 - new parameter branching/treemodel/smallpscost defines the value under which pscosts are considered too small to be
3223 the deciding factor for branching, in which case it may be better not to use the treemodel.
3224
3225- new parameters for symmetry handling constraint handlers to enforce that also non-model constraint are copied:
3226 - new parameter "constraints/orbisack/forceconscopy"
3227 - new parameter "constraints/orbitope/forceconscopy"
3228 - new parameter "constraints/symresack/forceconscopy"
3229
3230
3231### Data structures
3232
3233- small changes in constants of hash functions
3234- added fast 2-universal hash functions for two to seven 32bit elements with 32bit output
3235- extended SCIPpqueueCreate() by additional callback argument SCIP_DECL_PQUEUEELEMCHGPOS to catch position changes
3236- new methods SCIPpqueueDelPos() to delete elements at a specific position in the priority queue and SCIPpqueueFind() to
3237 find a specific position. It is recommended to track position changes using the new callback SCIP_DECL_PQUEUEELEMCHGPOS.
3238 In contrast, using SCIPpqueueFind() can be slow because it needs to compare the element it searches for
3239 with each slot in the queue.
3240
3241### Build system
3242
3243- The default value for DFLAGS in the non-cmake buildsystem has changed from -MM to -MMD. This will break the
3244 generation of depend.* files if that was done by a compiler call that relied on -MM. The new preferred way
3245 to handle compilation dependencies is to additionally use $(DFLAGS) when compiling the object files (.o) and
3246 to include the generated .d files in the Makefile, see also "Build system / Makefile" below.
3247
3248Unit tests
3249----------
3250 - new unit test for treemodel.
3251
3252Testing
3253-------
3254
3255 - fixed an issue that may have lead to wrong status reports in the evaluation scripts
3256
3257Build system
3258------------
3259
3260### Cmake
3261
3262- avoid problem with doubly defined object together with CPLEX
3263
3264### Makefile
3265
3266- Removed static object compilation dependency files (depend.*). If using a GCC compatible compiler, then dependency
3267 files are now dynamically created and updated during build. The new dependency files (*.d) reside next to each object
3268 file (.o) in the corresponding obj subdirectory.
3269- added support for building against Ipopt >= 3.13
3270- unify compiler switches for Intel compiler and avoid problem with doubly defined object together with CPLEX
3271
3272Fixed bugs
3273----------
3274
3275- fix and improve memory handling in symmetry computation
3276- fix shown number of applied conflicts in solving statistics
3277- fix wrongly skipping strong branching call and using old information if LP was solved with 0 iterations
3278- fix minor bug in cut score calculation
3279- fixed several bugs related to rounding locks of variables not being updated correctly
3280- small fix in cons_varbound.c to skip changing bounds of multi-aggregated variables in separation callback
3281- fixed issue in SCIPtightenVar* and SCIPinferVar* that occurs for small bound changes
3282- fixed rejecting minimal boundchange that changed sign of variable, even though SCIPisLb/UbBetter approved it
3283- fixed issue in generateCutNonConvex() which is triggered when adding quadratic constraints during the solving process
3284- fixed bug in freeing the reoptimization data if no problem exists
3285- fixed bug in SCIPreoptReleaseData() when freeing all stored constraints
3286- fixed bug when freeing the transformed problem via interactive shell if reoptimization is enabled
3287- fixed two issues related to (near-)redundant logicor constraints in presolving
3288- fixed counting of aggregations in XOR constraint handler
3289- fixed handling of unbounded solutions
3290- fixed update of LP size information when an LP error occurred during probing
3291- handle special case of variable bound constraints during aggregating variables
3292- tighten sides of linear constraints before trying to upgrade them to more specialized constraints (knapsack, logic-or etc.) when calling SCIPupgradeConsLinear()
3293- fixed an issue in repair heuristic in the case of loose (noncolumn) variables
3294- allow user to correctly set heuristics/alns/(un)fixtol
3295- fixed an issue in heur_completesol which is triggered during bound widening of unbounded continuous variables
3296- fixed bug in cons_indicator if addopposite is true
3297- fixed bug in sepa_disjunctive: treat case that conflictgraph is empty
3298- added safety check in conversion to rational number to avoid overflow
3299- fixed bug in interval evaluation with power-operator in certain situations
3300- fixed behavior of SCIPmatrixCreate() regarding memory management and column generation
3301- SCIPmatrixCreate() returns complete=FALSE when locks do not add up
3302- fixed bug in sepa_oddcylce when variables are fixed
3303- fixed numerical issues related to tighter constraint sides in varbound constraint handler
3304- fixed update of watchedvars in logicor constraint handler in case of a restart during the tree
3305- fixed treatment of multi-aggregated variables in logicor constraint handler
3306- handle special case of redundant implications
3307- fixed numerical issue related to almost-0-values in pseudosolution conflict analysis
3308- fixed numerical issue related to very large greatest common dividers in linear constraint handler
3309- avoid using implications on multiaggregated variables when propagating implications
3310- fixed creation of (Lagrangian) variable bounds in the OBBT propagator
3311- fixed sorting of primal solutions
3312- fixed cleaning of clean buffer in conflict analysis
3313- avoid probing on variables with huge bounds in shift and propagate heuristic
3314- fix issue in printing solutions for variables that have been added by the dual sparsify presolver
3315- fix issue related to fixing redundant logic-or constraints after presolving
3316- fixed bug when parsing logic-or and and-constraints
3317- fixed wrong assert in updateLazyBounds()
3318- fixed bug in pricestore, which resulted in too many problem variables being added
3319- fixed bug in cons_knapsack where weight of clique was not reset after an infeasibility was detected
3320- fixed bug in presol_inttobinary which did not take into account that the aggregation could be rejected due to numerics
3321- fixed bug in debug solution mechanism in connection to variables created by presol_inttobinary
3322- fixed wrong indexing while undoing the implications from a redundant variable in SCIPshrinkDisjunctiveVarSet
3323- redundancy checks in SCIPnodeAddBoundinfer now take a possible change to an active variable into account
3324- fixed adding already added quadratic rows to NLP relaxation during solve
3325- fixed issue related to variable locks in the varbound constraint handler
3326- fixed bug in the quadratic constraint handler when changing infinite constraint sides
3327- fixed sorting of variables in linear constraint handler
3328- added additional checks to ensure numerical stability of dual proofs
3329- fixed a case when activities of a linear constraint got unreliable but where still used for reductions
3330- ensure that lhs <= rhs for linear constraints (without tolerances)
3331- make handling of read errors in SCIPfread() consistent between version with and without ZLIB
3332- correctly drop variable events in cons_indicator in restart
3333- fixed bug in cons_orbitope with upgrading of orbitope constraints
3334- additional checks in some presolvers for time limit being exceeded
3335- fixed bug in presolving of cons_varbound with multi-aggregated variables
3336- improve numerics in conflict analysis by using double-double arithmetic
3337- fixed bound acceptance condition to avoid inconsistencies
3338- fixed numerics in pseudoobj propagator by using double-double arithmetic
3339
3340Miscellaneous
3341-------------
3342
3343- modified display column for memory usage ("mem"), which reports the memory usage most of the time, but shows the creator name
3344 (heuristic, relaxation handler, LP relaxation, strong branching, pseudo solution) of every new incumbent solution. Together with this change,
3345 heuristic display characters have been unified to represent the type of the heuristic
3346 (diving, Large neighborhood search, propagation, etc.), see also type_heur.h.
3347- added assert that ensures that the locks of a variable have been decreased to 0 when it is freed
3348- added more output for completing a partial solution
3349- checks in debug mode that clean buffer memory is really clean when being freed are now disabled by default
3350- don't compute symmetries if reoptimization is enabled
3351- prefer integral values when fixing an almost-fixed continuous variable in the trivial presolver
3352- changed the name of the variable that is added by the OSiL reader to represent the quadratic or nonlinear parts of the objective function
3353- SCIP_EXPORT is now defined as __attribute__((__visibility__("default"))) if GCC and no SCIP config header is used
3354
3355@page RN6 Release notes for SCIP 6
3356
3357@section RN602 SCIP 6.0.2
3358*************************
3359
3360Features
3361--------
3362
3363- The abspower constraint handler now passes more accurate convexity
3364 information to the NLP relaxation.
3365
3366Examples and applications
3367-------------------------
3368
3369- added parsing functionality for optcumulative constraints in CIP format
3370
3371Interface changes
3372-----------------
3373
3374### Interfaces to external software
3375
3376- Updated the Mosek LP solver interface to support Mosek 9.0.
3377
3378Build system
3379------------
3380
3381### Cmake
3382
3383- new target to 'doc' to build documentation
3384- ctests now fail if parameter file not found
3385- add flag STATIC_GMP and improve GMP find module
3386- remove non-API functions from library (API functions use new macro SCIP_EXPORT)
3387- increase minimal required CMake version to 3.3
3388- correct paths and dependency information when installing SCIP
3389
3390Fixed bugs
3391----------
3392- fixed SCIP-Jack presolving bug that could lead to wrong results for Steiner arborescence problems
3393- fixed wrong unboundedness result in case not all constraints were already in the LP and enforcement was
3394 skipped because an optimal solution was found
3395- fixed wrong enforcement of constraints in the disjunction constraint handler
3396- fixed wrong behavior of concurrent solve ignoring initial solutions
3397- fixed bug in concurrent solve when problem was already solved in presolving
3398- aggregate non-artificial integer variable for XOR constraints with two binary variables and delete constraint
3399- copy the objective offset when copying the original problem
3400- fixed bug in SCIPlpiGetBInvARow in lpi_cpx using wrong size of resulting vector
3401- fixed quadratic runtime behavior in sepa_aggregation
3402- fixed statistics of separators
3403- improve numerical stability in varbound constraint handler by using double-double arithmetic
3404- fixed bug in propagation of dual proofs
3405- fixed bugs that arise for multiaggregated indicator variables by disallowing multiaggregation for them
3406- improve numerical stability in SCIPcomputeBilinEnvelope* by using double-double arithmetic
3407- fixed bug related to releasing pending bound changes in tree.c
3408- set STD FENV_ACCESS pragma to on in code that changes floating-point rounding mode
3409- disable GCC optimizations in main interval arithmetic code to prevent wrong optimizations
3410- fixed wrong assert in cons_xor concerning the variable type
3411- fixed different behavior of SCIPisLbBetter and SCIPisUbBetter between having NDEBUG defined or not
3412- correctly handle bound disjunctions in symmetry detection
3413- fixed issue in reliability branching related to the LP error flag not being reset
3414- fixed treatment of near-infinite bounds in shiftandpropagate's problem transformation
3415- fixed handling of infinite values in SCIPcomputeHyperplaneThreePoints()
3416- fixed comparisons of infinite values in heur_intshifting.c and heur_shifting.c
3417- fixed bug related to updating unprocessed cuts in the cutpool
3418- fixed bug related to enabling quadratic constraints during `CONSINITLP`
3419- add missing SCIP_EXPORT for functions used by GCG
3420- fixed memory leak and wrong initialization for trival cases in cons_symresack.c
3421- fixed bug with upgrading to packing/partitioning orbitopes
3422- fixed bug with the status while upgrading in presol_symbreak.c
3423- fixed wrong stage while clearing the conflict store
3424- fixed behavior of SCIPfixVar() by setting infeasible pointer to TRUE if fixval lies outside variable domain
3425- allow tightenVar() in SCIP_STAGE_PROBLEM stage
3426- fixed bug in cumulative constraint handler when separating the LP solution
3427- fixed issues with integer overflow in cumulative constraint handler
3428- fixed bug where the convexity of Benders' decomposition subproblems was checked even when users defined subproblem
3429 solving methods. Now, as per the documentation, the user must explicitly state whether the subproblem is convex
3430- fixed wrong indexing in heur_dualval
3431- fixed issue with basis status in SoPlex LPi
3432
3433Miscellaneous
3434-------------
3435
3436- statistics now output primal/dual bounds if objective limit is reached
3437- memory check in debug mode is now disabled by default
3438- message is now provided to the user to inform that automatic Benders' auxiliary variable lower bound computations are
3439 not activated when user defined subproblem solving methods are present
3440- corrected documentation of the primalgap in SCIP; describe when it will be infinite
3441
3442@section RN601 SCIP 6.0.1
3443*************************
3444
3445Features
3446--------
3447
3448- when using a debug solution every (multi-)aggregation will be checked w.r.t. this solution
3449
3450Performance improvements
3451------------------------
3452
3453- try greedy solution first before solving knapsack exactly using dynamic programming in SCIPsolveKnapsackExactly,
3454 compute greedy solution by weighted median selection.
3455- don't consider implied redcost by default in the reduced cost propagator
3456
3457Interface changes
3458-----------------
3459
3460### Deleted and changed API functions and macros
3461
3462- The preprocessor macro NO_CONFIG_HEADER now needs to be defined when
3463 including SCIP header files from a SCIP build or installation that
3464 has been build via the Makefile-only build system.
3465
3466- The following preprocessor macros have been renamed:
3467 WITH_ZLIB to SCIP_WITH_ZLIB, WITH_GMP to SCIP_WITH_GMP, WITH_READLINE
3468 to SCIP_WITH_READLINE, NO_SIGACTION to SCIP_NO_SIGACTION, NO_STRTOK_R
3469 to SCIP_NO_STRTOK_R, ROUNDING_FE to SCIP_ROUNDING_FE, ROUNDING_FP to
3470 SCIP_ROUNDING_FP, ROUNDING_MS to SCIP_ROUNDING_MS. Note, however, that
3471 the names of macros NO_RAND_R and NO_STRERROR_R have not been changed
3472 so far.
3473
3474### New API functions
3475
3476- SCIPhashmapInsertInt(), SCIPhashmapSetImageInt(), and SCIPhashmapGetImageInt() to use integer values as images in hashmaps
3477
3478### Command line interface
3479
3480- warn about coefficients in MPS files with absolute value larger than SCIP's value for infinity
3481
3482### Changed parameters
3483
3484- default clock type for timing is now wallclock
3485
3486Unit tests
3487----------
3488
3489- added unit tests for exact knapsack solving and (weighted) median selection algorithms
3490
3491Build system
3492------------
3493
3494### Cmake
3495
3496- add missing GMP dependency when compiling with SYM=bliss
3497- add DL library when linking to CPLEX to avoid linker errors
3498- new config.h header defining the current build configuration, e.g. SCIP_WITH_GMP
3499
3500Fixed bugs
3501----------
3502
3503- fixed handling of weights in cons_sos1 and cons_sos2 (NULL pointer to weights)
3504- fixed handling of unbounded LPs in SCIP and in several LPIs; added heuristic method to guess solution
3505- the STO reader is capable of handling scenarios defined using lower case "rhs"
3506- fixed OPB reader for instances without explicit plus signs
3507- correct dual solution values for bound constraints
3508- fixed recognition of variable with only one lock in cons_bivariate, cons_quadratic, and cons_nonlinear
3509- fixed update of constraint violations in solution repair in cons_bivariate, cons_quadratic, and cons_nonlinear
3510- print error message and terminate if matrix entries of a column are not consecutive in mps format
3511- fixed incorrect handling of fixed variables when transfer of cuts from LNS heuristic for Benders' decomposition
3512- fix returning local infeasible status by Ipopt interface if Ipopt finds problem locally infeasible
3513- skip attempt to apply fixings in linear constraint handler during solving stage as LP rows cannot change anymore
3514- fixed bug when reading >= indicator constraints in MPS format
3515- fix issue with nodes without domain changes if we ran into solution limit in prop_orbitalfixing
3516- fixed unresolved reference to CppAD's microsoft_timer() function on builds with MS/Intel compilers on Windows
3517- ignore implications added through SCIPaddVarImplication() that are redundant to global bounds also in the
3518 special case of an implication between two binary variables; also, use implications instead of cliques in the case
3519 of a binary implied variable with nonbinary active representative
3520- fixed bug with aggregated variables that are aggregated in propagation of cons_sos1
3521- fixed some special cases in SCIPselect/SCIPselectWeighted methods
3522- relaxed too strict assertion in Zirounding heuristic
3523- fixed the upgrade routine to XOR constraints: aggregate integer variable if its coefficient has the wrong sign
3524- fixed handling of nonartificial parity variables when deleting redundant XOR constraints
3525- earlier deletion of trivial XOR constraints (at most 1 operator left)
3526- fixed wrong hashmap accesses and added sanity check for the correct hashmap type
3527- avoid copying of unbounded solutions from sub-SCIPs as those cannot be checked completely
3528- corrected the output of the first LP value in case of branch-and-price
3529- fixed possible integer overflow, which led to wrong conclusion of infeasibility, in energetic reasoning of cons_cumulative.c
3530
3531Miscellaneous
3532-------------
3533
3534- do not scale linear constraints to integral coefficients
3535
3536@section RN600 SCIP 6.0.0
3537*************************
3538
3539Features
3540--------
3541
3542- new diving heuristic farkasdiving that dives into the direction of the pseudosolution and tries to construct Farkas-proofs
3543- new diving heuristic conflictdiving that considers locks from conflict constraints
3544- restructuring of timing of symmetry computation that allows to add symmetry handling components within presolving
3545- `lp/checkstability` is properly implemented for SoPlex LPI (spx2)
3546- new branching rule lookahead that evaluates potential child and grandchild nodes to determine a branching decision
3547- limits on the number of presolving rounds a presolver (maxrounds) or propagator/constraint handler (maxprerounds)
3548 participates in are now compared to the number of calls of the particular presolving method, not the number of
3549 presolving rounds in general, anymore
3550- new miscellaneous methods for constraints that have a one-row linear representation in pub_misc_linear.h
3551- a Benders' decomposition framework has been added. This framework provides the functionality for a user to solve a
3552 decomposed problem using Benders' decomposition. The framework includes classical optimality and feasibility cuts,
3553 integer optimality cuts and no-good cuts.
3554- add statistic that presents the number of resolves for instable LPs
3555- new readers for stochastic programming problems in SMPS format (reader_sto.h, reader_smps.h)
3556
3557Performance improvements
3558------------------------
3559
3560- cuts generated from certain quadratic constraints with convex feasible region are now global
3561- performance improvements for Adaptive Large Neighborhood Search heur_alns.c
3562 + all neighborhoods now start conservatively from maximum fixing rate
3563 + new default parameter settings for bandit selection parameters
3564 + no adjustment of minimum improvement by default
3565- improved bound tightening for some quadratic equations
3566- constraint handler checking order for original solutions has been modified to check those with negative check priority
3567 that don't need constraints after all other constraint handlers and constraints have been checked
3568- deactivate gauge cuts
3569
3570Examples and applications
3571-------------------------
3572
3573- new example `brachistochrone` in CallableLibrary examples collection; this example implements a discretized model to
3574 obtain the trajectory associated with the shortest time to go from point A to B for a particle under gravity only
3575- new example `circlepacking` in CallableLibrary examples collection; this example models two problems about packing
3576 circles of given radii into a rectangle
3577- new price-and-branch application for the ringpacking problem
3578- new stochastic capacitated facility location example demonstrating the use of the Benders' decomposition framework
3579
3580Interface changes
3581-----------------
3582
3583### New and changed callbacks
3584
3585- added parameter locktype to `SCIP_DECL_CONSLOCK` callback to indicate the type of variable locks
3586
3587### Deleted and changed API functions
3588
3589- Symmetry:
3590 + removed function SCIPgetTimingSymmetry() in presol_symmetry.h since this presolver does not compute symmetries independent
3591 of other components anymore
3592 + additional argument `recompute` to SCIPgetGeneratorsSymmetry() to allow recomputation of symmetries
3593
3594- Random generators:
3595 + the seed of SCIPinitializeRandomSeed() is now an unsigned int
3596 + the seed of SCIPsetInitializeRandomSeed() is now an unsigned int and it returns an unsigned int
3597 + new parameter for SCIPcreateRandom() to specify whether the global random seed shift should be used in the creation of
3598 the random number generator
3599
3600- Miscellaneous:
3601 + additional arguments `preferrecent`, `decayfactor` and `avglim` to SCIPcreateBanditEpsgreedy() to choose between
3602 weights that are simple averages or higher weights for more recent observations (the previous default).
3603 The last two parameters are used for a finer control of the exponential decay.
3604 + functions SCIPintervalSolveUnivariateQuadExpression(), SCIPintervalSolveUnivariateQuadExpressionPositive(), and
3605 SCIPintervalSolveUnivariateQuadExpressionPositiveAllScalar() now take an additional argument to specify already
3606 existing bounds on x, providing an entire interval ([-infinity,infinity]) gives previous behavior
3607
3608### New API functions
3609
3610- SCIPintervalSolveUnivariateQuadExpressionNegative()
3611- SCIPvarGetNLocksDownType() and SCIPvarGetNLocksUpType()
3612- SCIPaddConsLocksType()
3613- SCIPconsIsLockedTypePos(), SCIPconsIsLockedTypeNeg(), SCIPconsIsLockedType(), SCIPconsGetNLocksTypePos() and SCIPconsGetNLocksTypeNeg()
3614- SCIPstrncpy(), a safe version of strncpy()
3615
3616### Changed parameters
3617
3618- Removed parameters:
3619 - `heuristics/alns/stallnodefactor` as the stall nodes are now controlled directly by the target node limit within the heuristic
3620 - `presolving/symmetry/computepresolved` since this presolver does not compute symmetries independent of other components anymore
3621 - `separating/maxincrounds`
3622
3623### New parameters
3624
3625- `lp/checkfarkas` that enables the check of infeasibility proofs from the LP
3626- `heuristics/alns/unfixtol` to specify tolerance to exceed the target fixing rate before unfixing variables, (default: 0.1)
3627- `propagating/orbitalfixing/symcomptiming` to change the timining of symmetry computation for orbital fixing
3628- `lp/alwaysgetduals` ensure that the dual solutions are always computed from the recent LP solve
3629- `display/relevantstats` indicates whether the small relevant statistics are displayed at the end of solving
3630- `propagating/orbitalfixing/performpresolving` that enables orbital fixing in presolving
3631- `presolving/symbreak/addconsstiming` to change the timining of symmetry computation for symmetry handling inequalities
3632- `propagating/orbitalfixing/enabledafterrestarts` to control whether orbital fixing is enabled after restarts
3633- `benders/∗` new submenu for Benders' decomposition related settings. This includes the settings related to the
3634 included Benders' decompositions and the general Benders' decomposition settings.
3635- `benders/<decompname>/benderscuts/∗` submenu within each included Benders' decomposition to control the Benders'
3636 decomposition cuts. The cuts are added to each decomposition separately, so the setting are unique to each
3637 decomposition.
3638
3639### Data structures
3640
3641- new enum `SCIP_LOCKTYPE` to distinguish between variable locks implied by model (check) constraints (`SCIP_LOCKYPE_MODEL`)
3642 and variable locks implied by conflict constraints (`SCIP_LOCKYPE_CONFLICT`)
3643- expression interpreter objects are now stored in the block memory
3644
3645Deleted files
3646-------------
3647
3648- removed presolving plugin presol_implfree
3649- separated scip.c into several smaller implementation files scip_*.c for better code overview; scip.c was removed,
3650 but the central user header scip.h remains, which contains includes of the separated headers
3651
3652Fixed bugs
3653----------
3654
3655- fixed bug in gcd reductions of cons_linear regarding an outdated flag for variable types
3656- fixed bug in heur_dualval regarding fixing routine for integer variables
3657- suppress debug solution warnings during problem creation stage
3658- fixed check for activated debugging solution in components constraint handler
3659- fixed potential bug concerning solution linking to LP in SCIPperformGenericDivingAlgorithm()
3660- fixed reward computation in ALNS on continuous, especially nonlinear, problems
3661- fixed bug in freeing reoptimization data if problem was solved during presolving
3662- fixed check of timing in heur_completesol
3663- fixed wrong propagation in optcumulative constraint handler
3664- fixed non-deterministic behavior in OBBT propagator
3665- don't disable LP presolving when using Xpress as LP solver
3666- fixed possible `NULL` pointer usage in cons_pseudoboolean
3667- ensured that SCIPgetDualbound() returns global dual bound instead of the dual bound of the remaining search tree
3668- fixed rare division-by-zero when solving bivariate quadratic interval equation
3669- use total memory for triggering memory saving mode
3670- fix parsing of version number in the CMake module for Ipopt
3671- fixed handling of implicit integer variables when attempting to solve sub-MIP in nlpdiving heuristic
3672- added workaround for bug when solving certain bivariate quadratic interval equations with unbounded second variable
3673- fixed bug with releasing slack variable and linear constraint in cons_indicator
3674- fixed problem when writing MPS file with indicator constraints with corresponding empty linear constraints
3675- fixed bug in heur_vbound triggered when new variables were added while constructing the LP
3676- fixed bug with unlinked columns in SCIProwGetLPSolCutoffDistance()
3677
3678Miscellaneous
3679-------------
3680
3681- updated CppAD to version 20180000.0
3682- remove LEGACY mode, compiler needs to be C++11-compliant
3683
3684@page RN5 Release notes for SCIP 5
3685
3686@section RN501 SCIP 5.0.1
3687*************************
3688
3689Features
3690--------
3691
3692- SCIP executable handles the `SIGTERM` signal. If the process receives a `SIGTERM`, SCIP terminates the solution process with a
3693 new `SCIP_STATUS` code `SCIP_STATUS_TERMINATE` and displays all relevant statistics before exiting.
3694- add number of conflict constraints found by diving heuristics to statistics
3695- allow output of lower bounds for visualization
3696- added symmetry detection for linking constraints
3697
3698Performance improvements
3699------------------------
3700
3701- disable disaggregation of quadratic constraints by changing the default for `constraints/quadratic/maxdisaggrsize` to 1
3702 (disaggregation can still be very helpful on some instances, but also seems hurtful on others)
3703
3704- Cuts:
3705 - increased threshold when to scale up cuts that are generated by nonlinear constraint handlers
3706 - test additional scaling factors in CMIR cut generation heuristic
3707 - cleaned up implementation of the cut selection procedure and added new cut quality measure
3708 - use random tie-breaking in cut selection
3709
3710Interface changes
3711-----------------
3712
3713### New API functions
3714
3715- new methods SCIPtryTerminate() and SCIPterminated() in scip/interrupt.h for handling of SIGTERM signals.
3716- new method SCIPselectCuts() to run SCIP's cut selection procedure on a given array of cuts
3717
3718### Changed parameters
3719
3720- rename parameter `constraints/orbisack/orbisack/coverseparation` to `constraints/orbisack/coverseparation`
3721
3722### New parameters
3723
3724- `visual/displb` that enables output of lower bounds for visualization
3725- `presolving/symmetry/displaynorbitvars` (whether we display the number of affected variables in the statistics)
3726- `separating/efficacyfac` to change the weight of the efficacy in cut score calculation
3727- `separating/dircutoffdistfac` to change the weight of the directed cutoff distance in cut score calculation
3728
3729### Data structures
3730
3731- new `SCIP_STATUS` code `SCIP_STATUS_TERMINATE` in scip/interrupt.h for handling of SIGTERM signals.
3732
3733Unit tests
3734----------
3735
3736- expanded unit tests of the lpis
3737- added check to unit tests that problem is not solved after every change
3738
3739Fixed bugs
3740----------
3741
3742- fixed LP status to unsolved when marking LP to be resolved if objective limit has changed
3743- copy parameter settings to sub-SCIPs in SCIPcopyLargeNeighborhoodSearch() also when copying only LP rows
3744- fixed a check for fixed variables in Binpacking example
3745- generate deprecation warnings when using SCIPaddCut
3746- fix bug in sepa_gomory if cut is a bound change
3747- fixed handling of infinite bounds in cons_sos1
3748
3749- Constraints:
3750 - fixed bug while scaling linear constraints
3751 - don't delete conflict constraints that were transformed into model constraints during a restart
3752 - fixed treatment of variable aggregations in knapsack constraint handler that led to wrong propagations
3753
3754- LP Interface:
3755 - fixed LPI status after changing objective in lpi_cpx, lpi_grb, lpi_xprs, lpi_msk
3756 - fixed and unified asserts in LPIs
3757 - retrieve interior solution instead of (possibly non-existing) basic solution from mosek after using barrier without crossover in lpi_msk
3758 - fixed bug with `NULL` pointer handling in LPIs
3759
3760- Heuristics:
3761 - fixed wrong cast in LP iteration limit computation in proximity search heuristic
3762 - fixed check for time limit in heur_nlpdiving
3763 - improved numerics and fixed stop criterion in zirounding heuristic
3764
3765@section RN500 SCIP 5.0.0
3766*************************
3767
3768Features
3769--------
3770
3771- new numerical solution violations get printed when checksol is called
3772- added analysis of the clique table which identifies possible aggregations via the search for
3773 strongly connected components and may detect infeasible assignments on the way
3774- added macros to do computations with a higher precision by using double-double arithmetic
3775- extended conflict analysis by analyzing dual solutions of boundexceeding LPs
3776- revised internal debugging mechanism to check against a user given debug solution (debug.h)
3777
3778- Heuristic:
3779 - add new heuristic MPEC that solves a MPEC reformulation of a mixed-binary nonlinear problem by regularized NLP reformulations
3780 - new primal heuristic ALNS that orchestrates eight different LNS heuristics adaptively
3781 using algorithms for the multi-armed bandit problem
3782 - three bandit selection algorithms to face sequential decision problems under uncertainty
3783
3784- Presolving and symmetry:
3785 - added presol_symmetry.c for computing and storing symmetry information of a MIP
3786 - added presol_symbreak.c to detect special symmetry structures and to add symmetry handling constraints
3787 - SCIP can now automatically detect and compute symmetries in MIPs (if a graph automorphism code is linked in)
3788 - added cons_symresack.c to handle permutation symmetries in a binary programs via inequalities and propagation
3789 - added cons_orbisack.c to handle special permutation symmetries in a binary programs via inequalities and propagation
3790 - cons_orbitope.c can now handle full orbitopes as well
3791
3792- Propagator:
3793 - added new propagator orbital fixing
3794 - utilizing linear inequalities to compute stronger linearizations for bilinear terms; the inequalities are computed in
3795 the OBBT propagator
3796
3797- Cuts:
3798 - added API for aggregating rows for generating cuts which uses double-double arithmetic internally
3799 - added filtering of parallel cuts in the cut pool
3800
3801- Plugins:
3802 + added new plugin type `table` for adding user-defined statistics tables
3803 + new presolving plugin presol_sparsify that tries to cancel nonzero coefficients in linear constraints by adding
3804 multiples of linear equalities
3805
3806Performance improvements
3807------------------------
3808
3809- use disjoint set to reduce peak memory usage and time to compute of clique table connectedness information
3810- add and use RESTRICT macro for some pointers
3811- improved the implementation of SCIPvarGetActiveRepresentatives
3812- speed-up reverse propagation
3813- removed bestrelaxsol and directly access relaxation solution instead to decrease overhead when using relaxation handlers
3814- for fast presolving emphasis, disable use of implications in logicor presolving
3815- use limit on the total number of nonzeros added to the clique table during the greedyCliqueAlgorithm of cons_knapsack.c
3816- revised disaggregation of quadratic constraints: the number of created constraints can now be controlled and the
3817 disaggregated constraints are scaled in order to increase numerical accuracy
3818- disabled reformulation of products of a binary variable with a linear term that does not solely involve binary variables
3819- speed up creation of LP in the computation of relative interior points
3820- improved dual ray analysis
3821- drop events of disabled linear constraints to reduce event processing effort
3822
3823- Separation:
3824 - new implementation of zerohalf separator
3825 - enabled cutting plane separation in the tree
3826 - improved cut selection and management
3827 - improved cut post-processing: apply coefficient tightening, enforce maximal dynamism
3828
3829- Heuristics:
3830 - improved selection of rows in CMIR aggregation heuristic
3831 - generate lifted flowcover cuts in CMIR cut generation heuristic
3832 - faster implementation of CMIR cut generation heuristic
3833 - use LP solution polishing during probing and diving mode to activate it during many primal heuristics; remains disabled
3834 during strong branching and OBBT
3835 - improved versions of the clique and variable bound pre-root heuristics that are often able to fix many more variables
3836
3837Interface changes
3838-----------------
3839
3840### New and changed callbacks
3841
3842- New types:
3843 - added new abstract selection algorithm `SCIP_BANDIT` together with callbacks
3844 - added new types for symmetry handling
3845
3846- NLP interface:
3847 - dropped NLP termination status `SCIP_NLPTERMSTAT_UOBJLIM`
3848
3849- NLP callbacks:
3850 - added parameter `objval` to `SCIP_DECL_NLPIGETSOLUTION` for returning the optimal objective value (can be set to `NULL`)
3851
3852- Separation callbacks:
3853 - added parameter `allowlocal` to `SCIP_DECL_SEPAEXECLP` and `SCIP_DECL_SEPAEXECSOL` to switch generation of locally valid cuts
3854 - added parameter `dstatssize` to `SCIP_DECL_NLPIDELVARSET` and `SCIP_DECL_NLPIDELCONSSET`
3855
3856### Deleted and changed API functions
3857
3858- Branching rules:
3859 - removed parameter `allowaddcons` from SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), and
3860 SCIPincludeBranchruleRelpscost()
3861
3862- Constraint Handlers:
3863 - generalized SCIPcreateConsOrbitope() and SCIPcreateConsBasicOrbitope() method to three orbitope types (full, partitioning, packing)
3864
3865- Cutting plane separation methods:
3866 - changed function signature of SCIPcalcMIR()
3867 - changed function signature of SCIPcalcStrongCG()
3868 - new method SCIPaddRow() to replace deprecated SCIPaddCut()
3869 - removed parameter `scaling` from SCIPgetRowprepViolation()
3870 - added parameter `allowlocal` to SCIPseparateSol()
3871
3872- LP interface:
3873 - replaced LP parameters `SCIP_LPPARAM_LOBJLIM` and `SCIP_LPPARAM_UOBJLIM` by `SCIP_LPPARAM_OBJLIM`
3874
3875- NLP interface:
3876 - SCIPnlpStatisticsCreate() and SCIPnlpStatisticsFree() now require a pointer to blockmemory as parameter
3877 - added parameter `objval` to SCIPnlpiGetSolution() of NLPIs for returning the optimal objective value (can be set to `NULL`)
3878 - added parameter `varnameslength` to SCIPexprParse()
3879 - added parameter `dstatssize` to SCIPnlpiDelVarSet() and SCIPnlpiDelConsSet()
3880 - added modifier const to `exprtree` parameter of SCIPnlpiChgExprtree()
3881
3882- Primal heuristics:
3883 - SCIPheurPassIndicator() has a new parameter which allows to pass the objective of the solution
3884
3885- Relaxator methods:
3886 - added parameter `includeslp` to SCIPmarkRelaxSolValid(), SCIPsetRelaxSolVals() and SCIPsetRelaxSolValsSol();
3887 - removed parameter `includeslp` from SCIPrelaxCreate() and SCIPincludeRelax()
3888 - removed functions SCIPrelaxIncludesLp() and SCIPrelaxSetIncludesLp()
3889 - replaced method SCIPgetRelaxFeastolFactor() by SCIPrelaxfeastol() and added SCIPchgRelaxfeastol()
3890
3891- Misc:
3892 - changed return type of SCIPcliqueGetId() from `int` to `unsigned int`
3893 - removed SCIPvarGetCliqueComponentIdx(); the connectedness information of the clique table is now stored as a
3894 `SCIP_DISJOINTSET` member of the clique table and cannot be publicly accessed
3895 - added parameter `copytables` to SCIPcopyPlugins()
3896 - SCIPsolveParallel() has been deprecated, use the new method SCIPsolveConcurrent() instead
3897 - allowed SCIPgetNConss() in stage `SCIP_STAGE_INITSOLVE`
3898
3899### New API functions
3900
3901- SCIPaddRow() to replace deprecated SCIPaddCut()
3902- methods to display linear constraint classification types; use SCIPclassifyConstraintTypesLinear()
3903 after reading a problem to classify linear constraint types
3904- public methods SCIPvariableGraphBreadthFirst() and SCIPvariableGraph{Create,Free}() to
3905 perform breadth-first search on the variable constraint graph used by the GINS and ALNS heuristics
3906- SCIPsetProbingLPState() to install given LP state and/or norms at the current probing node
3907- SCIPbranchcandGetLPMaxPrio() and SCIPbranchcandGetExternMaxPrio() to query the maximal branching priority of given
3908 branching candidates; also added SCIPbranchcandGetNPrioLPCands() to access the number of LP candidates with this priority.
3909- SCIPupdateSolIntegralityViolation(), SCIPupdateSolBoundViolation(), SCIPupdateSolLPRowViolation(),
3910 SCIPupdateSolConsViolation() and SCIPupdateSolLPConsViolation() for updating numerical solution violations, as well as
3911 SCIPactivateSolViolationUpdates() and SCIPdeactivateSolViolationUpdates() for activating/deactivating violation updates globally
3912- SCIPsetSubscipDepth() to set the depth of SCIP as a copied subproblem during problem stage
3913- SCIPdivesetGetNSols() to query the number of found solutions from a diveset.
3914- SCIPnextafter() that wraps different nextafter methods to return the next representable value after a given value
3915- SCIPlinConsStats{Create,Free,GetTypeCount,GetSum}() and SCIPprintLinConsStats() to work with linear constraint classification through the C API
3916- SCIPgetRowNumIntCols() that returns the number of integer columns in a row
3917- SCIPsetSlackVarUb() to control upper bound of slack variable in cons_indicator
3918
3919- Data structures:
3920 - methods SCIPrandomCreate() and SCIPrandomFree() are no longer public and should be replaced by SCIPcreateRandom() and
3921 SCIPfreeRandom(), respectively (the new methods respect the global parameter `randomization/randomseedshift` automatically)
3922 - methods SCIPdigraphCreate() and SCIPdigraphCopy() are no longer public and should be replaced by SCIPcreateDigraph() and
3923 SCIPcopyDigraph(), respectively, which receive a SCIP argument and are more robust towards future interface changes
3924
3925- Bilinear:
3926 - SCIPgetAllBilinearTermsQuadratic() to access data of all existing bilinear terms in quadratic constraints
3927 - SCIPaddBilinearIneqQuadratic() to propose an inequality with two variables that appear in a bilinear term
3928 - SCIPcomputeBilinEnvelope{1,2}() to compute a linearization of a bilinear term when considering at most two linear inequalities
3929
3930- Clique:
3931 - SCIPcliqueGetIndex() which returns the unique identifier for the given clique
3932 - SCIPgetNCliquesCreated() which returns the number of cliques created so far
3933
3934- Cutting plane separation methods:
3935 - SCIPisCutNew() that returns whether a cut is already present in the global cut pool
3936 - SCIPgetSepaMinEfficacy() to access separating/minefficacy(root)
3937
3938- Interfaces:
3939 - interface methods to create and use bandit algorithms implemented as SCIP core plugins
3940 - interface methods for aggregating rows and computating MIP cuts, see cuts.h
3941 - interface method SCIPsetRandomSeed() to (re)set a random number generator seed
3942
3943### Command line interface
3944
3945- new interactive shell functionality to display linear constraint classification types;
3946 use `display linclass` after reading a problem to classify linear constraint types
3947- new command line parameter `-r` to pass a nonnegative integer as random seed.
3948
3949### Interfaces to external software
3950
3951- added interface to the NLP solver WORHP
3952- added interface to the NLP solver FilterSQP
3953- added interface to graph automorphism algorithms in `src/symmetry/` (initially only to BLISS)
3954- unify handling of objective limit in LPIs by replacing LPI parameters `SCIP_LPPAR_LOBJLIM` and `SCIP_LPPAR_UOBJLIM` by
3955 `SCIP_LPPAR_OBJLIM`
3956- dropped support for MOSEK < 7.0.0.0
3957
3958### Changed parameters
3959
3960- changed and removed several parameters for zerohalf separator
3961- replaced `constraints/quadratic/disaggregate` by `constraints/quadratic/maxdisaggrsize` to bound
3962 the total number of created constraints when disaggregating a quadratic constraint
3963- new value 3 for parameter `lp/solutionpolishing` to enable LP polishing only during probing and diving mode
3964- parameter `conflict/useboundlp` has new values `d` (only dual solution analysis) and `b` (both, conflict and dual solution analysis)
3965
3966- Heuristics:
3967 - fixed typo `heuristics/completesol/maxunkownrate` has changed to `heuristics/completesol/maxunknownrate`
3968 - replaced parameter `heuristics/{clique,vbounds}/minfixingrate` by `heuristics/{clique,vbounds}/minintfixingrate` and
3969 `heuristics/{clique,vbounds}/minmipfixingrate`, which check the fixing rate before LP solving and after sub-MIP presolve
3970
3971- Separating:
3972 - parameter `separating/maxstallrounds` only applies to nodes in the tree (not the root node, anymore); use the new
3973 parameter `separating/maxstallroundsroot` for the root node
3974 - moved parameters for flowcover and cmir separators to `separating/aggregation`
3975
3976- Removed parameters:
3977 - `constraints/{abspower,bivariate,nonlinear,quadratic,soc}/scaling`
3978 - `constraints/{abspower,bivariate,quadratic,nonlinear}/mincutefficacysepa`
3979 - `constraints/{abspower,bivariate,quadratic,nonlinear}/mincutefficacyenfofac`
3980 - `constraints/soc/minefficacy`
3981 - `conflict/usemir`
3982 - `conflict/prefermir`
3983 - `heuristics/clique/{multiplier,initseed}`
3984 - `separating/feastolfac`
3985 - `separating/orthofac`
3986 - `separating/cgmip/allowlocal` (use parameter passed to separation callback instead)
3987 - `separating/{gomory,strongcg}/maxweightrange`
3988
3989### New parameters
3990
3991- `conflict/prefinfproof` (prefer infeasibility proof to boundexceeding proof)
3992- `conflict/sepaaltproofs`
3993- `constraints/indicator/maxsepanonviolated` to stop separation after separation of non violated cuts
3994- `constraints/orbisack/coverseparation` (whether orbisack cover inequalities should be separated)
3995- `constraints/orbisack/orbiSeparation` (whether facet defining inequalities for orbisack should be separated)
3996- `constraints/orbisack/coeffbound` (maximal value of coefficients in orbisack facet inequalities)
3997- `constraints/orbisack/checkpporbisack` (check whether orbisacks can be strengthened by packing/partitioning constraints)
3998- `constraints/orbisack/checkalwaysfeas` (whether conscheck returns always `SCIP_FEASIBLE`)
3999- `constraints/orbitope/checkpporbitope` (check packing/partitioning orbitopes)
4000- `constraints/orbitope/sepafullorbitope` (separate full orbitopes)
4001- `constraints/orbitope/checkalwaysfeas` (whether conscheck returns always `SCIP_FEASIBLE`)
4002- `constraints/quadratic/{usebilinineqbranch,minscorebilinterms,bilinineqmaxseparounds}`
4003- `constraints/quadratic/disaggrmergemethod` to change the strategy of how to merge independent blocks of quadratic constraints
4004- `constraints/quadratic/mincurvcollectbilinterms` to change the minimal curvature of constraints
4005 to be considered when returning bilinear terms to other plugins
4006- `constraints/quadratic/binreformbinaryonly` to disable reformulation of products of binary and non-binary variables
4007- `constraints/symresack/ppsymresack` (check whether symresacks can be strengthend by packing/partitining constraints)
4008- `constraints/symresack/checkalwaysfeas` (whether conscheck returns always `SCIP_FEASIBLE`)
4009- `expbackoff` to all separators which increases the frequency exponentially over the depth in the tree
4010- `heuristics/completesol/{beforepresol,maxlpiter,maxcontvars}`
4011- `heuristics/{clique,vbounds}/maxbacktracks` to limit the number of backtracks in the fix-and-propagate phase
4012- `heuristics/{clique,vbounds}/uselockfixings` to enable fixing of additional variables based on variable locks
4013- `heuristics/vbounds/{feasvariant,tightenvariant}` to specify the fixing variants used by the vbounds heuristic
4014- `lp/refactorinterval` to change the refactorization interval of the LP solver
4015- `misc/debugsol` to specify a debug solution that should be checked during the solve
4016- `misc/usesymmetry` to determine whether symmetry handling should be used
4017- `presolving/symbreak/conssaddlp` (whether symmetry handling inequalities should be added to the LP)
4018- `presolving/symbreak/addsymresacks` (whether symresacks should be used to handle symmetries)
4019- `presolving/symbreak/computeorbits` (whether symmetry orbits should be computed)
4020- `presolving/symbreak/detectorbitopes` (whether it should be checked if some symmetries can be handled by orbitopes)
4021- `presolving/symmetry/computepresolved` (Whether symmetries are computed after presolving)
4022- `presolving/symmetry/maxgenerators` (maximal number of generators generated by symmetry detection)
4023- `presolving/symmetry/checksymmetries` (whether validity of computed symmetries should be verified)
4024- `propagating/obbt/{itlimitfactorbilin,minnonconvexity,createbilinineqs}`
4025- `propagating/vbounds/minnewcliques` to specify the minimum number of new cliques to trigger another clique table analysis
4026- `propagating/vbounds/{maxcliquesmedium,maxcliquesexhaustive}` to limit the number of cliques relative to the
4027 number of binary variable for performing clique table analysis
4028- `separating/maxincrounds`
4029- `separating/maxlocalbounddist`, `separating/maxcoefratio` and `separating/intsupportfac`
4030- if PaPILO >= 2.1: `presolving/milp/maxbadgesizepar` to limit the maximal badge size if PaPILO is called in parallel mode
4031- if PaPILO >= 2.1: `presolving/milp/maxbadgesizeseq` to limit the maximal badge size if PaPILO is called in sequential mode
4032
4033### Data structures
4034
4035- new type `SCIP_Shortbool` (equal to uint8_t) for storing Boolean values in a more compact manner
4036- new disjoint set data structure `SCIP_DISJOINTSET` to incrementally update connectedness information for a graph on nodes {0,...,n-1}
4037- new red black tree data structure defined in `src/scip/rbtree.{c,h}`
4038- new object `SCIP_LINCONSSTATS`, see type_cons.h, to work with linear constraint classification through the C API
4039- added new type `SCIP_TABLE` together with callbacks to output SCIP statistics
4040
4041Unit tests
4042----------
4043
4044- added several tests for the LP interface
4045- added tests that cover nonempty linear constraint classification types
4046- added tests for the double double arithmetic, the new red black tree data structure, the nlpi, obbt, interval arithmetics,
4047 symmetry computation, objective function changes in probing, computing envelopes of bilinear function, relaxation enforcement
4048
4049Build system
4050------------
4051
4052- added interface to the NLP solver WORHP; set `WORHP=true` in order to link to WORHP
4053- added interface to the NLP solver FilterSQP; set `FILTERSQP=true` in order to link to FilterSQP
4054
4055### Cmake
4056
4057- added support for sanitizers in debug mode and options SANITIZE_ADDRESS, SANITIZE_MEMORY, SANITIZE_UNDEFINED, SANITIZE_THREAD
4058- added option SYM to specify which graph automorphism package (bliss, none) should be used, if available
4059- disable non-standard compliant floating point optimizations in combination with intel compilers
4060- improve Visual Studio compilation
4061- only accept IPOPT version 3.12.0 or higher
4062- preserve correct rpath in library (e.g. path to libipopt) when installing
4063
4064### Makefile
4065
4066- new flag `DEBUGSOL={true,false}` to enable checks against a user given debug solution
4067- added flag SYM to specify which graph automorphism package (bliss, none) should be used
4068- default value for ZIMPL in the Makefile is now `false`
4069
4070Fixed bugs
4071----------
4072
4073- fix wrong statistic display of diving leaf solutions
4074- fixed order of SCIPcalcCliquePartition() in corner case where no cliques are available
4075- fix treatment of infinite lower bound in proximity objective cutoff
4076- fixed minor issue in expression graph simplification
4077
4078- Separator:
4079 - fix linear knapsack relaxation during separation if a binary variable does not have a solution value in [0,1].
4080 - fixed potential ressource leaks in SCIPsolveLinearProb(), expr.c, sepa_eccuts, cons_cumulative.c, cons_nonlinear.c
4081 - fixed bug in cons_orbitope.c, where wrong terminating index in separation of SCIs was used
4082 - fixed wrong mapping of permuted basis indices in gomory separator
4083 - fixed integer objective separator for objective scales < 1
4084
4085- Presolver:
4086 - fixed numerical issues in boundshift presolver when aggregating integer variables
4087 - fixed aggregation of variables in boundshift presolver that contain large variable bounds
4088
4089- Heuristic:
4090 - fixed bug in feasibility pump heuristic when switching on the `usefp20` parameter
4091 - fixed handling of LOOSE variables in locks heuristic
4092 - fixed creation of conflicts in clique heuristic for incomplete LPs
4093
4094- Constraints:
4095 - fixed bug in mps reader. Reader now prints `OBJSENSE` section and tries to generate unique names of constraints
4096 - fixed upgrade to a varbound constraint if abspower constraint contains a multi-aggregated variable
4097 - fixed several bugs related to hashing of constraints/rows in cutpool.c and cons_linear.c
4098 - fixed registration of almost fixed nonlinear variables in abspower constraints
4099
4100- Propagator:
4101 - fixed releasing of variables in the genvbounds propagator in case the problem could be solved during presolving of a restart
4102 - fixed numerical issues in bound widening of variable bound constraint handler and vbound propagator during conflict analysis
4103
4104@page RN4 Release notes for SCIP 4
4105
4106@section RN401 SCIP 4.0.1
4107*************************
4108
4109Features
4110--------
4111
4112- added parsing functionality to cardinality constraint handler for CIP format
4113- allow to relax objective limit in reoptimization in presolved stage
4114- suppress excessive printing about numerical troubles in LP on default verblevel (high)
4115
4116Performance improvements
4117------------------------
4118
4119- only accept passed improving solutions in heur_indicator
4120- add and use RESTRICT macro for some pointers
4121- sorting of parents and children for some expression types is now independent of memory layout
4122
4123- Constraints:
4124 - widened a bottleneck in simplifying long signomial sums in a nonlinear constraint
4125 - unified and extended code that improves numerics of cuts generated by nonlinear constraint handlers
4126
4127- Separation:
4128 - stop separation in cons_indicator after maxsepanonviolated many non violated separated cuts
4129 - improve choice of variable to enter support in separation of cons_indicator
4130
4131Interface changes
4132-----------------
4133
4134### New API functions
4135
4136- SCIPvalidateSolve() to compare solving result with an external primal and dual reference value
4137- SCIPisObjChangedProbing() to check whether the objective function has changed during probing mode
4138- SCIPgetDualSolVal() to get the dual solution value of a constraint
4139- SCIPisLPPrimalReliable() and SCIPisLPDualReliable() to check whether the current primal / dual LP solution
4140 were successfully checked for feasibility
4141
4142### Command line interface
4143
4144- New option in the interactive shell to validate the solution against an external primal and dual reference value
4145- added command line option `-o` and command `validatesolve` in interactive shell
4146 to validate the solution against an external primal and dual reference value.
4147
4148### Interfaces to external software
4149
4150- Updated and new interfaces to Mosek 8.1, GAMS and Gurobi
4151- new LP interface to Glop (Google OR tools); CMake only
4152
4153### Changed parameters
4154
4155- renamed parameter `heuristics/completesol/maxunkownrate` to `heuristics/completesol/maxunknownrate`
4156
4157Testing
4158-------
4159
4160- add options to make test target (see Makefile section)
4161
4162Build system
4163------------
4164
4165### Cmake
4166
4167- New CMake build system alongside the usual Makefile setup
4168
4169### Makefile
4170
4171- added make options for specifying EXECUTABLE and OUTPUTDIR variables for the make test target
4172
4173Fixed bugs
4174----------
4175
4176- fixed unintended behavior of interrupt signal handler inside SCIP copies
4177- fixed uninitialized values in SCIP's digraph data structure after calling SCIPdigraphResize()
4178- fixed issue related to SCIPcreateFiniteSolCopy() not being able to remove all infinite fixings
4179- fixed issue in SCIPcopyLimits() w.r.t. soft time limit
4180- fixed bug in dynamic resizing of hashtables and hashmaps
4181- added workaround for bug in primal simplex of cplex 12.7.1.0 occuring when attempting to solve LPs without rows without presolving
4182- fixed bug in binpacking example that might have led to doing the same branching several times
4183- fixed memory issue in binpacking example
4184- in GAMS writer, forbid also various parenthesis characters in gams symbol names
4185- added missing definition of `SCIP_UNUSED` in memory.h if def.h is not included
4186- treat reopt bugs: Avoid numerical problems with changing objective; fix check for changed objective
4187- fixed reading issue in mps reader: integer variables fixed to 0 or 1 are treated as binaries now,
4188 allowing to use them as indicator variables
4189- afternode heuristics are now called even if the node limit was reached and the solving process will be stopped
4190 after the current node
4191- fixed bug when activating probing mode with a non-empty separation storage
4192
4193- LP interfaces:
4194 - fixed guard against using old Gurobi versions in lpi_grb.c: Gurobi 7.5 was not permitted
4195 - fixed wrong handling of unboundedness status in lpi_grb.c
4196 - fixed wrong handling of row basis status in lpi_grb.c
4197
4198- Propagator:
4199 - fixed bug in shift and propagate--variable information with a negation transformation is correctly reset after backtracking
4200 - fixed bug in genvbounds propagator when applying a restart after the root node
4201
4202- Constraints:
4203 - fixed bug in varbound coefficient tightening: if a varbound constraint only contained one variable afterwards,
4204 it may have been deleted without applying the induced bound, if the change was too small, this is now forced
4205 - fixed potential wrong locks update after a varbound constraint became redundant in coefficient tightening
4206 - fixed potentially wrong cleanup of fixed variables in nonlinear constraint handler
4207 - fixed memory leak in OSiL reader when using SOS constraints
4208
4209- Solution:
4210 - improved handling of infinite values in a primal solution in quadratic and nonlinear constraints
4211 - fixed bug in computing violation and cut for certain nonlinear constraints when LP solution is slightly out of bounds
4212 - fixed debug solution check that appeared in probing mode when the objective function has changed
4213 - relaxed a too strong assert concerning solutions close to the objective limit
4214
4215@section RN400 SCIP 4.0.0
4216*************************
4217
4218Features
4219--------
4220
4221- Introduced support for partial or infeasible user solutions, which SCIP tries to complete/repair heuristically
4222- implemented linear time methods for (weighted) median selection for joint arrays of various types
4223- added adaptive solving behavior of SCIP based on solving phases and heuristic transitions, if enabled via `solvingphases/enabled`
4224- can now solve relaxations within probing
4225- in case of multiple relaxators the best solution is saved instead of the last one
4226- added write callback for reader_bnd
4227- added possibility to use a reference value for advanced analysis of the tree search. If a finite reference value
4228 (an objective value in original objective space) is passed via misc/referencevalue, SCIP keeps track of the
4229 number of nodes exceeding the reference value and the number of early backtracks -- path switches in the tree when
4230 a child node with lower bound smaller than the reference value was available.
4231- added reading capabilities for partial solutions with extension *.mst
4232- new global shift off all random seeds (randomization/randomseedshift) and unification of all existing random seeds
4233- use new macros SCIPdebugMsg(), SCIPsetDebugMsg(), SCIPstatDebugMsg() at all places where it makes sense
4234- new random number generator in pub_misc.h
4235- add check whether variables have been released when freeing SCIP
4236- a print callback can now be specified for user expressions
4237
4238- LP Solutions:
4239 - will now enforce relaxation solution instead of lp or pseudosolution if lowerbound is better and the whole lp is included in the relaxation
4240 - new feature solution polishing to improve integrality of LP solutions
4241
4242- Constraints:
4243 - new constraint handler for cardinality constraints
4244 - added interval-evaluation of sine and cosine
4245 - allow to create constraints of constraint handlers that don't need constraints
4246 - New constraint handlers cardinality and components
4247
4248- Conflicts:
4249 - implement a storage for conflicts to have more control over active conflicts
4250 - Improved conflict analysis through central conflict pool and dual ray analysis for primal infeasible LPs; can now analyze dual
4251 unbounded rays of primal infeasible LPs
4252
4253- Presolving:
4254 - New presolvers that disaggregate SOC constraints and reformulate QP's by adding KKT conditions
4255 - new presolving step for variables contained in a single quadratic constraint with proper square coefficients
4256 - add new presolving step to disaggregate second order cone constraints
4257 - new presolving method presol_qpkktref to add the KKT conditions of a QP
4258 - implemented and extended stuffing presolving in linear constraint handler
4259 - new components constraint handler which replaces the components presolver; it searches for independent subproblems
4260 and solves small ones as sub-SCIPs during presolve, larger ones are solved alternatingly during the main solving process
4261 - new presolving timing FINAL: presolving methods with this timing are only called once after all other presolvers with timings
4262 FAST, MEDIUM and EXHAUSTIVE are finished; during this timing only reductions are allowed that are self-contained, e.g.,
4263 fixing all variables and deleting all constraints of an independent component; note that reductions found in this timing
4264 do not trigger a new presolving round
4265
4266- Separation and Cuts:
4267 - can now separate perspective cuts for indicator constraints
4268 - add sepa_convexproj, a separator which projects onto convex relaxation and build gradient cuts at the projection
4269 - add sepa_gauge, a separator which computes an interior point of a convex relaxation and performs a binary search in the segment joining
4270 the interior point and the point to separate until it finds a point in the boundary of the feasible region where to build a gradient cut
4271 - changed handling of coupling constraints in cons_indicator; the cuts will not be added to the pool, but are separated by default
4272 - concurrent solving mode that allows to run multiple SCIP instances, that share solutions and global variable bounds, in parallel
4273 - Revised pseudo random number generation and introduced central random seed for all plugins
4274
4275- Heuristics:
4276 - new Graph induced neighborhood search (GINS) primal heuristic that uses neighborhoods
4277 based on distances in the variable constraint connectivity graph.
4278 In addition, the heuristic supports a rolling horizon-like procedure to solve auxiliary problems
4279 for neighborhoods with increasing distance from the starting neighborhood.
4280 - new primal heuristic LP face that tries to find an integer solution inside the optimal LP face.
4281 - new heuristic that tries to complete partial solutions
4282 - the subnlp heuristic now gives ownership of a found solution to the heuristic that constructed the starting point, if any;
4283 as a consequence, MIP heuristics may now be shown more frequently for having found a solution when solving MINLPs, even
4284 though the solutions required an additional NLP solve
4285 - new multistart heuristic for NLPs
4286
4287- Propagator:
4288 - add prop_nlobbt, a nonlinear optimization-based bound propagator solving two convex NLP relaxations for each variable
4289 - nodes can now be postponed; currently, this can only be triggered by BEFORELP propagation callbacks
4290
4291- Statistic:
4292 + Extended statistic output displayable via the interactive shell
4293 + new statistic computed: `Root LP Estimate` that shows the root LP best-estimate with every pseudo-cost update
4294 + added leaf statistics about LP objective limit|feasible|infeasible leaves to the statistics output and
4295 to the callable library: SCIPgetNObjlimLeaves(), SCIPgetNFeasibleLeaves(), SCIPgetNInfeasibleLeaves()
4296 + next to the number of found solution, also the number of new best solutions is now printed for each heuristic
4297 (and relaxation solutions) in the statistics in the `Primal Heuristic` section.
4298
4299Performance improvements
4300------------------------
4301
4302- Extended the presolving timings by an additional timing FINAL for self-contained reductions
4303- Randomized tie-breaking in different parts of the code to reduce performance variability
4304- use connectedness information of the clique table to speed up the clique partitioning algorithm
4305- knapsack approximation algorithms use linear-time weighted median selection instead of sorting
4306- improved greedy solution in SCIPsolveKnapsackApproximatelyLT() for the flow cover separation
4307- reduce performance variability by using random numbers as tie-breaker for external branching candidates
4308
4309- Heuristics:
4310 - adjusted most Large Neighborhood Search heuristics such that they collect their variable fixings first in an array,
4311 and only create and populate a sub-SCIP if enough variables will be fixed.
4312 - reduce performance variability by using a small perturbation in the undercover heuristic
4313 - 1-opt heuristic can now be repeatedly executed as long as new incumbents are found
4314
4315- Constraints:
4316 - Improved and extended stuffing inside of linear constraint handler
4317 - Changed handling of coupling constraints in cons_indicator
4318 - SCIP supports constraint compression for problem copies; constraint compression denotes the immediate
4319 removal of fixed variables from constraint data at creation time to reduce memory requirements.
4320
4321- Propagation:
4322 - rewrote the propagate-and-cut-and-price loop so that successful propagations with DURINGLPLOOP timing, bound changes found by separation,
4323 and new primal solutions now trigger a new round of node solving, starting with propagation; improved tuning of propagation and heuristic timings
4324 - tuned propagation methods of several constraint handlers
4325 - make more use of SCIPmarkConsPropagate() to mark constraints for propagation and improved the internal handling of marked constraints
4326 - improve propagation of absolute-value expression in the case that the sign of the argument is fixed
4327
4328Interface changes
4329-----------------
4330
4331### New and changed callbacks
4332
4333- Concurrent SCIP:
4334 - extended interface to support concurrent solving mode
4335
4336- Constraint Handlers:
4337 - new optional callback `CONSENFORELAX` to enforce a relaxation solution, see \ref CONS
4338 - `CONSINITLP` callback now has a new parameter `infeasible`, which is a pointer to store whether infeasibility
4339 was detected while building the initial LP relaxation
4340
4341### Deleted and changed API functions
4342
4343- setting a parameter to a non-valid value now produces an error message instead of a warning
4344- bound reader uses angle bracket around variable names
4345- the parameters of SCIPlpiChgObj(), SCIPlpiSetBase(), SCIPlpiSetState(), SCIPlpiSetNorms() have been declared as const
4346- SCIPapplyHeurSubNlp() can now return the solution found by the sub-NLP heuristic
4347
4348- Random:
4349 - methods SCIPrandomGetInt() substitutes SCIPgetRandomInt() (marked to be deprecated)
4350 - methods SCIPrandomGetReal() substitutes SCIPgetRandomReal() (marked to be deprecated)
4351 - methods SCIPrandomPermuteArray() substitutes SCIPpermuteRandomArray() (marked to be deprecated)
4352 - methods SCIPrandomPermuteIntArray() substitutes SCIPpermuteRandomIntArray() (marked to be deprecated)
4353 - method SCIPrandomGetSubset() substitutes SCIPgetRandomSubset() (marked to be deprecated)
4354
4355- Conflict Analysis:
4356 - added parameters `conftype` and `iscutoffinvolved` to SCIPinitConflictAnalysis()
4357 that indicate the type of the conflict and whether the current cutoff bound is used or not
4358
4359- Constraint Handlers:
4360 - added parameter `infeasible` to SCIPinitlpCons()
4361
4362- Copying:
4363 - added parameters `fixedvars`, `fixedvals`, `nfixedvars` to SCIPcopyVars()
4364 - added parameters `fixedvars`, `fixedvals`, `nfixedvars` to SCIPcopyOrigVars()
4365 - renamed parameter `success` to `valid` in SCIPgetConsCopy()
4366
4367- Hashmap and Hashtable:
4368 - removed function SCIPcalcHashtableSize() since not required anymore for `SCIP_HASHTABLE` and `SCIP_HASHMAP`
4369 - based on the initial size `SCIP_HASHTABLE` and `SCIP_HASHMAP` choose an appropriate size internally to allow insertion of that
4370 many elements without resizing
4371 - `SCIP_MULTIHASH` behaves like the old `SCIP_HASHTABLE` and SCIPcalcMultihashSize() should be used as replacement for
4372 SCIPcalcHashtableSize()
4373
4374- Nonlinear Relaxation:
4375 - added parameter `curvature` to SCIPcreateNlRow()
4376
4377- Parameters:
4378 - the following new methods return a bool indicating whether the given value is valid for the parameter instead of printing a warning
4379 message and returning an error code if the value is invalid
4380 - renamed method SCIPcheckBoolParam() to SCIPisBoolParamValid()
4381 - renamed method SCIPcheckLongintParam() to SCIPisLongintParamValid()
4382 - renamed method SCIPcheckCharParam() to SCIPisCharParamValid()
4383 - renamed method SCIPcheckStringParam() to SCIPisStringParamValid()
4384 - renamed method SCIPcheckRealParam() to SCIPisRealParamValid()
4385 - in param.c/h: the new methods return a bool whether the given value is valid for the parameter instead of printing a warning message
4386 and returning an error code if the value is invalid
4387 - rename SCIPparamCheckBool() to SCIPparamIsValidBool()
4388 - rename SCIPparamCheckString() to SCIPparamIsValidString()
4389 - rename SCIPparamCheckChar() to SCIPparamIsValidChar()
4390 - rename SCIPparamCheckLongint() to SCIPparamIsValidLongint()
4391
4392- Primal Heuristics:
4393 - added parameter `initialseed` to SCIPcreateDiveset()
4394 - introduced new type `SCIP_HEURTIMING` for primal heuristic timing masks
4395 - changed type of parameter `timingmask` from unsigned int to `SCIP_HEURTIMING` in SCIPincludeHeur(), SCIPincludeHeurBasic()
4396
4397- Relaxators:
4398 - new parameter `includeslp` for SCIPincludeRelax() and SCIPincludeRelaxBasic()
4399 to indicate whether relaxation includes all linear rows and can be enforced
4400
4401- Reoptimization:
4402 - rename method SCIPgetReopSolsRun() to SCIPgetReoptSolsRun()
4403
4404- Solutions:
4405 - added parameter `completely` to SCIPtrySol(), SCIPtrySolFree(), SCIPcheckSol() to check all constraints when
4406 printing violations
4407
4408- Variables:
4409 - removed SCIPvarGetLbAtIndex() and added SCIPgetVarLbAtIndex()
4410 - removed SCIPvarGetUbAtIndex() and added SCIPgetVarUbAtIndex()
4411 - removed SCIPVarGetBdAtIndex() and added SCIPgetVarBdAtIndex()
4412 - removed SCIPvarWasFixedAtIndex() and added SCIPgetVarWasFixedAtIndex()
4413 - Removed method SCIPvarGetNBinImpls()
4414
4415### New API functions
4416
4417- added functions for concurrent solving mode (see concurrent.h, concsolver.h)
4418- SCIPcreateNlpiProb(), SCIPupdateNlpiProb() and SCIPaddNlpiProbRows() to create and update a nonlinear relaxation
4419- SCIPgetNObjlimLeaves(), SCIPgetNFeasibleLeaves(), SCIPgetNInfeasibleLeaves() for statistics output
4420 about LP objective leaves
4421- SCIPcheckCopyLimits() which can be used to check that enough time and memory is left to run a sub-SCIP after
4422 subtracting time and memory used by the main-SCIP and SCIPcopyLimits() which copies these limits accordingly and disables
4423 all other limits (need to be set by the plugin, if needed)
4424- SCIPcopyLargeNeighborhoodSearch() in heuristics.h that supports compressed copying and two kinds of problem copy: the MIP-relaxation or
4425 a 1-1 problem copy (by copying the constraints and not the LP relaxation)
4426- SCIPsolveProbingRelax() to solve a relaxation within probing
4427- SCIPgetLastStrongbranchingLPSolstat() to query the LP statuses after strong branching on a variable
4428- SCIPinitializeRandomSeed()
4429- SCIPswapReals() to swap two real values
4430- SCIPgetNNZs() to get the number of active non-zeros in the transformed/presolved problem
4431
4432- Debug Messages:
4433 - SCIPprintDebugMessage(), SCIPsetPrintDebugMessage(), SCIPstatPrintDebugMessage() that output debug messages and also print the
4434 subscip depth; the first two output via the message handler; also added macros SCIPdebugMsg(), SCIPsetDebugMsg(), SCIPstatDebugMsg()
4435 - SCIPdebugMsgPrint()/SCIPsetDebugMsgPrint() that output a message without `[debug]` prefix via the message handler (compare SCIPdebugPrintf())
4436
4437- Solution:
4438 - SCIPisDualSolAvailable() to query the dual solution availability
4439 - SCIPlpiSetIntegralityInformation() to improve SoPlex' solution polishing
4440
4441- Constraints:
4442 - library methods SCIPcopyConsCompression(), SCIPcopyOrigConsCompression() that accept an array of variables that are immediately
4443 fixed in the copy. Alternatively, local instead of global bounds can be used for compression.
4444 - library methods SCIPenableConsCompression(), SCIPisConsCompressionEnabled(), SCIPcopyConsCompression(), SCIPcopyOrigConsCompression()
4445 - SCIPgetIntVarXor() to access integer variable of XOR constraints
4446 - SCIPcreateConsCardinality() to create a cardinality constraint
4447 - SCIPcreateConsBasicCardinality() to create a basic cardinality constraint
4448 - SCIPchgCardvalCardinality() to changes cardinality value of cardinality constraint (i.e., right hand side of cardinality constraint)
4449 - SCIPaddVarCardinality() to add a variable to a cardinality constraint
4450 - SCIPappendVarCardinality() to append a variable to a cardinality constraint
4451 - SCIPgetNVarsCardinality() to get the number of variables in a cardinality constraint
4452 - SCIPgetVarsCardinality() to get the array of variables in a cardinality constraint
4453 - SCIPgetCardvalCardinality() to get the cardinality value of a cardinality constraint (i.e., right hand side of cardinality constraint)
4454 - SCIPgetWeightsCardinality() to get the array of weights of a cardinality constraint
4455 - SCIPgetLinvarMay{Decrease,Increase}Quadratic() to get index of a variable in linear term of quadratic constraint that may be decreased
4456 without making any other constraint infeasible
4457
4458- Parameters:
4459 - add SCIPparamIsValidInt() and SCIPparamIsValidReal() to param.c/h
4460 - add missing functions SCIPisIntParamValid() and SCIPisRealParamValid() to scip.c/h
4461
4462### Command line interface
4463
4464- new command line parameter `-v` to print detailed build options
4465
4466### Interfaces to external software
4467
4468- Interfaces for Python and Java are, among others, now available via http://www.github.com/scip-interfaces
4469- Revised documentation of the SCIP C-API to group methods more comprehensively by topics
4470- dropped support for Ipopt < 3.11
4471- Additional I/O-functionalities for debugging and logging in SCIP and in the AMPL interface
4472- updated CppAD to 20160000
4473- for users of the ampl interface, the display/logfile option has been added to set the name of a
4474 file to write the SCIP log to (additionally to stdout)
4475
4476- LP Interfaces:
4477 - SCIP uses the lpi_spx2 interface by default
4478 - Improved Gurobi interface that can handle ranged rows (requires Gurobi >= 7.0.2)
4479 - the CPLEX LPI now also compiles with CPLEX 12.7.0.0
4480
4481### Changed parameters
4482
4483- setting a value for a fixed parameter will no longer return with an error, if the new value equals the one to which the parameter is fixed
4484- changed value of parameter `separating/clique/cliquedensity` to 0.0 such that the separator always constructs a dense clique table
4485 which proved to be faster on the benchmarks MMM and stableset.
4486- parameters `misc/permutationseed`, `misc/permuteconss` and `misc/permutevars` changed to `randomization/permutationseed`,
4487 `randomization/permuteconss` and `randomization/permutevars`
4488- parameters `conflict/useinflp` and `conflict/useboundlp` are now of type char (before bool)
4489- all parameters of the components presolver (starting with `presolving/components/`) are now parameters of the components
4490 constraint handler (starting with `constraints/components/`)
4491
4492### New parameters
4493
4494- class randomization
4495- `branching/sumadjustweight` to adjust branching scores by adding a sum epsilon in order to keep score differences
4496 near zero, which are otherwise completely disregarded (they are adjusted to at least sum epsilon)
4497- `concurrent/∗ ` and `parallel/∗ ` for configuring the concurrent solving mode
4498- `constraints/cardinality/branchbalanced` to decide whether to use a balanced branching scheme in the enforcing of cardinality
4499 constraints
4500- `constraints/cardinality/balanceddepth` to set the maximal depth until balanced branching is turned off
4501- `constraints/cardinality/balancedcutoff` to determine that balanced branching is only used if the branching cut off value
4502 w.r.t. the current LP solution is greater than a given value
4503- `constraints/indicator/sepaperspective` to turn on separation of perspective cuts for indicator constraints
4504- `constraints/indicator/sepapersplocal` to decide whether local cuts can be used for perspective cuts for indicator constraints
4505- `constraints/quadratic/projectedcuts` to enable convex quadratics to generate gradients cuts at the
4506 projection of the point onto the region described by the constraint, which is supporting
4507- `lp/solutionpolishing` to enable LP polishing only at the root LP or always
4508- `misc/referencevalue` to pass a reference value for further analysis of the tree search, see also in `features`
4509- `presolving/qpkktref/addkktbinary` to allow the presence of binary variables for the KKT update
4510- `presolving/qpkktref/updatequadbounded` to add the KKT conditions to QPs only if all variables are bounded
4511- `presolving/qpkktref/updatequadindef` to add the KKT conditions to QPs only if the quadratic matrix is indefinite
4512- `randomization/lpseed` to set the initial seed of the LP solver
4513- `solvingphases/enabled` to activate adaptive behavior during the solution process; several further parameters
4514 in the solvingphases-section to control how to switch the parameters and whether a restart should be performed between the phases.
4515
4516### Data structures
4517
4518- new `SCIP_REGRESSION` data structure in pub_misc.h to incrementally compute a best-fit line through pairs of observations
4519- add maximum branch-and-bound tree depth constant `SCIP_MAXTREEDEPTH` (replaces SCIPgetDepthLimit() and SCIPtreeGetDepthLimit())
4520- new files heuristics.c/heuristics.h to collect methods that are frequently used by heuristics
4521- merged dive.c/pub_dive.h with heuristics.c/heuristics.h, removed dive.c/pub_dive.h
4522- separated header pub_misc.h from repeated methods for sorting and (weighted) median selection;
4523 those are also available in separate headers pub_misc_sort.h
4524 and pub_misc_select.h, but included into pub_misc.h
4525
4526Unit tests
4527----------
4528
4529- New unit testing system built on the Criterion framework
4530
4531Build system
4532------------
4533
4534### Makefile
4535
4536- All makefiles in `examples/` and `applications/` have been updated.
4537- `make.project` defines a variable `SCIP_VERSION` containing the SCIP version number
4538- revise sub-makefiles for MSVC on MinGW
4539- make shared libraries aware of their dependencies
4540- sub-makefile for CrayXC systems added
4541
4542- Places:
4543 - All objective files are now placed in `obj/static` or `obj/shared`, depending on `SHARED=false` or `SHARED=true`, respectively.
4544 - All internal and external libraries are placed in `lib/static` and `lib/shared`, the include files are in `lib/include`.
4545 - The binaries now contain an rpath to the SCIP directory, such that shared libraries are found.
4546
4547- Linking:
4548 - link binary to shared libs when compiling with `SHARED=true`
4549 - External projects (including make.project) can use the makefile variable LINKCXXSCIPALL or LINKCCSCIPALL to link all SCIP libraries.
4550 - Building with `SHARED=true` automatically generates the combined library libscipsolver.so for easier linking
4551
4552- Targets:
4553 - Running `make help` lists all makefile options.
4554 - `make install` copies now all header files
4555 - new target `dll` to build Windows dlls with MSVC
4556 - rename `dll` target to `windowslib`
4557
4558Fixed bugs
4559----------
4560
4561- fixed bug in event system: bound change events of the new focus node must be processed, even if the bound
4562 is the same as at the last focus node
4563- avoid numerically unstable (multi-)aggregations
4564- fixed bug in XML reader concerning comments
4565- the AMPL interface now writes a solve status (solve_result_num) into the .sol file
4566- in the cmpres.awk (allcmpres.sh) output, the counts in the time column are now with respect to the
4567 whole set of processed instances (as with fail and solv), while before it was with respect to the
4568 set of instances where no solver failed (eval set); thus, now proc = fail + time + solv.
4569- writing of solutions or parameters to a file now works also with the message handler set to quiet
4570- ignore lower and upper bound tightenigs beyond +/-infinity during solving
4571- time limit of SCIP-infinity is converted to LPI-infinity when setting it
4572- fix LP activity of a row that has been modified
4573
4574- Propagation:
4575 - fixed possible segmentation fault in genvbounds propagator
4576 - fixed bug with sorting of propagators in presolving: the order can be changed by calling probing; thus, there is a copy of the
4577 propagators, which is sorted by presolving priority
4578 - added missing capturing and releasing mechanism in genvbounds propagator
4579 - fix wrong propagation of product expressions
4580
4581- Constraints:
4582 - fixed wrong representation of SOC constraints in NLP
4583 - fixed a few issues within redundant constraint detection of (specialized) linear constraint handlers
4584 - fixed issue in reader_opb concerning writing of fixed variables contained in no constraints
4585
4586- Memory:
4587 - fixed memory bug in `SCIP_DIGRAPH`
4588 - improved counting of memory consumption by using more block memory and counting all allocated memory
4589 - fix memory leaks in TSP example
4590 - return `SCIP_ERROR` when a memory exception is caught in SoPlex (was `SCIP_LPERROR`)
4591 - fixed memory leak in OSiL reader
4592
4593- Objective:
4594 - fixed bug while changing the objective value of an original value after transforming the problem
4595 - fixed bug with solutions from previous runs not satisfying an objective limit
4596 - SCIPisObjIntegral() now works correctly in `SCIP_STAGE_PROBLEM`
4597
4598- Heuristics:
4599 - fixed two bugs in heur_indicator: use improvesols parameter now and update pointer to indicator constraint handler
4600 - fix wrong NLP representation of logic-or constraints in the dual value heuristic
4601 - correct handling of implicit integer variables with fractional solution value in simplerounding heuristic
4602 - fixed bug in heur_octane with uninitialized ray direction
4603
4604@page RN3_2 Release notes for SCIP 3.2
4605
4606@section RN321 SCIP 3.2.1
4607*************************
4608
4609Features
4610--------
4611
4612- new `force` parameter in (root)redcost propagator to run the propagator also with active pricers
4613
4614Performance improvements
4615------------------------
4616
4617- do not transfer solutions to original space, if SCIP is being freed
4618- modified implication graph analysis of SOS1 constraint handler; a new component allows to deduce zero fixings of variables
4619- made SOS1 constraint handler specific diving selection rule faster for the case that the SOS1 constraints do not overlap
4620- improved disjunctive cuts by the `monoidal cut strengthening` procedure of Balas and Jeroslow
4621
4622Examples and applications
4623-------------------------
4624
4625- several improvements of SCIP-Jack (STP application): extended presolving for STP variants, STP-specific branching
4626 rule, dual heuristic to generate initial LP relaxation
4627 SCIP-Jack is now competitive with problem specific state-of-the-art solvers on several well-known STP variants,
4628 e.g., the (rooted) prize-collecting Steiner tree problem.
4629- MultiObjective application renamed to PolySCIP; several improvements: better command line argument processing,
4630 overhaul of much of the source code, installation via CMake
4631
4632Interface changes
4633-----------------
4634
4635- made debug solution functionality thread safe (see debug.h for further information)
4636
4637### Deleted and changed API functions
4638
4639- add SCIPcomputeHyperplaneThreePoints() to compute a hyperplane containing three given 3-dimensional points
4640- SCIPsolveLinearProb() now uses a 1-dimensional matrix representation
4641
4642### Command line interface
4643
4644- added interactive shell command `display finitesolution` to print solution with infinite fixings removed,
4645 added reference to that method to `display solution` output if there are infinite fixings
4646- new interactive shell command `write history` to write the command line history (only when compiled with Readline)
4647
4648### Interfaces to external software
4649
4650- significantly improved Python interface to support user callbacks as well as linear and quadratic expressions
4651
4652### New parameters
4653
4654- `constraints/sos1/branchingrule` to decide whether to use neighborhood, bipartite, or SOS1 branching (this parameter
4655 replaces the old parameters `constraints/sos1/neighbranch`, `constraints/sos1/bipbranch`, and `constraints/sos1/sos1branch`)
4656- `constraints/sos1/depthimplanalysis` to limit the number of recursive calls of implication graph analysis
4657- `constraints/sos1/perfimplanalysis` to perform an implication graph analysis to deduce variable fixings and
4658 additional SOS1 constraints (this parameter replaces the old parameter `constraints/sos1/updateconflpresol`)
4659- `misc/transsolorig` for transfering transformed solutions to the original space (default: true)
4660- `propagating/rootredcost/onlybinary` to propagate root reduced costs of binary variables only
4661
4662### Data structures
4663
4664- renamed MIP matrix structure to `SCIP_MATRIX`
4665- changed the numeric values for `PRESOLTIMING` flags
4666
4667Build system
4668------------
4669
4670### Makefile
4671
4672- new target `dll` to build Windows dlls with MSVC
4673- add new compiling flag OPENSOURCE to allow/forbid the usage of third party software
4674
4675Fixed bugs
4676----------
4677
4678- fixed wrong objective sense when copying the original problem
4679- fixed a bug in merge step of cliques during clean up phase; method did not correctly handle infeasibility in the case of multiple
4680 variable-negation pairs
4681- fixed a previously untreated case in the linear cons simplification where coefficients only differ by slightly more than an epsilon
4682- fixed bug in parsing emphasis parameters which formerly led to completely wrong results
4683- fixed bug in the computation of the Wilcoxon test
4684- do not use the relative and absolute gap limit if no primal solution has been found so far
4685- fixed bug in conflict.c with wrong reset of bounds used
4686- fixed bug with transferring solutions to new runs (need to recompute objective before checking)
4687- fixed issue with infinite values when checking cuts for redundancy
4688- fixed library problems on Windows operating systems
4689
4690- Variables:
4691 - fixed wrong check when computing cuts for factorable quadratic functions bound tightening of a single variable
4692 - fixed wrong handling of loose variables in OBBT
4693 - fixed freeing of hash for binary variables
4694 - fixed bug during the computation of branching points for continuous variables which are almost fixed to +/- SCIPinfinity()
4695 - treated the case of integer variables as intermediate variables in the process of obtaining the active variable for a
4696 given binary variable
4697
4698- LP:
4699 - fixed a bug in dive.c that occurred when lpsolvefreq was set to 1; after a cutoff, the solution values of the
4700 linked LP solution might have become invalid
4701 - do not analyse an infeasible LP for conflicts during diving mode when LHS/RHS of rows were changed
4702 - use LPi infinity when reverting bound changes in conflict analysis
4703
4704- Heuristics:
4705 - fixed bug in heur_simplerounding in connection with relaxators
4706 - fixed bug in feaspump heuristic where last solution candidates were not updated correctly
4707 - fixed bug with infinite shift values in heur_shifting
4708 - fixed bug in shiftandpropagate heuristic: the heuristic did not correctly handle intermediate, global bound changes of the selected variable
4709 after its tentative fixing led to a cutoff.
4710
4711- Propagator:
4712 - (root) reduced cost propagators are not run anymore when doing branch-and-price,
4713 since they may install upper bounds on variables which might interfere with the
4714 pricing (they may be enabled again by their force parameters)
4715 - fixed too hard assertion in pseudoobj propagator
4716 - fixed a bug in shiftandpropagate where column positions after sorting are now correctly linked to their variables after sorting
4717 - fixed potential memory leak in genvbound propagator
4718
4719- Presolving:
4720 - fixed inconsistency in knapsack constraint handler data during presolving
4721 - fixed some problem with reoptimization when the problems are infeasible or have been solved in presolving
4722 - fixed endless loop in knapsack constraint handler when continuous variables change their types to binary during presolving
4723 - squares of binary variables might not have been replaced by the binary variable itself in presolve,
4724 if the variable was originally general integer and only became binary during presolve (due to bound tightening)
4725 - fixed bug in dive.c avoiding a check of constraints in the presence of indicator constraints
4726
4727- Constraints:
4728 - fixed numerical problems in computation of cuts for bivariate functions in quadratic constraint handler
4729 - fixed bug in quadratic constraint handler when computing lifted-tangent inequalities
4730 - fixed bug in nonlinear constraint handler when replacing a violated nonlinear constraint leads to an infinite
4731 - fixed bug in SOS1 constraint handler with inconsistent data structure after restart
4732 - fixed wrong handling of negated variables in bound tightening procedure of SOS1 constraint handler
4733 - fixed bug in simple fixing heuristic of SOS1 constraint handler
4734 - fixed two bugs in pseudoboolean constraint handler with wrong sorting of and constraints
4735 - fixed issue: constraints being parallel to objective function (after restart) sometimes led to wrongly stating infeasible
4736 - fixed bug during coefficient tightening in varbound constraint handler
4737 - handle cutoffs in cons_indicator detected by infeasible inequalities
4738 - fixed late change of type of slack variables in cons_indicator, if the bounds are not integral
4739 - fixed initsol and exitsol of cons_indicator, if problem has already been solved
4740 - fixed bug in cons_indicator with changing type of slackvariable
4741
4742@section RN320 SCIP 3.2.0
4743*************************
4744
4745Features
4746--------
4747
4748- added reoptimization feature for optimization problems with changed objective function or tighter feasible region
4749- the original problem can now be permuted directly after reading (if `misc/permutationseed` has value >= 0)
4750- added methods to compute strongly connected components with Tarjan's Algorithm
4751- added method to propagate implications of SOS1 variables
4752- convex quadratic contraints can now generate gradient cuts which are supporting to the feasible region
4753- SoPlex interface can now (re)store dual steepest edge weights
4754- extended expression parsing to support power, realpower and signpower operators; started support for user-defined operators
4755 in expression trees/graphs
4756- possibility to set a soft time limit which becomes active only after the first primal solution was found
4757- added matrix module for getting access to the internal mixed inter linear problem matrix
4758- better handling of large values returned by the LP solver
4759- added more checks to SCIP{alloc,realloc,duplicate}BufferArray() to handle overflows properly
4760- new plugin for reoptimizing a sequence of optimization problem that differ in the objective function, e.g., sequences arising from
4761 column generation
4762- new plugin `compr` for rearranging the search tree, currently this only works on the reoptimization tree
4763- moved assertions in comparison methods from scip.c to set.c
4764
4765- Constraints:
4766 - we can now upgrade quadratic constraints with one bilinear term to SOC constraints
4767 - we can also upgrade general quadratic constraints with a single negative eigenvalue to SOC constraints
4768
4769- Branching:
4770 - tighter reliability notions introduced for reliability branching, based on pseudo-cost relative errors
4771 and comparing candidates with the best pseudo-candidate using a 2-sample student-T test. These methods
4772 are used in disjunction with the existing reliability notion that uses a fixed number as reliability
4773 threshold for every variable before turning off strong-branching. This means, the classical method
4774 must be turned off by setting parameters minreliable and maxreliable to 0. The behavior is
4775 controlled through several parameters.
4776 - new distribution branching rule to base decisions on row activity (normal) distribution over domain space
4777 - can now output information for BAK: Branch-and-bound Analysis Kit
4778 - new score in hybrid reliability pseudocost branching that prefers nonlinear variables when solving MINLPs
4779 - new branching rule multaggr which allows to branch on general disjunctions defined by fractional multi-aggregated variables
4780 - new branching rules for SOS1 constraints for branching on a neighborhood or a complete bipartite subgraph of
4781 the conflict graph. In addition to variable domain fixings, it is sometimes also possible to add complementarity
4782 constraints to the branching nodes. This results in a nonstatic conflict graph, which may change dynamically
4783 with every branching node.
4784 - new branching rule nodereopt to reconstruct the tree after changing the objective function
4785
4786- Reader:
4787 - the MPS reader can now read semi-integer variables, they are handled by creating bound disjunction constraints
4788 - the MPS reader can now handle objective constants given as (the negation of) the RHS of the objective row
4789
4790- Separation:
4791 - obbt propagator applies now additional separation and propagation in order to learn stronger and more bound tightenings
4792 - extended probing mode to allow separation and objective coefficient changes
4793 - improved separation procedure of SOS1 constraint handler, including bound (clique) cuts and implied bound cuts
4794 - new disjunctive cut separator for SOS1 constraints
4795 - new edge-concave cut separator for quadratic constraints
4796
4797- Presolver:
4798 - Improved coordination of presolvers. There are three timings for presolvers now, FAST, MEDIUM and EXHAUSTIVE.
4799 Each presolving callback can specify one or more of these timings in which it will be called later.
4800 Within a presolving method, the current timing can be checked and the algorithms to be performed selected based on
4801 the timing. In one presolving round, first all presolving methods with timing FAST are called, sorted by priority.
4802 If they found enough reductions, a new round is started, otherwise, all presolving methods with timing MEDIUM are
4803 called. Again, with enough reductions, a new presolving round is started, too few reductions lead to running
4804 the EXHAUSTIVE presolvers. Similar to the delay concept used before, we are not neccessarily running all EXHAUSTIVE
4805 presolvers but stop as soon as one of them found enough reductions, starting a new presolving round immediately.
4806 - new presolving components for SOS1 constraints, including bound tightening and clique extension
4807 - new presolver tworowbnd for improving variable bounds and detecting redundant constraints added
4808 - new presolver dualagg for aggregating single up-/downlocked variables by a binary variable added
4809 - new presolver implfree for aggregating implied free variables added
4810 - new presolver redvub which can detect redundant variable upper bound constraints added
4811 - new presolver stuffing for fixing of singleton continuous variables added
4812
4813- Heuristic:
4814 - improved clique and variable bound heuristics
4815 - new heuristic distribution diving that bases its score function on the changes regarding solution density
4816 - variable histories can be transferred between sub-SCIPs solved by LNS heuristics and the component presolver
4817 and the main SCIP to reuse this information.
4818 - new heuristic heur_indicator that tries to make partial solutions with indicator constraints feasible. It also
4819 tries to improve them (or external solutions) by a one-opt local search.
4820 - new heuristic (heur_bound) which fixes all integer variables to their lower/upper bounds and solves the remaining LP
4821 - modified diving heuristics to handle SOS1 constraints
4822 - new primal heuristic for reoptimization 'ofins': objective function induced neighborhood heuristic
4823 - new heuristic for reoptimization which constructs solutions based in the changes between the objective function and the optimal
4824 solution before changing the objective function
4825
4826- Statistic:
4827 - extended variable branching statistics in the interactive shell by sample variance of unit gains
4828 - extended statistic output of interactive shell by more information on diving heuristic behavior
4829
4830Performance improvements
4831------------------------
4832
4833- improved treatment of nonlinearities in hybrid reliability pseudo cost branching
4834- using sparsity information of the SoPlex LP
4835
4836- Constraints:
4837 - improved vartype upgradability from continuous to implicit variables in cons_linear.c, depending on their objective coefficients
4838 - improved propagation of SOS1 constraint handler using the information from a conflict
4839
4840- Heuristics:
4841 - zi rounding heuristic uses buffer data structures, thereby decreasing total memory usage of SCIP
4842 - adjusted (hard) diving heuristics to solve fewer LPs. LP's are resolved only if a parameter-defined
4843 percentage of the variable bounds changed through domain propagation or at a predefined frequency.
4844 - some of the diving heuristics additionally consider indicator variables and SOS1 variables as candidate variables and try to
4845 make these constraint types feasible before passing a rounded solution to SCIPtrySol()
4846
4847- Presolving:
4848 - new presolving/propagation algorithm using the gcd for ranged rows and equations in cons_linear
4849 - added presolving levels (FAST, MEDIUM and EXHAUSTIVE) to allow better balancing of presolvers
4850
4851- Separation:
4852 - improved separation procedure of SOS1 constraint handler
4853 - improved separation procedure for convex quadratic constraints
4854
4855Examples and applications
4856-------------------------
4857
4858- two new applications for multi-objective optimization (PolySCIP) and the Steiner Tree Problem in Graphs
4859- new application for solving Steiner tree problems: SCIP-Jack can handle both the classical Steiner tree problem in graphs
4860 and 10 of its variants
4861
4862Interface changes
4863-----------------
4864
4865### New and changed callbacks
4866
4867- new callback function `SCIP_DECL_CONSGETDIVEBDCHGS` to provide
4868 constraint handler method to suggest dive bound changes during the generic diving algorithm, see type_cons.h for details
4869- new callback `SCIP_DECL_DIVESETGETSCORE` to implement scoring function to guide diving
4870
4871### Deleted and changed API functions
4872
4873- avoid potential comparisons of different infinity values by adjusting the LP solution value
4874- SCIPintervalSign(), SCIPintervalAbs(), SCIPintervalMax(), SCIPintervalMin(), SCIPexprgraphGetNodePolynomialMonomialCurvature(),
4875 and SCIPexprgraphTightenNodeBounds() need an infinity value to decide whether an interval is empty or not
4876- SCIPgetFeasibilityQuadratic() and SCIPgetActivityQuadratic() returns now a `SCIP_RETCODE` and needs an additional `SCIP_Real*` to
4877 store the result
4878- methods which support statistical tests in pub_misc.h, SCIPstudentTGetCriticalValue(), SCIPcomputeTwoSampleTTestValue() etc.
4879- SCIPsolveLinearProb() solves a linear problem of the form Ax=b for a regular square matrix A
4880- Added parameter `freesubscip` to SCIPapplyProximity()
4881
4882- Data structures:
4883 - Renamed method SCIPdigraphGetSuccessorsDatas() to SCIPdigraphGetSuccessorsData()
4884 - Renamed method SCIPdigraphGetNodeDatas() to SCIPdigraphGetNodeData()
4885 - Renamed method SCIPdigraphSetNodeDatas() to SCIPdigraphSetNodeData()
4886
4887- Constraint Handlers:
4888 - Renamed method SCIPconshdlrGetPropTimingmask() to SCIPconshdlrGetPropTiming()
4889 - new method SCIPconshdlrSetPropTiming()
4890 - Removed method SCIPconshdlrIsPresolvingDelayed()
4891 - Removed method SCIPconshdlrWasPresolvingDelayed()
4892 - SCIPmakeSOS1sFeasible() based on solution values, fixes variables to zero to turn all SOS1 constraints feasible
4893 - removed `delay(presol)` parameter from SCIPinclude{Conshdlr,Presol,Prop}() and added `(presol)timing` parameter
4894 - new parameter `presoltiming` for method SCIPpresolCons()
4895 - SCIPvarIsSOS1() returns whether some variable is involved in an SOS1 constraint
4896 - SCIPgetConflictgraphSOS1() gets conflict graph of SOS1 constraints
4897 - Added parameter `presoltiming` to SCIPpropCumulativeCondition()
4898 - Removed parameter `delaypos` from SCIPsetConshdlrPresol()
4899 - Added parameter `presoltiming` to SCIPsetConshdlrPresol()
4900 - Removed parameter `delaypos` from SCIPincludeConshdlr()
4901 - Added parameter `presoltiming` to SCIPincludeConshdlr()
4902 - Added parameter `consgetdivebdchgs` to SCIPincludeConshdlr() to provide a divebdchg-callback for the constraint handler
4903 to include
4904
4905- Branching Rules:
4906 - Added parameter `forcestrongbranch` to SCIPselectVarStrongBranching()
4907 - Added parameter `executebranching` SCIPexecRelpscostBranching()
4908 - Added parameters `ndomredsdown` and `ndomredsup` to SCIPgetVarStrongbranchWithPropagation()
4909
4910- LP and Cutting Planes:
4911 - Added parameters `inds` and `ninds` to SCIPgetLPBInvRow(), SCIPgetLPBInvCol(), SCIPgetLPBInvARow(), SCIPgetLPBInvACol(), and
4912 SCIPcalcStrongCG()
4913 - Added parameters `maxweight`, `weightinds`, `nweightinds`, and `rowlensum` to SCIPcalcMIR()
4914
4915- Variables:
4916 - SCIPvarGetNodeSOS1() returns node of SOS1 variable in the conflict graph
4917 - SCIPnodeGetVarSOS1() returns SOS1 variable associated to some given node in the conflict graph
4918 - Removed method SCIPvarGetNBinImpls()
4919
4920- Presolving:
4921 - Removed parameter `delaypos` from SCIPincludePresolBasic()
4922 - Added parameter `presoltiming` to SCIPincludePresolBasic()
4923 - Removed parameter `delaypos` from SCIPincludePresol()
4924 - Added parameter `presoltiming` to SCIPincludePresol()
4925 - Removed parameters `presoldelay` and `presoltiming` from SCIPincludePresol()
4926 - Removed parameters `presoldelay` and `presoltiming` from SCIPsetPropPresol()
4927
4928- Misc:
4929 - Added parameter `isequation` to SCIPaddClique()
4930 - Removed parameter `writeimplications` from SCIPwriteCliqueGraph()
4931 - Removed method SCIPallocBufferSize()
4932 - Removed method SCIPduplicateBufferSize()
4933 - Removed method SCIPreallocBufferSize()
4934 - Removed method SCIPfreeBufferSize()
4935 - Removed method callback SCIPdialogExecConflictgraph()
4936
4937### New API functions
4938
4939- started support for user-defined operators in expression trees/graphs (see SCIPexprCreateUser()),
4940 interface will likely change again in future SCIP versions
4941- new methods for mixed inter linear matrix access (see pub_matrix.h) added
4942- SCIPcomputeArraysIntersection() to compute the set intersection of two ordered arrays
4943- SCIPcomputeArraysSetminus() to compute the set difference of two ordered arrays
4944- SCIPcutGetLPActivityQuot() in pub_cutpool.h to get the potion of LP's where this cut was sharp in an optimal basis.
4945- SCIPpresolGetTiming(), SCIPpresolSetTiming(), SCIP{conshdlr,prop}GetPresolTiming(), and SCIP{conshdlr,prop}SetPresolTiming()
4946- SCIPdigraphSetNSuccessors() sets the number of successors of some digraph node to a given value
4947
4948- Diving:
4949 - SCIPcreateDiveset() to add a diveset to a heuristic. Heuristics may have multiple divesets under different names
4950 - SCIPperformGenericDivingAlgorithm() that performs diving with periodic LP resolve according to the diveset argument.
4951
4952- Constraints:
4953 - new setter function SCIPsetConshdlrGetDiveBdChgs() in scip.h to set dive bound change callback for this constraint handler
4954 - SCIPaddDiveBoundChange() to add a diving bound change to the diving bound change storage of SCIP together with the information if this is a
4955 bound change for the preferred direction or not, to be used by constraint handlers inside the getDiveBdChgs-callback
4956 - SCIPchgCoefLinear() and SCIPdelCoefLinear() to modify linear constraint during problem creation
4957
4958- Memory:
4959 - BMSallocClearBlockMemoryArray()/SCIPallocClearBlockMemoryArray() and
4960 BMSallocClearBufferMemoryArray(), SCIPallocClearBufferArray() to allocate arrays that are initialized to 0
4961 - SCIPbuffermem() to get buffer memory;
4962
4963- Sort:
4964 - added new sorting functions SCIPsortRealRealRealBoolBoolPtr(), SCIPsortDownRealRealRealBoolBoolPtr()
4965 - added new sorting functions SCIPsortIntIntIntReal(), SCIPsortDownIntIntIntReal(), SCIPsortRealIntInt(), SCIPsortDownRealIntInt()
4966
4967- Param:
4968 - SCIPwriteParam() to write a single parameter to a file
4969 - SCIPcheckParam{Bool,Char,...}() to check whether a parameter value is within the feasible domain
4970
4971- Quadratic:
4972 - SCIPchgLhsQuadratic(), SCIPchgRhsQuadratic(), SCIPchgLinearCoefQuadratic(), SCIPchgSquareCoefQuadratic(),
4973 and SCIPchgBilinCoefQuadratic() to modify quadratic constraints during problem creation
4974 - SCIPgetFeasibilityQuadratic() and SCIPgetActivityQuadratic() to get the feasibility and activity of a quadratic constraint in a given solution
4975 - SCIPaddSquareLinearization(), SCIPaddSquareSecant(), SCIPaddBilinLinearization() and SCIPaddBilinMcCormick()
4976 in cons_quadratic.h to compute linear under- and overestimation for bilinear and quadratic terms
4977
4978### Command line interface
4979
4980- extended variable branching statistics and statistic output in the interactive shell (see Statistic section)
4981- submenu for setting `vbc` settings renamed to `visual`
4982- at the end of a command line run the best solution can now be output in the orignal space
4983
4984### Interfaces to external software
4985
4986- in the AMPL interface, variable and constraint attributes (flags) can now be set via suffixes, where 0 (unset) stands
4987 for the default, 1 for TRUE and other values for FALSE; see SCIPcreateVar() and SCIPcreateCons() for their meaning;
4988 for variables, `initial` and `removable` are recognized;
4989 for constraints, `initial`, `separate`, `enforce`, `check`, `propagate`, `dynamic` and `removable` are recognized
4990- the AMPL interface now passes an initial guess, if specified, as a solution (that will be checked for feasibility) to SCIP
4991
4992### Changed parameters
4993
4994- rowrepswitch set to 2.0, so row representation is activated if LP has at least 2 times more rows than columns
4995- one can now set emphasis parameters at the beginning of a settings file; it should start with `emphasis:` and
4996 the contain the emphasis string, e.g., `emphasis: feasibility` or `emphasis: heuristics off`.
4997
4998- Renamed parameters:
4999 - `vbc/filename` to `visual/vbcfilename`
5000 - `vbc/realtime` to `visual/realtime`
5001 - `vbc/dispsols` to `visual/dispsols`
5002
5003### New parameters
5004
5005- added parameter to switch pseudo cost update in diving heuristics (enabled by default)
5006- `branching/relpscost/confidencelevel` to set the confidence level to be used by statistical tests
5007- `branching/relpscost/higherrortol` to define the highest reliability threshold for relative error based reliability
5008- `branching/relpscost/lowerrortol` to define a lower reliability threshold for relative error based reliability
5009- `branching/relpscost/nlscoreweight` for weight of nonlinear score when branching on MINLPs
5010- `branching/relpscost/usedynamicconfidence` to use a dynamic confidence level based on the amount of
5011 strong-branching simplex-iterations compared to the overall simplex iterations (default is FALSE)
5012- `branching/relpscost/usehyptestforreliability` to enable strong branching decisions based on a 2-sample student-T test of all prior
5013 pseudo-cost observations between the best pseudo-candidate and the candidate for which to decide whether strong-branching should be applied
5014- `branching/relpscost/userelerrorreliability` to enable relative error based reliability
5015- `branching/relpscost/skipbadinitcands` for skipping strong-branching candidates whose estimated gain
5016 is significantly worse than the one of the locally best (sb or pseudo) candidate
5017- `constraints/linear/multaggrremove` to perform multi-aggregations in linear constraint handler only if the constraint can be removed afterwards
5018- `constraints/linear/rangedrowpropagation` to disabled newly implemented propagtion algorithm for ranged rows and equations
5019- `constraints/quadratic/advanced/interiorcomputation` to select the way of computing and interior point for gauge cuts
5020- `constraints/quadratic/gaugecuts` to enable convex quadratics to generate gradients cuts which are supporting
5021- `constraints/soc/generalsocupgrade` to allow general quadratics to be upgraded to soc
5022- `constraints/SOS1/addcomps` to add local complementarity constraints to the branching nodes (can be used in combination
5023 with neighborhood or bipartite branching)
5024- `constraints/SOS1/addbdsfeas` to define a minimal feasibility value for local bound (clique) inequalities in order to be
5025 added to the branching node
5026- `constraints/SOS1/addcompsdepth` to define the maximal depth for adding complementarity constraints
5027- `constraints/SOS1/addcompsfeas` to define a minimal feasibility value for local complementarity constraints in order to be
5028 added to the branching node
5029- `constraints/SOS1/autocutsfromsos1` to automatically switch to separating bound cuts from SOS1 constraints if the SOS1
5030 constraints do not overlap
5031- `constraints/SOS1/autosos1branch` to switch to SOS1 branching if the SOS1 constraints do not overlap
5032- `constraints/SOS1/conflictprop` to define whether to use conflict graph propagation
5033- `constraints/SOS1/bipbranch` to branch on a complete bipartite subgraph of the conflict graph
5034- `constraints/SOS1/boundcutsdepth` to define the node depth of separating bound (clique) cuts
5035- `constraints/SOS1/boundcutsfreq` to define the frequency for separating bound (clique) cuts
5036- `constraints/SOS1/boundcutsfromgraph` to define whether to separate bound (clique) inequalities from the conflict graph
5037- `constraints/SOS1/boundcutsfromsos1` to define whether to separate bound (clique) inequalities from SOS1 constraints
5038- `constraints/SOS1/fixnonzero`: If neighborhood branching is used, then fix the branching variable (if positive in sign)
5039 to the value of the feasibility tolerance
5040- `constraints/SOS1/implcutsdepth` to define the node depth of separating implied bound cuts
5041- `constraints/SOS1/implcutsfreq` to define the frequency for separating implied bound cuts
5042- `constraints/SOS1/implprop` to define whether to use implication graph propagation
5043- `constraints/SOS1/maxaddcomps` to define the maximal number of complementarity constraints added per branching node
5044- `constraints/SOS1/maxboundcuts` to define the maximal number of bound (clique) cuts separated per branching node
5045- `constraints/SOS1/maxboundcutsroot` to define the maximal number of bound (clique) cuts separated per iteration in the root node
5046- `constraints/SOS1/maximplcuts` to define the maximal number of implied bound cuts separated per branching node
5047- `constraints/SOS1/maximplcutsroot` to define the maximal number of implied bound cuts separated per iteration in the root node
5048- `constraints/SOS1/maxextensions` to define maximal number of extensions that will be computed for each SOS1 constraint in presolving
5049- `constraints/SOS1/maxsosadjacency` to define that the adjacency matrix of the conflict graph is not created in presolving if
5050 the number of SOS1 variables is too large
5051- `constraints/SOS1/maxtightenbds` to define the maximal number of bound tightening rounds per presolving round
5052- `constraints/SOS1/neighbranch` to branch on a neighborhood of the conflict graph
5053- `constraints/SOS1/nstrongiter` to define the maximal number LP iterations to perform for each strong branching round
5054- `constraints/SOS1/nstrongrounds` to define the maximal number of strong branching rounds to perform for each node (only
5055 available for neighborhood and bipartite branching)
5056- `constraints/SOS1/sos1branch` to branch on a single SOS1 constraint, i.e., a clique of the conflict graph
5057- `constraints/SOS1/sosconsprop` to define whether to use SOS1 constraint propagation
5058- `constraints/SOS1/strthenboundcuts` to define whether to strengthen bound (clique) cuts in case bound variables are available
5059- `constraints/SOS1/updateconflpresol` to update the conflict graph during the presolving procedure
5060- `display/allviols` to print all violated constraints of the best solution during checksol in the scip shell
5061- `heuristics/indicator/improvesols` that turns on the improvement of external solutions by one-opt
5062- `heuristics/∗diving/lpresolvedomchgquot` to determine the percentage of changed domains since previous LP to trigger
5063 an LP resolve [default: 0.15] (* stands for eight diving heuristics to support this feature)
5064- `heuristics/∗diving/lpsolvefreq` to determine the frequency for resolving LP's during the execution of
5065 this heuristic [default: 1, use 0 for a dynamic setting based on the number of domain reductions]
5066 (* stands for eight diving heuristics to support this feature)
5067- `heuristics/shiftandpropagate/binlocksfirst` to set if binaries without locks should be preferred in ordering
5068- `heuristics/shiftandpropagate/maxcutoffquot` to select a maximum percentage of allowed cutoffs before stopping the heuristic (default is 0.0)
5069- `heuristics/shiftandpropagate/selectbest` to trigger if shiftandpropagate should select the best candidate in every round
5070 (set to FALSE for static order) (default is FALSE)
5071- `limits/autororestart` for triggering an automatic restart after this many nodes, or -1 for no auto restart [default is -1]
5072- `limits/softtime` to set a soft time limit (active only after first primal solution was found)
5073- `misc/allowobjprop` to allow objective function propagation
5074- `misc/allowdualreds` to allow dual reductions
5075- `misc/outputorigsol` to control whether at the end of a command line run the solution should be output in the orignal space
5076- `numerics/checkfeastolfac` to scale feasibility tolerance when checking the feasibility of best found solution
5077 after the solving process finished (e.g., checksol in scip shell)
5078- `separating/cutselrestart` for cut selection during restart copy process (`a`ge, activity `q`uotient) [default is `a`]
5079- `separating/cutselsubscip` for cut selection for sub SCIPs (`a`ge, activity `q`uotient) [default is `a`]
5080- `separating/disjunctive/maxconsdelay` to delay separation of disjunctive cuts if number of SOS1 constraints is larger than predefined value
5081- `separating/disjunctive/maxdepth` to define the node depth of separating disjunctive cuts
5082- `separating/disjunctive/maxinvcuts` to define the maximal number of disjunctive cuts investigated per iteration in a branching node
5083- `separating/disjunctive/maxinvcutsroot` to define the maximal number of disjunctive cuts investigated per iteration in the root node
5084- `separating/disjunctive/maxrank` to define the maximal permissible rank of a disjunctive cut that could not be scaled to integral coefficients
5085- `separating/disjunctive/maxrankintegral` to define the maximal permissible rank of a disjunctive cut that could be scaled
5086 to integral coefficients
5087- `separating/disjunctive/maxrounds` to define the maximal number of separation rounds of disjunctive cuts in a branching node
5088- `separating/disjunctive/maxweightrange` to define the maximal valid range of simplex tableau row weights
5089
5090### Data structures
5091
5092- new enum `SCIP_CONFIDENCE_LEVEL` for different levels of confidence for statistical tests.
5093- new struct `SCIP_DIVESET` that bundles options for SCIP's diving heuristics; all hard diving heuristics (those
5094 without `obj` at the beginning) include diveset and implement only the scoring callback.
5095- rename all file `*_vbc.?` to the more generic `*_visual.?`
5096- moved buffer memory handling to blockmemory/memory.?;
5097 remove files type_buffer.h, struct_buffer.h buffer.h buffer.c;
5098 removed functions SCIP*buffer*() from scip.? and replaced them by macros;
5099 redesigned buffer interface to be similar to block memory; added checks for strange sizes
5100
5101Testing
5102-------
5103
5104- added scripts and targets for testing with xpress (see Makefile section)
5105
5106Build system
5107------------
5108
5109### Makefile
5110
5111- new parameter `DELHEADERS` for `uninstall`-target: scip headers are only removed when invoking `make uninstall DELHEADERS=true`
5112- added scripts check_xpress.awk, check_xpress.sh, evalcheck_xpress.sh and check_cluster_xpress.sh and target
5113 `testclusterxpress` and `testxpress`
5114
5115Fixed bugs
5116----------
5117
5118- fixed bug in primal.c and tree.c by using SCIPinfinity() as a cutoffbound to delete child nodes
5119- fixed bug in lp.c which leads to wrong primal and dual feasibility
5120- fixed wrong handling of infinite activities and primal values in sepastore.c and lp.c
5121- fixed bug that led to an erroneous warning about the clock type
5122- fix behavior of `make install` which now sets symbolic links and short links to binaries and libraries
5123- fix bug which lead to wrong global bound tightenings in prop_genvbounds.c
5124- fix call to random generator for Windows operating systems in misc.c
5125- fixed again a bug in backward propagation of linear expressions in expression graph
5126- fixed bug in prop_symmetry.c, where an incorrect weak symmetry handling constraint got added.
5127
5128- NLP:
5129 - fixed bug in heur_nlpdiving.c: wrong counting of fix variables
5130 - fix wrong handling of `SCIP_NLPSOLSTAT_LOCALINFEASIBLE` solution status in nlp.c
5131 - fix characterization of logic or constraints in SCIP's NLP relaxation
5132
5133- Branching:
5134 - fixed wrong comparison when executing branching rule for external branching candidates
5135 - fix spatial branching on implicit integer variables
5136 - fix wrong comparisons of values larger/less than +/- SCIPinfinity() in branch.c, lp.c and sol.c
5137 - fixed problem with lpisrelax flag in probing mode when doing branch-and-price
5138
5139- Constraint Handlers:
5140 - try to handle fixings of multi-aggregated variable in cons_sos1 presolving and avoid error
5141 - fixed bug in pseudoboolean constraint handler about negated variables
5142 - fixed assert in cons_soc.c: now soc with 1 lhs variable are allowed
5143 - fixed wrong assert in cons_indicator (slack variables might be replaced by active variables that have nonzero objective)
5144 - fix late creation of auxiliary LP in cons_nonlinear.c, which lead to a segmentation fault with lpi_spx2.cpp
5145 - fixed bug in cons_abspower.c: do not generate cuts with infinity right-hand-side anymore
5146 - fixed setting of enforcement flag for constraints created by reformulation in nonlinear constraint handlers
5147 - fixed bug in cons_indicator with handling local bounds
5148
5149- Memory:
5150 - fix potential memory leak in SoPlex LP interfaces when setting invalid basis
5151 - fix potential memory leak in method SCIPgetConsCopy()
5152 - fix potential memory leak in method detectRedundantConstraints() of the knapsack constraint handler
5153
5154- Interval arithmetic:
5155 - fix handling of infinite intervals in SCIPintervalIsEmpty()
5156 - fixed bug in intervalarith.c: bivariate quadratic equations may have been solved wrongly if second variable is unbounded
5157
5158- Quadratic Constraints:
5159 - fix wrong sorting of bilinear terms in cons_quadratic
5160 - fix potentially tightening of LB/UB of a variable to +/- infinity in cons_quadratic
5161 - fixed bug in cons_quadratic.c which leads to an overflow when SCIP allocates memory for a dense matrix
5162 - fixed bug in cons_quadratic.c: do not generate linearization cuts for disabled constraints
5163 - fix missing clean phase of bilinear terms with zero coefficient in cons_quadratic.c
5164
5165@page RN3_1 Release notes for SCIP 3.1
5166
5167@section RN311 SCIP 3.1.1
5168*************************
5169
5170Features
5171--------
5172
5173- use clock average to reduce number of system calls via `timing/rareclockcheck` parameter
5174- added copy mechanism for conjunction constraints
5175- added revised lpi_xprs for using XPRESS as LP solver
5176
5177Performance improvements
5178------------------------
5179
5180- improved solving of LPs in OBBT propagator
5181- improved activity-delta computation and thereby propagation for linear constraints
5182- improved memory management of proximity heuristic
5183- disabled statistic timing in all subscips via new parameter `timing/statistictiming`
5184
5185Interface changes
5186-----------------
5187
5188### New and changed callbacks
5189
5190- rename array arcdatas in digraph to arcdata
5191- changes in clock type are now transferred to SoPlex
5192- corrected wrong primal bound in statistics for unbounded problems
5193- forbid to call SCIPfixVar() in `SCIP_STAGE_PRESOLVED` stage, which is not allowed since it calls SCIPchgVarLb/Ub()
5194
5195### Deleted and changed API functions
5196
5197- rename SCIPdigraphGetNodeDatas() to SCIPdigraphGetNodeData();
5198- rename SCIPdigraphSetNodeDatas() to SCIPdigraphSetNodeData()
5199- SCIPapplyProximity() has an additional parameter freesubscip, which causes the method to free
5200 the created subscip automatically at the end.
5201
5202### New API functions
5203
5204- SCIPhasPerformedPresolve() to check, e.g., whether LP duals are accessible
5205- SCIPconvertRealTo[Long]Int() to convert reals that represent integers to [long] ints.
5206- SCIPisDualfeasEQ() and related to perform checks w.r.t. to the dual feasibility tolerance
5207- SCIPdeleteSubproblemProximity() to free proximity subproblem manually as external caller
5208
5209### Command line interface
5210
5211- added dialog for writing the finite solution (calling SCIPcreateFiniteSolCopy() before writing)
5212
5213### Interfaces to external software
5214
5215- AMPL interface now returns dual multipliers if problem is an LP and presolving was turned off
5216
5217### Changed parameters
5218
5219- changed default value of parameter `heuristics/proximity/minimprove` to 0.02; previous value was 0.25
5220- changed default value of parameter `heuristics/proximity/usefinallp` to FALSE
5221
5222### New parameters
5223
5224- `timing/rareclockcheck` to call the system time less frequently, based on the current average time interval
5225 between two calls to SCIPsolveIsStopped(); the default value is FALSE
5226- `timing/statistictiming` to enable/disable all timers for statistic output of SCIP; the default value is TRUE
5227
5228### Data structures
5229
5230- renamed MIP matrix structure to `SCIP_MATRIX`
5231- changed the numeric values for `PRESOLTIMING` flags
5232
5233Build system
5234------------
5235
5236### Makefile
5237
5238- added Makefile support for cygwin 64 Bit
5239- allow to turn off block and buffer memory by the makefile parameters NOBLKMEM, NOBUFMEM, NOBLKBUFMEM;
5240 also remove the now superfluous makefiles for noblkmem, nobufmem, noblkbufmem
5241
5242Fixed bugs
5243----------
5244
5245- fixed wrong conversion of reals representing negative integer values
5246- in debug mode, SCIP checks that no NaN's are introduced in SCIPsolSetVal()
5247- fixed bug 697 (and 699), calling SCIPsolve() after the problem was already solved and SCIPfreeSolve() was called now
5248 does nothing anymore
5249- added support for character `#` in variable names in old non-linear CIP format (i.e., names without `<` and `>`)
5250- fixed bug 702, removed too hard assert when casting too big values into `SCIP_Longint`
5251- branching for continuous variables with unbounded intervals now takes `branching/clamp` into account
5252- forbid aggregations with scalar smaller feastol or larger 1/feastol
5253- fixed bug 683, not recognizing errors/segfaults especially in free stage of SCIP by improving the check scripts
5254- fixed bug where quieting a message handler also disabled writing to files other than stdout
5255- fixed bug 708, special case of implications led to a fixing
5256- fixed bug, variable bounds detected wrong infeasibility
5257- another bug fix when computing the original variable sum of a given variable in SCIPvarGetOrigvarSum()
5258- fixed setting solution value of multi-aggregated var in xml-solution case
5259- fixed bug changing the variable type of an negated variable
5260- fixed numerical troubles in SCIPcreateFiniteSolCopy()
5261- fixed bug in SCIPpermuteProb(): if called before transforming the problem, data structures were not initialized yet
5262- fixed bug in aggregation procedure if two variables were of non-binary type but for one of the variables
5263 SCIPvarIsBinary() returned true
5264- treat activities of pseudo solutions as invalid when containing positive and negative infinity contributions
5265- fixed bug in GMI example: fractionality of slack variable is now computed correctly
5266- fixed LP interface of CPLEX: functions getBInv* return the correct sign of the coefficients.
5267- fixed bug in SCIPpermuteProb(), when called in transformed stage and non-active constraints exist
5268
5269- Dual:
5270 - use dual feasibility tolerance for comparisons regarding reduced costs
5271 - fixed bug in prop_dualfixing: don't fix variables to infinite values during solving
5272 - fixed sign of the dual multipliers returned by AMPL interfaces for maximization
5273
5274- Objective and Time Limit:
5275 - fixed wrong output of status when an objective limit was imposed but not reached yet
5276 - fixed the rare case that branching was performed even though strong branching found global bound changes leading to
5277 an infeasible/objlimit LP
5278 - fixed bug that objective limit was not reset correctly during SCIPfreeTransform() for maximization problems
5279 - fixed bug that hitting the time limit while solving a pure LP and then continuing the solving process lead to
5280 not solving the LP, but always creating a single child node until maximum depth is reached
5281
5282- Heuristic:
5283 - fixed bug leading to an incorrect dual bound when solving probing LPs within a DURINGPRICINGLOOP heuristic
5284 - fixed bug in proximity heuristic which attempted to enter diving mode even at nodes without a constructed LP
5285 - fixed wrong pseudo cost updates during diving heuristic execution after backtracking
5286 - fixed bug in heur_oneopt: avoid bound violations if shift value is negative due to infeasibilities
5287 - fixed bug that reaching a solution limit by beforenode heuristics lead to disregarding the current node if the
5288 optimization process was restarted later
5289 - fixed bug in trysol heuristic not saving the best solution in maximization problems
5290
5291- Presolve:
5292 - fixed bug in presolving of abspower constraints that lead to wrong variable locks
5293 - allow to call SCIPmarkConsPropagate() in INITPRESOLVE stage
5294 - fixed bug in components presolver with handling of dual fixable variables: unboundedness was not detected,
5295 better handle components with single variables by dual fixing propagator
5296 - issues in component solving by presol_components do not lead to stopping the overall process, anymore, the component
5297 is just disregarded
5298
5299- Memory:
5300 - fixed bug with freeing problem: need to reset objective limit
5301 - fixed memory leaks in case of erroneous parsing of constraints, e.g., non-linear constraints
5302 - fixed missing memory allocation for node data in digraphs
5303
5304- Constraints:
5305 - fixed bug in cons_quadratic which leads to wrong min/max activities
5306 - removed wrong break in cons_pseudoboolean
5307 - fixed bug in cons_varbound.c using the wrong constraint side for updating an upper bound
5308 - fixed bug in presolve of cons_nonlinear: wrong constraint upgrades may have been performed due to outdated bound
5309 information in expression graph
5310 - fixed bug in cons_setppc, wrongly aggregating variables if dual-presolving was disabled
5311 - fixed bug in cons_sos1: locks and events were not initialized if constraint was added to transformed problem
5312 - fixed bug in cons_setppc with dual presolving disabled
5313 - corrected copy of disjunction constraints
5314
5315- Reading:
5316 - allow to read numbers like `42856.` in lp-format
5317 - fixed bug(?) in reader_mps: variables are now written in columns section even of they occur in no constraint
5318 and have an objective coefficient of 0 (otherwise, CPLEX and Gurobi cannot read the file)
5319 - fixed bug with reading `>=1` indicator constraints in LP-files
5320 - fixed bug in reader_lp which created two indicator constraints with the same name to trigger an equality
5321 - fixed bug when reading indicator constraints for linear constraints (equations/ranged rows) from MPS files
5322
5323@section RN310 SCIP 3.1.0
5324*************************
5325
5326Features
5327--------
5328
5329- added breadth first search node selection
5330- new node selection rule UCT which balances exploration and exploitation by considering node visits
5331- added possibility to not set a cutoff bound in the LP solver (can be enabled by setting `lp/disablecutoff` to TRUE)
5332- added missing debugging solution check for cliques
5333- added a data pointer to each node of the `SCIP_DIGRAPH`
5334- SCIPgetVarCopy() will now copy the original bounds when called for an original variable
5335- added upgrade of continuous variables to implicit variables for linear equations even if the coefficient is
5336 not equal to 1
5337- probing supports implicit binary variables
5338- added scaling to computation of relative interior point in SCIPcomputeLPRelIntPoint()
5339
5340- Solution:
5341 - added two methods to iterate over a sparse solution (`SCIP_SPARSESOLUTION`), see pub_misc.h
5342 - it is now possible to add an offset for the original problem instance, all original solutions will be initialized with
5343 this value and updated, when the offset is changed
5344 - extended and corrected dual feasibility checks for LP solution (controlled by parameter `lp/checkdualfeas`)
5345
5346- Cuts and Separation:
5347 - the rank of cuts is now stored and taken into account to improve numerical stability
5348 - added possibility to separate a cutpool w.r.t. a given solution (instead of LP-solution)
5349
5350- Branching:
5351 - new branching rule `cloud branching` that considers several alternative LP optima
5352 - additional vbc output added: branching information is printed earlier and also for nodes which were cut off
5353 - added support for strong branching with domain propagation in full strong and reliability pseudo cost branching
5354 - added strong branching with domain propagation support: in SCIPstartStrongbranch(), support for propagation can
5355 be enabled (uses the probing mode, some overhead compared to standard strong branching), after that
5356 SCIPgetVarStrongbranchWithPropagation() can be used to perform strong branching on a variable with previous domain
5357 propagation; similar to probing, valid bounds for variables are collected
5358 - strong branching with propagation can be enabled in fullstrong and relpscost branching rule
5359 - added possibility to store pricing norms of the LP solver (in addition to basis information) to speed up LP solving
5360 after a backtrack, e.g. in probing or strong branching with domain propagation
5361 - a pricer can now return that no further pricing should be done but rather early branching, even if it added variables
5362
5363- LP interface:
5364 - SoPlex (>= 1.7.0.5) can compute condition number of current basis matrix via LP interface
5365 - LPI files (lpi*.[h|c]) all moved from src/scip to src/lpi
5366
5367- Constraints:
5368 - added propagation method to cons_xor relying on Gaussian elimination, which can also produce feasible solutions
5369 - added first implication detection in cons_linear
5370 - cons_indicator can now try to construct feasible solutions from a cover
5371 - added possibility to forbid upgrading of linear constraints
5372 - new initial constraints are now added to the LP before solving a probing LP
5373 - first implementation of parsing for nonlinear constraints in CIP format
5374 - added upgrade from varbound constraints to set-packing constraints
5375 - added upgrade from bounddisjunction constraints to set-packing/logicor constraints
5376 - cumulative constraint handler adds disjunctive constraints (cumulative with capacity 1) for all jobs which cannot
5377 be processed in parallel
5378 - added new clique extraction algorithm for linear constraints
5379 - the slack variables of indicator constraints can now be scaled
5380 - added redundancy check of sides of ranged row varbound constraint
5381 - added coefficient tightening for ranged row varbound constraint
5382 - XOR constraint handler can add two extended formulations (flow/asymmetric, parameter `addflowextended/addextendedform`)
5383 - added multi-aggregation for binary variables with at most two uplocks and two downlocks, which emerge from set-
5384 partitioning or set-packing constraints
5385 - added upgrade from quadratic constraints to set-packing constraints
5386 - generalized the linking constraint handler
5387
5388- Reader:
5389 - can now read and write CIP-files with (multi-)aggregated variables
5390 - all readers now take the global parameters `reading/dynamic{conss|cols|rows}` and `reading/initialconss` into account
5391 - added reader_pbm, which writes the constraint-variable incidence matrix in pbm format (possibly scaled to given size)
5392 - reader_osil can now read SOS1 and SOS2 constraints
5393 - reader_lp and reader_mps are now able to write and-constraints in form of their (weak/strict) relaxation
5394 - added reading capability to GAMS reader (if compiling with GAMS=true, requires a GAMS system)
5395 - added capability of writing SOS1/2 constraints to GAMS reader (introduces extra variables and equations)
5396
5397- Heuristic:
5398 - new primal heuristics dual value
5399 - new LNS heuristic called `proximity`, which solves a problem in which a local branching constraint replaces the
5400 objective function which in turn is treated as additional constraint
5401 - new LP-based rounding heuristic (heur_randround) whose randomized rounding is biased towards the LP solution value;
5402 the heuristic uses the probing mode of SCIP to generate conflict clauses on the fractional variables
5403
5404- Presolving:
5405 - added new dual presolving for setppc-constraints
5406 - changed dualfix presolver to propagator such that dual fixing can also be applied during repropagation of the root node
5407 - added full-dual presolving step in setppc constraint handler
5408 - dual solution can now be displayed for pure LPs when no presolving was performed
5409 - added clique presolving for xor constraints
5410 - added presolving using pairs of variable bound constraints that use the same variables
5411 - added more presolving to cons_indicator, checking whether indicator/slack variables are aggregated
5412 - added presolve.{c,h} which should be used for all preprocessing mechanisms executed from within SCIP, corresponding to
5413 solve.{c,h} and also for presprocessing methods which can be called from different plugins or from the core to avoid
5414 code doubling
5415 - return error if variable should be fixed to infinity after presolving (LP-solvers do not handle this consistently)
5416 - in verblevel `SCIP_VERBLEVEL_FULL`, the number of non-zeros will be output for the original and presolved model
5417 - new presolving step for tightening logicor constraints using implication and clique information
5418 - several new presolving steps for linear and knapsack constraints, using gcd information and many more
5419
5420- Statistic:
5421 - added average gap based on primal-dual integral to solution statistics; can be disabled via parameter
5422 `misc/calcintegral`
5423 - the statistics now include the value of the first LP solved at the root node (without cuts)
5424 - added new statistic which distinguishes between internal nodes and leaves which got processed
5425 - new section `Root Node` in statistics, listing objective value, iterations and solving time for the first LP solved
5426 at the root node as well as final dual bound of the root node and LP iterations for processing the root node
5427 (those where listed in the `Solutions` section before, named `Root Dual Bound` and `Root Iterations`)
5428
5429Performance improvements
5430------------------------
5431
5432- allow multiaggregation of binary variables
5433- shorten conflicts and deriving global boundchanges from conflicts
5434- apply lowerbound provided by pricers already during pricing loop, stop pricing if the lower bound computed by pricing
5435 already exceeds the cutoff bound
5436- improved performance of SCIPcliquelistDel(), SCIPcliquetableAdd(), SCIPcliquetableCleanup()
5437
5438- LP Solution:
5439 - strong branching LP solutions are checked for integrality
5440 - improved LP reoptimization for branch-and-price applications
5441 - improved numerical stability checks for LP solution
5442 - faster feasibility check of LP solutions (controlled by parameters `lp/checkprimfeas` and `lp/checkdualfeas`)
5443
5444- Presolver:
5445 - improved methods SCIPlpiGetBInv{Row,Col,ACol} for row representation in SoPlex LP interface
5446 - improved performance of method SCIPsolRetransform() when called during presolving with many aggregations
5447 - minor presolving performance improvements in cons_logicor.c and cons_knapsack.c
5448 - dual fixing presolver was turned into a propagator
5449 - many presolving improvements in constraint handlers
5450 - improved dual-presolving for setppc constraints in special cases
5451
5452- Constraints:
5453 - major improvements in pseudo-boolean constraint handler
5454 - performance improvement in domain propagation by marking constraints for propagation
5455 - added more constraint upgrading possibilities
5456 - improved handling of initial constraints created during solving
5457 - disabled scaling in feasibility check of nonlinear constraint handlers
5458 - conflict consisting of exactly two binary variables will be handled as set-packing constraint instead of an logicor
5459 constraint and the corresponding clique information is globally added
5460 - fasten repropagation for set-packing and -partitioning constraints
5461 - improved merging of and-constraints
5462 - disabled multi-aggregation in linear constraint handler when coefficients differ too much
5463 - improved multi-aggregation in linear constraint handler when only one variable in the aggregation has infinity
5464 contribution
5465 - added upgradability for implicit binary variable cases for linear constraints
5466
5467Examples and applications
5468-------------------------
5469
5470- new textbook Gomory mixed integer cuts example
5471
5472Interface changes
5473-----------------
5474
5475- removed all message length parameters in message.c and for printing error messages (not needed anymore)
5476
5477### New and changed callbacks
5478
5479- Domain Propagation:
5480 - added parameter `nmarkedconss` to SCIP_DECL_CONSPROP() callback which gives the number of constraints marked
5481 for propagation (these constraints are listed first in the conss array given as parameter).
5482
5483- Primal Heuristics:
5484 - Added parameter `nodeinfeasible` to SCIP_DECL_HEUREXEC() callback which states whether the current subproblem was
5485 already detected to be infeasible. In this case, the current LP solution might not respect local bounds and the
5486 heuristic must not assume that it does.
5487
5488- Variable Pricers:
5489 - Added parameter `stopearly` to callback method SCIP_DECL_PRICERREDCOST(). This boolean pointer should be used by the pricer
5490 to state whether early branching should be performed, even if new variables were added in the current pricing round.
5491
5492- Branching Rules:
5493 - new possible return value `SCIP_DIDNOTFIND` for SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_BRANCHEXECPS(), and
5494 SCIP_DECL_BRANCHEXECEXT() callbacks to state that the branching rule searched, but did not find a branching.
5495
5496### Deleted and changed API functions
5497
5498- SCIPcalcMIR() takes an additional parameter sidetypes to determine which side of the rows to use
5499 (relevant for ranged rows)
5500- SCIPvarParseOriginal() and SCIPvarParseTransformed() now return the end of the parsed string
5501- SCIPgetConsCopy() now always captures the created constraint
5502
5503- Branching:
5504 - Added parameter `nfracimplvars` to SCIPgetLPBranchCands()
5505 - SCIPgetLPBranchCands() can be used to retrieve the number of implicit integer variables with fractional LP solution
5506 value via an additional pointer; the corresponding implicit integer variables can be accessed together with their
5507 fractionalities and solution values in the same way as binary and integer variables before; the arrays are sorted such
5508 that binary and integer variables precede the implicit integer variables; the method SCIPbranchcandGetLPCands()
5509 has been modified in the same way
5510
5511- LP and Cutting Planes:
5512 - Added parameter `sidetypes` to SCIPcalcMIR() to specify the specify row side type to be used.
5513 - Added parameter `cutrank` to SCIPcalcMIR() and SCIPcalcStrongCG() which stores the rank of the returned cut;
5514 via SCIProwChgRank() the rank of a cut can be changed (default rank is 0)
5515 - Added parameter `infeasible` to SCIPaddCut() which is a pointer to store whether the cut is infeasible for the
5516 local bounds.
5517 - SCIPgetLPObjval() now returns the LP value of the current (suboptimal) basis if the iteration limit is hit during LP
5518 solving (instead of -infinity); this value is not necessarily a valid dual bound and must not be used as such, but can
5519 be used as an objective estimate, e.g., if strong branching is simulated using the probing mode
5520 - removed parameter `normtype` from function SCIPcomputeLPRelIntPoint()
5521
5522- Misc:
5523 - Added parameter `lazyconss` to SCIPwriteMIP() to swith writing removable rows as lazy constraints.
5524 - Added parameter `enablepropagation` to SCIPstartStrongbranch(), which can be used to enable strong branching
5525 with domain propagation.
5526 - SCIPstartStrongbranch() has a new parameter `propagate` to enable or disable propagation support for strong branching
5527 - New method SCIPgetVarStrongbranchWithPropagation() which performs strong branching with propagation on a variable.
5528 - Added parameter `endptr` to SCIPparseVar() which stores the final string position after parsing.
5529
5530### New API functions
5531
5532- added SCIPdebugCheckConss() to the debugging mechanism and therefore created a `SCIP_SOL` (in original space) in debug.c
5533- before copying solutions to the original solution candidate storage, infinite solution values can now be removed using SCIPcreateFiniteSolCopy()
5534- SCIPsortLongPtrRealBool(), SCIPsortLongPtrRealRealBool(), SCIPsortLongPtrRealRealIntBool() and corresponding
5535 methods for sorting, insertion and deletion
5536- SCIPstoreSolutionGap() in scip.c, to store the gap when the first and last solution is found
5537- SCIPwriteCliqueGraph() which allows to write a graph with node weights for fractional variables
5538
5539- Separation:
5540 - SCIPconshdlrIncNCutsFound(), SCIPsepaIncNCutsFound() and SCIPsepaIncNCutsFoundAtNode() to increase the number of found cuts
5541 - SCIPseparateSolCutpool() to separate a cutpool w.r.t. a given solution
5542
5543- Constraint Handlers:
5544 - New method SCIPconshdlrGetStrongBranchPropTime() which returns the time used for domain propagation methods
5545 of the constraint handler during strong branching.
5546 - New method SCIPconsIsMarkedPropagate() which returns whether a constraint is marked for propagation.
5547 - New methods SCIPconsAddUpgradeLocks() and SCIPconsGetNUpgradeLocks() to increase or get the number of upgrade
5548 locks of a constraint.
5549 - New method SCIPgetNCheckConss() which returns the number of checked constraints.
5550
5551- Data structures:
5552 - New methods SCIPsparseSolGetFirstSol() and SCIPsparseSolGetNextSol() to get the first sparse solution
5553 or iterate over the sparse solutions, respectively.
5554 - New methods for the `SCIP_QUEUE` data structure in pub_misc.h to handle a (circular) queue, e.g., SCIPqueueCreate(),
5555 SCIPqueueFree(), SCIPqueueInsert(), SCIPqueueRemove(), SCIPqueueFirst(), SCIPqueueIsEmpty(), SCIPqueueNElems()
5556 - New method SCIPgmlWriteNodeWeight() to write a node section including weight to a .gml graph file.
5557 - New methods for hash tables: SCIPhashtableRemoveAll(), SCIPhashtableGetNElements(), SCIPhashtableGetLoad()
5558 - New methods in pub_misc.h to handle a resource activity, e.g., SCIPactivityCreate(), SCIPactivityFree(),
5559 SCIPactivityGetVar(), SCIPactivityGetDemand() ...
5560 - New methods for digraphs: SCIPdigraphResize() to resize the graph and SCIPdigraphSetNodeDatas() and
5561 SCIPdigraphGetNodeDatas() to set and get the data attached to the nodes.
5562
5563- Domain Propagation:
5564 - New method SCIPpropGetStrongBranchPropTime() which returns the time spent by a domain propagator during strong branching.
5565 - New methods SCIPmarkConsPropagate() and SCIPunmarkConsPropagate() to (un)mark a constraint for propagation.
5566
5567- LP and Cutting Planes:
5568 - New methods SCIPchgRowLhsDive() and SCIPchgRowRhsDive() to change left and right hand side of a row during diving.
5569 - Added parameter `cutoff` to SCIPsolveDiveLP(), SCIPsolveProbingLP(), and SCIPsolveProbingLPWithPricing()
5570 which is a pointer to store whether the diving/probing LP was infeasible or the objective limit was reached.
5571 - SCIPgetFirstLP{Dual/Lower}boundRoot() which return the value of the first LP solved at the root node
5572 - SCIPgetNRootFirstLPIterations() which returns the number of LP iterations for the first LP solved at the root node
5573 - SCIPlpiGetNorms(), SCIPlpiSetNorms() and SCIPlpiFreeNorms() for getting the LP pricing norms from the LP
5574 solver, loading them back into the solver and freeing the data
5575 - New method SCIPgetFirstLPTime() and SCIPgetNRootFirstLPIterations() to return time and iterations for the first LP solve
5576 and SCIPgetFirstLPDualboundRoot() and SCIPgetFirstLPLowerboundRoot() to return the first root LP dual and lower bound.
5577 - New method SCIPprintDualSol() which prints the dual solution for a pure LP (works only with preprocessing disabled).
5578 - New method SCIPisCutApplicable() which returns whether a cut is good enough to be applied.
5579
5580- Message Handler:
5581 - the main output routine of message.c (`bufferMessage` now handleMessage) has been rewritten: it now does not need
5582 a copy of the string to be output anymore, which makes the code much simpler (and also faster); it is passed a
5583 function pointer to the output function and uses it to directly output the (buffered) messages
5584 - New generic messagehandler output callback method SCIP_DECL_MESSAGEOUTPUTFUNC().
5585 - Removed parameter `msglength` from callback method SCIP_DECL_ERRORPRINTING().
5586 - New method SCIPmessageVPrintError() to print an error message.
5587 - Removed method SCIPmessagePrintWarningHeader().
5588
5589- Parameters:
5590 - New method SCIPparamGetCharAllowedValues() to get the allowed values for a char parameter.
5591 - New method SCIPgetParam() to get the parameter with a given name.
5592
5593- Variables:
5594 - SCIPapplyProbingVar() in prop_probing.h
5595 without deteriorating its objective value
5596 - SCIPshrinkDisjunctiveVarSet(), which takes an set of variables with corresponding bounds and boundtypes, and
5597 tries to derive global boundchanges and also to shorten this set of variables by using cliqe, implication and
5598 variable bound information
5599 - SCIPselectVarStrongBranching() to get the variable that fullstrongbranching would select
5600 - New method SCIPvarGetValuehistory() to get the value-based history of a variable.
5601
5602- Misc:
5603 - New method SCIPdoNotMultaggr() which returns whether multi-aggregation was disabled.
5604 - New method SCIPcreateFiniteSolCopy() to create a copy of a solution with infinite fixings removed.
5605 - New method SCIPadjustImplicitSolVals() which sets implicit integer variables to an integer value in the given
5606 solution without deteriorating its objective value.
5607 - New method SCIPcopyOrig() to copy the original problem. Analoguosly, use SCIPcopyOrigProb(), SCIPcopyOrigVars(),
5608 and SCIPcopyOrigConss() to copy original problem data, variables, or constraints, respectively.
5609 - New method SCIPwriteCliqueGraph() to write the clique graph in GML format into a given file
5610 - New method SCIPaddOrigObjoffset() to add an offset to the objective function.
5611 in original space and updates all orignal solutions correspondingly
5612 - New method SCIPcopyImplicationsCliques() to copy implications and cliques to a copied SCIP instance.
5613 - New method SCIPgetOpenNodesData() which returns all unprocessed nodes.
5614 - Added parameter `endline` to SCIPprintDisplayLine() to switch printing a newline symbol at the end of the line.
5615 - New method SCIPgetNLimSolsFound() returning the number of feasible primal solution respecting the objective limit.
5616
5617### Command line interface
5618
5619- allow dialog option to write clique graph
5620- dual solution values can now be obtained in the interactive shell after solving a pure
5621 LP without presolving
5622
5623### Interfaces to external software
5624
5625- new SoPlex 2.0 interface, can be enabled with `LPS=spx2`
5626- add support for SOS1 and SOS2 constraints to AMPL interface (see `interfaces/check/testset/SOS/sos?a.mod` for example)
5627- added copy of GAMS interface from COIN-OR/GAMSlinks project; GAMS-reader in SCIP can now read model instances from .gms files
5628- beta version of a python interface for the scipoptsuite is now available under interfaces/python
5629- beta version of a Java native interface is now available under `interfaces/jni`
5630
5631### Changed parameters
5632
5633- parameter `branching/scorefunction` has new value `q` for for `q`uotient branching score function
5634- replaced parameter `lp/checkfeas` by two parameters `lp/checkprimfeas` and `lp/checkdualfeas` to decide on primal and dual
5635 feasibility checks individually
5636- removed all local parameters `reading/(READER)/dynamic{conss|cols|rows}` and replaced them by global parameters
5637 `reading/dynamic{conss|cols|rows}`
5638- changed default value of parameter `numerics/dualfeastol` to 1e-7 for safer dual bounds from LP solver
5639- new possible values for parameter `heuristics/shiftandpropagate/sortkey` for sorting variables w.r.t. their norm,
5640 default changed from `u` to `v`, which means sorting downwards by violations
5641
5642- Constraints:
5643 - changed type of parameters `constraints/bivariate/scaling`, `constraints/quadratic/scaling`, `constraints/soc/scaling`
5644 from boolean to character
5645 - changed default for `constraints/{abspower,bivariate,nonlinear,quadratic,soc}/scaling` to off
5646 - changed default max coefficient for big-M constraint to be initial from 1e6 to 1e9
5647
5648- Separation:
5649 - changed default value of gomory cut separation parameter `separating/gomory/maxrank` from 0 to 3, to take also gomory
5650 cuts that could not be scaled to integral coefficients, with maximal rank 3 into account
5651 - remove parameter `separating/closecuts/relintnormtype`
5652
5653### New parameters
5654
5655- `branching/checksol` and `branching/heursbsol` to specify whether the strong branching LP solution
5656 should be checked for feasibility and whether a simple rounding heuristic should be run on this solution
5657- `branching/firstsbchild` and `branching/forceall` to specify the first child node to be
5658 investigated during strong branching (`u`p, `d`down, `a`uto) and whether always both children should be solved (only for
5659 strong branching with domain propagation, per default, the second child is not looked at when the first is infeasible)
5660- `conflict/fullshortenconflict` to decide whether we want to stop shortening a conflict set, when no
5661 global bound changes can be found anymore
5662- `conflict/maxvarsdetectimpliedbounds` to decide whether the a valid conflict of what maximal length
5663 will be used to derive global bound changes
5664- `constraints/{linear,knapsack}/detectcutoffbound` and `constraints/{linear,knapsack}/detectlowerbound`
5665 to enable/disable detection of constraint parallel to the objective function that will add an cutoffbound or an
5666 lowerbound respectively and these constraints will be prevented from entering the LP
5667- `constraints/and/upgraderesultant` to upgrade resultants of and constraints from binary to implicit binary variables, default is TRUE
5668- `constraints/abspower/scaling` and `constraints/nonlinear/scaling`
5669- `constraints/indicator/scaleslackvar` for scaling of the slack variable in indicator constraints
5670- `constraints/indicator/trysolfromcover` for trying to construct a feasible solution from a cover
5671- `constraints/linear/checkrelmaxabs` for checking linear constraints with a side of 0.0 relative to
5672- `constraints/linear/detectpartialobjective` to enable/disable the detection of sub-equations of the objective function
5673- `constraints/logicor/strengthen`, should pairwise constraint comparison try to strengthen constraints by removing superflous non-zeros?
5674- `constraints/xor/addextendedform` to add an extended formulation in XOR-constraints
5675- `constraints/xor/addflowextended` to add use the extended flow formulation in XOR-constraints
5676- `heuristics/<heurname>/lplimfac` for LNS heuristics to limit the number of LPs solved in a subproblem
5677 the maximum absolute value in the activity instead of 1.0
5678- `heuristics/shiftandpropagate/fixbinlocks` for fixing binary variables with no locks in one direction to the corresponding bound
5679- `heuristics/shiftandpropagate/collectstats` which decides whether variable statistics are collected
5680- `heuristics/shiftandpropagate/impliscontinuous` to decide whether implicit integer variables are treated as continuous variables
5681- `heuristics/shiftandpropagate/preferbinaries` and `heuristics/shiftandpropagate/stopafterfeasible`,
5682 which decide whether binaries should be shifted first and the shifting should be stopped when no violations are left
5683- `lp/disablecutoff` to toggle usage of LP cutoff bound (0: enabled, 1: disabled, 2: auto = disabled if pricers are used)
5684- `misc/calcintegral` (default TRUE) to trigger calculation of primal-dual integral
5685- `misc/finitesolutionstore` to switch whether infinite fixings should be removed from solutions before
5686 copying them to the original solution store
5687- `misc/permuteconss` and `misc/permutevars` to control whether variables and/or constraints should be permuted, if permutationseed != -1
5688- `presolving/components/feastolfactor` to increase the feasibility tolerance in all sub-SCIPs, when solving a component
5689- `propagating/obbt/conditionlimit` to discard instable LP bases
5690- `reading/(READER)/initialconss` that determines whether model constraints are initial
5691- `reading/cipreader/writefixedvars` for disabling printing of fixed variables in CIP format
5692- `reading/lpreader/aggrlinearization-ands` and `reading/mpsreader/aggrlinearization-ands` to enable/disable
5693 the printing of the weak or strict relaxation of and-constraints in LP and MPS format, respectively
5694- `reading/lpreader/linearize-and-constraints` and `reading/mpsreader/linearize-and-constraints` to
5695 allow and-constraints to be linearized when printing in LP and MPS format, respectively
5696- `separating/feastolfac` to allow dynamic decrease of relaxation feasibility tolerance depending on feasibility to applied cuts,
5697 i.e., allow relaxation solutions to have a primal infeasibility of at most this factor times the infeasibility of applied cuts
5698- `separating/gomory/sidetypebasis` to decide whether the sides of ranged rows should be determined from the basis status
5699- `separating/oddcycle/cutthreshold` to run odd cycle separation if not enough cuts have been found
5700- `separating/zerohalf/delayedcuts` to use the delayed cutpool for the zerohalf separator
5701- `write/allconss` to enable that all constraints are written
5702- `write/genericnamesoffset` when writing a generic problem to define an offset on the variable numbering
5703
5704### Data structures
5705
5706- New structure to store value-based branching and inference history (see pub_history.h).
5707- new data structure for (circular) queues (`SCIP_QUEUE`)
5708- hash tables will now increase dynamically
5709- Moved LP solver interfaces to subdirectory `src/lpi`.
5710
5711Testing
5712-------
5713
5714- added McNemar tests and Wilcoxon signed rank tests to cmpres.awk evaluation scripts
5715- added passing MEM option of testgams(cluster) target as workspace option to GAMS jobs
5716- extended test scripts by statistical tests
5717
5718Build system
5719------------
5720
5721### Makefile
5722
5723- default flag for ZIMPL is now `auto`, which means that it is built if and only if GMP is available (GMP=true)
5724- fixed make install for older Mac systems where install command does not have option -t
5725- dropped support for Ipopt < 3.10
5726
5727Fixed bugs
5728----------
5729
5730- fixed bug when adding (global) clique, implications or variable bound information in solving stage that lead to
5731 global bound changes which contradict local bounds and therefore need to be stored as pending bound changes
5732- unlinking a solution now copies solution values smaller than SCIPepsilon() avoiding some feasible solution in the
5733 transformed problem to be infeasible in the original problem
5734- fixed bug when flushing the warning buffer when SCIP is closed
5735- fixed bug when a bound change contradicts a local bound and is stored as pending, but the contradicting local
5736 bound becomes global afterwards (--> node where pending bound change is valid can be cut off)
5737- fixed statistics bug: externally given solutions and new solutions found while transforming existing ones
5738 are now listed in line `other solutions` of primal heuristics statistics
5739- fixed bug in random generators SCIPgetRandomInt() and SCIPgetRandomReal() for large intervals
5740- make sure that bound changes of negated original variables are correct
5741
5742- Branching:
5743 - fixed bug w.r.t. changing the variable branching priority beyond the problem stage
5744 - allow again branching on continuous variables with huge bounds
5745
5746- Separation:
5747 - fixed bug in sepa_cgmip computeObjWeightSize() w.r.t. equal sized rows
5748 - fixed wrong bound calculation in sepa_rapidlearning
5749 - fixed bug in flowcover separator to exclude unconstrained rows in aggregation
5750
5751- LP and Interfaces:
5752 - fixed bug that lead to resolving the LP after diving instead of restoring the buffered solution
5753 - fixed rare bug with conflict analysis and LP/LPI having different states after diving
5754 - fixed several bugs in lpi_grb
5755 - fixed wrong strong branching results in lpi_grb.c and an invalid write
5756 - fixed bug in handling max-function in ampl interface; added support for min-function
5757
5758- Presolving:
5759 - fixed bug in prop_dualfix w.r.t. to fixing of variables to infinity after presolving
5760 - fixed wrong presolving finished status which sometimes occurred when the time limit was hit during presolve
5761 - fixed bug where a limit on presolving rounds was exceeded by 1
5762 - fixed minor bugs in presolving in cons_setppc.c and cons_logicor.c
5763 - fixed minor bug in cons_linear w.r.t. disabled presolving
5764
5765- Propagators:
5766 - fixed bug in genvbounds propagator occurring when objective offset or scale changes after a restart
5767 - fixed bug in genvbounds propagator by replacing non-active variables on right-hand side after presolving
5768
5769- Readers:
5770 - fixed memory bug in reader_mps
5771 - fixed several minor bugs with handling of memory when writing aggregated variables (reader_lp, reader_mps)
5772 - fixed bug in reader_lp when writing bilinear terms (product sign was missing)
5773 - fixed bug in reading indicator constraints in mps-format
5774 - nonlinear readers now create auxiliary objective variables and constraints always as initial and not removable
5775 in order to avoid unbounded LPs due to loose variables with infinite best bound
5776
5777- Constraints:
5778 - fixed several bugs where variables or constraints were not freed correctly
5779 - do not multi-aggregate variables if the constant would be a huge value in order to avoid numerical troubles
5780 - fixed bug with infinite multi-aggregation constants
5781 - fixed output of aggregated variables in indicator constraints in lp and mps-format
5782 - improved handling of initial constraints: constraints which are initial, but added during the search to an already
5783 treated node are kept and added to the LP at every node where they are active
5784 - fixed bug in cons_superindicator concerning names of upgraded constraints
5785 - fixed bug in cons_indicator with trying to create solution in problem stage
5786 - fixed bug in cons_orbitope with fixing upper right triangle in non-root nodes
5787
5788Miscellaneous
5789-------------
5790
5791- new SCIP Optimization Suite homepages
5792
5793@page RN3_0 Release notes for SCIP 3.0
5794
5795@section RN302 SCIP 3.0.2
5796*************************
5797
5798Features
5799--------
5800
5801- reading erroneous CIP files can now output some indication of syntax errors
5802- can now run splint on core files
5803- cons_xor now uses the integral variable in propagation
5804- allowed to switch on/off the solution debugging
5805
5806Performance improvements
5807------------------------
5808
5809- improved SCIPlpiAdd{Cols,Rows}() in SoPlex LPi
5810
5811Examples and applications
5812-------------------------
5813
5814Interface changes
5815-----------------
5816
5817### New API functions
5818
5819- SCIPmarkColNotRemovableLocal() and SCIPmarkRowNotRemovableLocal() to forbid removal of an column/row
5820 from the LP in the current node
5821- SCIPmessageVPrintError()
5822
5823### Command line interface
5824
5825- can now output the solutions in the solution pool in the interactive shell
5826
5827### Interfaces to external software
5828
5829- updated Mosek LP interface to compile with Mosek 7
5830
5831Fixed bugs
5832----------
5833
5834- fixed bugs in solution counting
5835- fixed fieldtypes in sorting template
5836- fixed bug concerning the userinterrupt flag, which was not reset
5837- fixed solution collection when counting solutions
5838- fixed bug with storing original solutions
5839- fixed bug with infinite multi-aggregation constants
5840- fixed bug that removing reverse implication did not reset closestvblpcount
5841- fixed bug that duplicate solutions stopped copying of solutions to original solution candidate store
5842- forbid branching on variables with huge bounds; such huge values cannot be enumerated with fixed precision
5843 floating point arithmetics
5844- fixed bug that Ipopt's error message was not fully shown due to exiting before the message handler buffer was emptied
5845- unlinking a solution now copies solution values smaller than SCIPepsilon() avoiding some feasible solution in the
5846 transformed problem to be infeasible in the original problem
5847- allow to add columns (rows) with nonzero indices beyond current number of rows (columns) in SoPlex LPi
5848- updated get.ASL script to cope with broken ftp access to netlib server
5849
5850- Memory:
5851 - fixed bugs with freeing C++ object data for problem and variables
5852 - fixed memory leak in lp.c (probably never occurred so far since array was not used)
5853 - fixed bug in sepa_zerohalf.c where the maxcuts(root) parameters led to an invalid memory allocation call
5854
5855- LP:
5856 - fixed assert in solve.c with branched status and LP reached the objective limit
5857 - fixed bug in heur_oneopt.c and heur_clique.c which was caused by side-effects when calling SCIPconstructLP(); when
5858 adding new variables in this method (e.g. adding new variables needed for a relaxation), this changes the variables
5859 array of SCIP
5860 - fixed problem that diving did not save status for infeasible LPs
5861 - fixed bug in SCIPlpComputeRelIntPoint() with wrong iteration limit and with wrong recompution
5862 - fixed bug that old LP size was not updated for deadend if no LP was solved
5863
5864- Expressions:
5865 - fixed issues with ungraceful termination when encountering unsupported expression operands in AMPL interface
5866 - fixed bug in backward propagation of linear expressions in expression graph
5867
5868- Propagation:
5869 - fixed potential performance issue with tree depth always assumed to be zero when propagating in probing mode
5870 - fixed bug in prop_vbound w.r.t. creation of variables during the search
5871 - fixed several bugs in propagation of cons_xor: need to take integral variables into account
5872 - fixed bug in cons_abspower.c handling infinity values in propagation
5873 - fixed bug in cons_and.c when a constraint was not correctly propagated which led to wrong dual-presolve reductions
5874 - fixed bug in cons_abspower: wrong infinity check when propagating bounds
5875
5876- Presolving:
5877 - fixed bug that the number aggregated variables were not counted in presol_inttobinary.c
5878 - fixed bug in presol_domcol: locks are now checked to see whether rounding was forbidden for a variable
5879
5880- Reader:
5881 - fixed bug in reader_gms.c w.r.t. writing nonlinear expressions with polynomials with constants
5882 - fixed bugs in parsing bounds from CIP-files, in reader_gms and AMPL interface
5883 - fixed bug when reading a mps formated file with a missing bound in the bound section
5884
5885- Constraints:
5886 - fixed bug in cons_bounddisjunction with satisfied literal of multi-aggregated variable
5887 - fixed bug in upgrade method of cons_soc
5888 - fixed issue with negated variables in cons_xor.c
5889 - fixed several asserts in cons_xor presolving
5890 - fixed bug in cons_xor.c calling method on null pointer row
5891 - fixed bug using a too hard comparison on the objective-infeasible-decision in constraint enforcement
5892 - fixed possible cycling in enforcement of nonlinear constraints due to too early removal of newly added cuts from LP
5893 - fixed bug wrongly removing constraints locally while counting
5894 - fixed bugs in cons_bivariate.c when the nonlinear function is not differentiable on the boundary of the domain
5895 - fixed bug in cons_indicator.c:SCIPmakeIndicatorFeasible() with handling fixed variables
5896 - fixed bug in cons_integral: check integrality of implicit integer variables when a solution is checked for feasibility
5897 - fixed bug in Undercover with `pseudo-`quadratic constraints
5898 - fixed bug with quadratic constraints not being upgraded
5899 - fixed bug in intervalarith.c: bivariate quad. equations may have been solved wrongly if second variable is unbounded
5900
5901- Separation:
5902 - fixed bug in sepa_zerohalf.c not copying the displays to the subscip, but still changing a display parameter there
5903 - fixed iteration limit determination in sepa_closecuts
5904 - fixed bug in sepa_closecuts: need to make sure that variable values of separation point satisfy bounds
5905 - fixed bugs in sepa_oddcylce: number of arcs have to be adjusted, handle implicit binary variables,
5906 fixed bug in heuristic separation method, fixed asserts
5907 - fixed wrong bound calculation in sepa_rapidlearning
5908
5909@section RN301 SCIP 3.0.1
5910*************************
5911
5912Features
5913--------
5914
5915- added delayed cutpool which only gets separated if the sepastore is empty after a separation round
5916- sepa_cgmip can now take the objective row into account
5917- added possibility to run clang compiler
5918- statistics now include output on number of solutions that respect objective limit
5919
5920Performance improvements
5921------------------------
5922
5923- also copying active tight cuts from the delayed cut pool when calling SCIPcopyCuts()
5924- sort genvbounds only when root node is finished; apply more often
5925
5926Examples and applications
5927-------------------------
5928
5929Interface changes
5930-----------------
5931
5932- when using an objective limit, heuristic characters are not displayed any longer for worse solutions
5933
5934### Deleted and changed API functions
5935
5936- fixed spelling in the method name SCIPgmlWriteClosing()
5937
5938### New API functions
5939
5940- SCIPgetNLimSolsFound() to get number of solutions that respect the objective limit
5941
5942Fixed bugs
5943----------
5944
5945- fixed issue with applying the effective root depth during the search
5946- fixed bug concerning usage of dualbound and lowerbound
5947- fixed bug trying to color probing nodes, which are not added to the vbc output anymore
5948- fixed bug in sorting template
5949- fixed bug leading to removing a ranged row parallel to the objective function, although one of the sides was still needed
5950- fixed a bug correcting the binvarssorted flag in cons_linear.c
5951- fixed bug in cons_varbound.c not resolving multi-aggregated variables
5952- relaxed assert in SCIPvarCh{Lb,Ub}{Global,Local} that new bound must be tighter to feastol
5953- fixed contra-intuitive behavior when using SCIP with objective limits and solution limit at the same time;
5954 SCIP now only stops when sufficiently many solutions better than the objective limit have been found
5955- fixed bug when adding binary implications with non-vartype binary variables
5956- fixed bug adding binary implications on binary variables with type != `SCIP_VARTYPE_BINARY`
5957- fixed bug concerning different tolerances for reached objective limit in case of pricing with fastmip
5958
5959- LP:
5960 - fixed bug which disabled iteration limit in SCIPlpSolveAndEval()
5961 - ensure consistency of LP bounds during OBBT diving, i.e., that lower <= upper holds exactly
5962 - set lpsolstat to `SCIP_LPSOLSTAT_NOTSOLVED` in SCIPchg{Lp,Dual}feastol()
5963 - use tighter dual feasibility tolerance for LPs solved during optimization-based bound tightening
5964 - fixed bug with unflushed LP arising from global bound changes in strong branching
5965
5966- Constraints:
5967 - fixed issue with deleting varbound constraints in case the bound change was not applied
5968 - fixed bugs in parsing dis-/conjunctive constraints
5969 - fixed bug with handling of empty logicor and bounddisjunction constraints
5970 - fixed issue in cumulative constraint and separation
5971 - fixed bug when sorting knapsack constraints with the same weights
5972 - fixed bug resulting in trying to delete an upgraded linear constraint a second time in exitpre callback
5973 - fixed minor bug in conjunctive constraint handler printing wrong constraint
5974 - fixed bug in disjunctive constraint handler when enforcing a constraint
5975 - fixed behaviour change of indicator constraint handler when solving another instance after solving one using the
5976 interactive shell
5977 - fixed several issues in cumulative constraint handler
5978 - fixed bug in cumulative constraint handler w.r.t. getting active variables
5979 - fixed bug in cumulative constraint handler concerning conflict analysis
5980
5981- LPI and Interfaces:
5982 - fixed bug in CppAD in connection with abspower constraints
5983 - fixed bug in CppAD when using signpower functions with expression pointers that do not fit into an unsigned int
5984 - better handling of generalized (Lagrangian) variable bounds that are not in the LPI
5985 - fixed wrong basis rstat values in CPLEX LPI
5986 - fixed bug with LP not being flushed after bound changes on columns that are not in the LPI
5987 - methods SCIPlpiIs{PrimalFeasible,DualFeasible,DualUnbounded}() in SoPlex LPi now check that the LP is not perturbed,
5988 which may happen when stopping due to iteration or time limit
5989 - fixed inconsistencies between methods SCIPlpiIs{PrimalFeasible,DualFeasible,Optimal,...} in SoPlex LPi
5990
5991- Propagation:
5992 - fixed bug when adding linear constraints with non active variables in solving process, during propagation this
5993 resulted in changing the row, which is not possible for unmodifiable constraints/locked rows
5994 - fixed small issue in pseudo objective propagator w.r.t. propagating the lower bound globally
5995 - fixed bug in cons_orbitope: in rare cases one cannot repropagate
5996 - fixed bug of wrong result code in propagation in prop_genvbound.c
5997
5998- Presolve:
5999 - fixed bug in copying nonlinear constraints during presolve (resulted
6000 in wrongly declaring instances as infeasible when using component presolve)
6001 - fixed bug in copying nonlinear constraints during presolve (nonlinear part was not copied)
6002
6003- Heuristics:
6004 - fixed wrong solving status (OPTIMAL) in case an unbounded solution was provided or found by heuristic before presolve
6005 - fixed bug in heur_subnlp running with tightened tolerances: sumepsilon must be tightened like feastol and epsilon
6006 - fixed bug in nlp diving heuristic for fractional variables with values slightly outside of their domain
6007
6008- Numerics:
6009 - fixed several numeric issues
6010 - fixed numerical bug in conflict.c relaxing bounds while keeping an infeasibility proof
6011 - fixed feasibility decision bug when replacing inactive variables by their active counterparts, which might change the
6012 redundancy status of a bounddisjunction constraint due to numerics
6013 - fixed numerical bug adding a relaxed bound for conflict analysis in cons_varbound
6014 - fixed numerical bug in conflict analysis of genvbounds propagator
6015
6016@section RN300 SCIP 3.0.0
6017*************************
6018
6019Features
6020--------
6021
6022- SCIPcomputeLPRelIntPoint() with normtype=`s` now uses homogenized LP for computing rel.int. point too and allow to
6023 set relaxrows = FALSE
6024- new column showing the pseudo objective value
6025- digraph structure added to misc.c and pub_misc.h that can be used to handle directed graphs, compute undirected
6026 components in the graph and sort these components (almost) topologically
6027- SCIP does now print an info message when the root LP could not be solved or is unbounded
6028- added counter and clock for SCIPcopy() calls
6029- correct initialization of steepest edge weights with SoPlex 1.6.0.4
6030- parameters can now be fixed, which means that their value cannot be changed unless they are unfixed, first;
6031 the fixing status of a parameter is copied to sub-SCIPs, which allows to ensure that certain parameters
6032 are also not changed when, e.g., heuristics change emphasis settings or also specific parameters
6033- automatic transfer of original solutions (e.g., provided by the user, from solution pool, after restart, from heuristic
6034 adding original solution during solve) to the transformed space (might fail due to, e.g., dual fixings)
6035- added possibility to use GUBs for lifting knapsack cuts (disabled)
6036- added pre- and post-conditions in doxygen documentation for all methods of scip.{c,h}
6037- added zeroobj heuristic that solves a copy of the problem without an objective function and with quite strict limits
6038 on the number of nodes and LP iterations
6039- complete reworking of the vbounds propagator: it now takes into account variable bounds, cliques and implications,
6040 stores bounds of variables which were changed and performs a forward propagation from these bounds, i.e., tries to
6041 derive new bounds for other variables; during propagation, bound changes are propagated in an (almost) topological order
6042
6043- Constraints:
6044 - full version of cumulative constraint handler
6045 - new constraint handler `superindicator` for indicator constraints with slack constraints of arbitrary type
6046 - implemented first clique lifting procedure in cons_setppc.c (by default is off)
6047 - the conjunction and disjunction constraint handlers are now able to parse their CIP output format
6048
6049- Memory:
6050 - better handling of memory limits, in particular for large problems
6051 - estimate memory consumption for sub-SCIP and do not copy them if close to memory limit
6052
6053- Presolve:
6054 - time for initpre and exitpre methods is now also measured in presolving time
6055 - added dual presolving for and-constraints difficult instances (no guarantees)
6056 - oneopt can now be called before presolving
6057 - added a presolving step in the disjunctive constraint handler, removing disjunction, where a sub-constraint was
6058 deleted, which means this sub-constraint is redundant, which again means it is always TRUE or will be enforced by
6059 another constraint
6060 - added new presolver convertinttobin, which converts bounded integer variables to their binary representation, e.g.
6061 for integer variable 0 <= x <= 10 the binary variables y0, y1, y2 and y3 are created, such that
6062 1 y0 + 2 y1 + 4 y2 + 8 y3 <= 10 and x = 1 y0 + 2 y1 + 4 y2 + 8 y3
6063 - added new presolver gateextraction, which tries to find and-gates/constraints which are linearized
6064 e.g. (x + y + z >= 1, x + y <= 1 and x + z <= 1 => x == AND(~y,~z)), in special cases it also detects set-partitioning
6065 constraints e.g. (x + y + z >= 1, x + y <= 1, x + z <= 1 and y + z <= 1 => x + y + z == 1));
6066 gate-extractor is also able to detect logicor constraints and set-packing/-partitioning constraints with the same
6067 variables, to upgrade these both constraints to a set-partitioning constraint
6068 - added new presolver components, that searches for independent components in the problem structure and solves
6069 these components as sub-SCIPs when they are small enough (per default <= 20 discrete variables, nodelimit of 10000)
6070 - added new presolver domcol that looks for dominated columns in a MIP and tries to fix them
6071
6072- Reader:
6073 - CNF reader now creates feasibility instances per default, usage of an objective has to be set by a parameter
6074 - added reader for MI(NL)Ps in OSiL (Optimization Services Instance Language) format
6075
6076- Statistic:
6077 - new statistics and new statistic output messages
6078 - number of presolving calls of plugins is counted and displayed in the statistics,
6079 can be accessed via SCIPpresolGetNCalls() and SCIP{prop/conshdlr}getNPresolCalls()
6080 - the statistics shows for a branching rule the number of calls for LP, extern and pseudo candidates
6081 - new switch `SCIP_STATISTIC` and new macros SCIPstatisticMessage(), SCIPstatisticPrintf() and SCIPstatistic() to output
6082 statistic and execute code lines which are only needed therefor. Works as `SCIP_DEBUG` and SCIPdebugXyz()
6083 - added statistics on the number of cuts/rows that have actually been applied to the lp for each constraint handler and separator;
6084 use SCIPcreate(Empty)RowCons() and SCIPcreate(Empty)RowSepa() to support the statistics.
6085
6086- NLP:
6087 - new propagators obbt and genvbounds for MINLP
6088 - new NLPI parameter `SCIP_NLPPAR_FASTFAIL` to enable convergence checks in NLP solver to stop early on seemingly
6089 - added nlpdiving heuristic that comprises several diving heuristics using an NLP relaxation
6090
6091Performance improvements
6092------------------------
6093
6094- improved scaling by choosing the smallest scaler
6095- if first root lp is solved and the optimality is rejected by SCIP, there won't be an unnecessary solving of the lp
6096 from scratch again
6097- several performance improvements for Pseudo-Boolean optimization, pseudo objective propagator
6098- streamlined initlp functions in cons_indicator, cons_sos1, cons_sos2 (add rows only if needed)
6099- improved time used for adding implications
6100- speed up in SCIPboolarrayExtend() in misc.c replacing a for loop with BMSmoveMemoryArray() call
6101- speed up in var.c changing some recursive calls into iterative calls and reducing the number of VARFIX event that are
6102 thrown for fixation, aggregation or multi-aggregations
6103- revised reduced cost propagator
6104- increased performance in SCIPcliqueAddVar(), adding a variable to a clique
6105- tighten primal and dual feasibility tolerances independently if they are not reached in LP solving
6106
6107- Probing:
6108 - if probing reached the end of all variables it will restart the probing cycle correctly
6109 - improved probing by ordering the variables differently and applying the one-branch before the zero-branch
6110
6111- Constraints:
6112 - improved scaling of linear constraints, linear constraints with integral variables will now be scale with
6113 1e+06/MAX(maximal absolute coefficient, 1.0) instead of 1e+03/MAX(maximal absolute coefficient, 1.0);
6114 if all coefficients are in absolute value equal they will be scaled by that
6115 - added clique presolving for and-constraints, which checks if two operands or one operand and the resultant are in a
6116 clique and then fixes the resultant to 0 and in the former case we can delete the and-constraint too
6117 - speed up in linear constraint handler replacing aggregated variables
6118 - when all nonlinearities have been fixed and the number of nonfixed variables is 1 in cons_nonlinear/cons_quadratic/
6119 cons_bivariate, handle it by a bound change instead of adding a linear constraint
6120
6121- Separation:
6122 - automatically turn off separation in sepa_oddcycle if it was too unsuccessful within the last calls
6123 - use faster Dijkstra variants in sepa_oddcycle
6124 - improved tcliquegraphAddImplicsVars() in sepa_clique.c to faster add possible variables
6125 - changed emphasis settings: knapsack disaggregation is now allowed in fast presolving, CG-MIP separator disabled in
6126 aggressive separation
6127
6128- Reader:
6129 - improved lp-, mps-, opb-reading time
6130 - speed up mps reader asking parameters only once
6131
6132- Heuristics:
6133 - added parameters mincoveredrel and mincoveredabs to heur_undercover to only run if problem is sufficiently nonlinear
6134 - improved intdiving heuristic by activating backtracking to a different fixing value
6135 - heur_undercover treats indicator constraints as nonlinear and fixes the binary variable for linearization
6136
6137Examples and applications
6138-------------------------
6139
6140- new examples for scheduling and usage of the callable library with nonlinear problems
6141- the error messages are not handled via the message handler anymore; per default the error message a written to stderr
6142
6143Interface changes
6144-----------------
6145
6146- introduced basic inclusion and creation methods to simplify usage of the SCIP library
6147- allowed to start diving mode even if LP is not flushed, not solved, or not solved to optimality
6148- changed the message handler system within SCIP heavily such that it is thread save
6149- the resolve propagation methods for the constraint handler and propagator getting a new parameter called relaxedbd;
6150 explaining/resolving this relaxed bound is sufficient
6151- default integer comparer SCIPsortCompInt() (see pub_misc.h)
6152
6153- LP interface:
6154 - SoPlex LPI supports setting of `SCIP_LPPAR_DUALFEASTOL` when using SoPlex version 1.6.0.5 and higher.
6155
6156- Problem:
6157 - Forbid problem modifications in `SCIP_STAGE_{INIT,EXIT}PRESOLVE` (see pre-conditions for corresponding methods in scip.h).
6158
6159- Miscellaneous:
6160 - New macro SCIPdebugPrintCons() to print constraint only if `SCIP_DEBUG` flag is set.
6161 - all objscip *.h file now use the default SCIP interface macros (this should avoid errors when changing the interface)
6162
6163### New and changed callbacks
6164
6165- Constraint Handler:
6166 - Added a propagation timing parameter `proptiming` to SCIP_DECL_CONSPROP(), giving the current timing at which
6167 this method is called (also to the corresponding c++ wrapper classes).
6168 - New optional callback methods in constraint handlers: `SCIP_DECL_CONSGETVARS` and `SCIP_DECL_CONSGETNVARS`.
6169 These callbacks, if implemented, should return an array of all variables and the number of all variables used
6170 by the given constraint, respectively. (This method might, e.g., be called by a presolver)
6171
6172- NLP Solver Interface:
6173 - New NLPI callback SCIP_DECL_NLPISETMESSAGEHDLR() to set message handler in NLP solver interfaces.
6174
6175- Propagator:
6176 - Added a propagation timing parameter `proptiming` to SCIP_DECL_PROPEXEC(), giving the current timing at which this method is
6177 called (also to the corresponding c++ wrapper classes).
6178
6179- Plugin management:
6180 - added `basic` inclusion methods which have only fundamental data of the plug-ins as arguments; added setter functions
6181 for all non-fundamental callbacks of the plug-ins; the plug-in types with basic inclusion functions are:
6182 readers, constraint handlers, conflict handlers, presolvers, propagators, heuristics, separators, relaxation handlers,
6183 branching rules, node selectors and pricers; these methods should make the usage easier, sparing out optional callbacks and
6184 parameters: e.g., SCIPincludeConshdlrBasic();
6185 - To extend the basic functionalities, there are setter method to add
6186 optional callbacks. For example SCIPsetConshdlrParse(), SCIPsetPropCopy() or SCIPsetHeurInitsol().
6187
6188- Constraint Handlers:
6189 - Added basic creation methods for all constraints types, e.g., SCIPcreateConsBasicLinear(); these methods should make the usage easier,
6190 sparing out optional callbacks and parameters.
6191
6192### Deleted and changed API functions
6193
6194- SCIPcomputeCoverUndercover() now has an additional parameter coverbd
6195- tcliqueMaxClique has an additional parameter to store the number of used branch-and-bound nodes
6196- the code in `src/dijkstra` and `src/xml` has been changed to (increasingly) conform to the SCIP coding style;
6197 all function (and variable) names have been changed (do not contain `_` anymore).
6198- renamed SCIPstairmap*Core() to SCIPstairmap*Stair()
6199
6200- Conflict Analysis:
6201 - Added parameter `relaxedbds` to conflict handler callback method SCIP_DECL_CONFLICTEXEC(). This array contains
6202 bounds which are sufficient to create a valid conflict
6203
6204- Constraint Handler:
6205 - Added a parameter `restart` to the SCIP_DECL_CONSEXITSOL() callback method, indicating whether this call was
6206 triggered by a restart.
6207 - Added a parameter `relaxedbd` to SCIP_DECL_CONSRESPROP() callback method. If explaining a given bound change
6208 (index), it is sufficient to explain the reason for reaching the `relaxedbd` value, see above
6209 - Removed parameters `isunbounded`, `isinfeasible` and `result` from SCIP_DECL_CONSINITPRE() and SCIP_DECL_CONSEXITPRE()
6210 callback methods. It is not allowed to determine unboundedness or infeasibility in these callbacks, anymore.
6211 - added a `SCIP_CONS*` parameter to SCIPcreateConsDisjunction() which can represent the linear relaxation of the whole
6212 disjunction constraint as a conjunction constraint, or `NULL`
6213 - remove problematic function cons_indicator:SCIPsetSlackVarIndicator()
6214 - Renamed SCIPgetCountedSparseSolutions() to SCIPgetCountedSparseSols() in cons_countsols.{c,h}.
6215
6216- Counting:
6217 - Changed the counting system within SCIP heavily. New method for `SCIP_SPARSESOL` usage, SCIPsparseSolCreate(),
6218 SCIPsparseSolFree(), SCIPsparseSolGetVars(), SCIPsparseSolGetNVars(), SCIPsparseSolGetLbs(), SCIPsparseSolGetUbs()
6219 in (pub_)misc.{c,h}.
6220
6221- Cuts and Separation:
6222 - removed `targetscip` parameter from SCIPconvertCutsToConss(), now this function can only convert cuts on one instance,
6223 otherwise use SCIPcopyCuts()
6224 - added `ncutsadded` parameter to SCIPcopyCuts() to be able to store the number of copied/converted cuts
6225 - New functions SCIPcreateEmptyRowCons(), SCIPcreateEmptyRowSepa(), SCIPcreateRowCons(), and SCIPcreateRowSepa() that allow
6226 to set the originating constraint handler or separator of a row respectively; this is, for instance, needed for statistics
6227 on the number of applied cuts. If rows are created outside a constraint handler or separator use SCIPcreateRowUnspec() and
6228 SCIPcreateEmptyRowUnspec(). The use of SCIPcreateEmptyRow() and SCIPcreateRow() is deprecated.
6229 - New functions SCIProwGetOrigintype(), SCIProwGetOriginCons(), and SCIProwGetOriginSepa() to obtain the originator
6230 that created a row.
6231
6232- LP:
6233 - new parameter numerics/lpfeastol for primal feasibility tolerance used in LP solver
6234 - SCIPcomputeLPRelIntPoint() takes two new arguments giving a time and iteration limit
6235 - SCIPcolGetStrongbranchLPAge(), SCIPgetVarStrongbranchLPAge(), SCIPgetNLPs(), SCIPgetNPrimalLPs(), SCIPgetNDualLPs(),
6236 SCIPgetNBarrierLPs(), SCIPgetNResolveLPs(), SCIPgetNPrimalResolveLPs(), SCIPgetNDualResolveLPs(), SCIPgetNNodeLPs(),
6237 SCIPgetNNodeInitLPs(), SCIPgetNDivingLPs(), SCIPgetNStrongbranchs(), SCIPgetNRootStrongbranchs() now return a longint
6238 instead of an integer
6239
6240- Message Handler and Printing:
6241 - New callback method SCIP_DECL_MESSAGEHDLRFREE() which is called when the message handler is freed.
6242 - The old callback method SCIP_DECL_MESSAGEERROR() was replaced by the callback method SCIP_DECL_ERRORPRINTING().
6243 - the follwing methods additionally need the SCIP pointer as parameter to make the output thread save:
6244 SCIPprintVersion(), SCIPsetMessagehdlr(), SCIPgetMessagehdlr() and SCIPwarningMessage()
6245 - the error printing method can be replaced using the method SCIPmessageSetErrorPrinting(); the default error message
6246 printing can be recoverd via SCIPmessageSetErrorPrintingDefault() (see pub_message.h)
6247 - Changed the message handler system within SCIP heavily such that it is thread-safe. SCIPcreateMessagehdlr() in
6248 scip.{c,h} was replaced by SCIPmessagehdlrCreate() in pub_message.h/message.c with a changed parameter list;
6249 see pub_message.h and type_message.h.
6250 - removed method SCIPcreateMesshdlr(), please use SCIPmessagehdlrCreate() (see pub_message.c)
6251 - removed method SCIPfreeMesshdlr(), please use SCIPmessagehdlrRelease() (see pub_message.c)
6252 - Error messages (SCIPerrorMessage()) are not handled via the message handler anymore; per default the error
6253 message is written to stderr.
6254 - the following methods need an additional message handler: SCIPdispLongint(), SCIPdispInt(), SCIPdispTime(), all message
6255 handler methods (see pub_message.h), SCIPhashtablePrintStatistics(), SCIPhashmapPrintStatistics(), SCIPlpiCreate()
6256 - SCIPprintCons() does not print termination symbol `;\n` anymore; if wanted, use SCIPinfoMessage() to print `;\n` manually
6257 - remove SCIPcolPrint() and SCIProwPrint(), please use SCIPprintCol() SCIPprintRow() see scip.h
6258 - method SCIPprintError() does not need the file stream anymore. The error is written via the error message callback.
6259
6260- Nonlinear expressions, relaxation, and solver interface:
6261 - Method SCIPexprtreeRemoveFixedVars() is not public anymore.
6262 - Renamed SCIPmarkNonlinearitiesPresent() to SCIPenableNLP()
6263 - Renamed SCIPhasNonlinearitiesPresent() to SCIPisNLPEnabled().
6264 - removed SCIPmarkContinuousNonlinearitiesPresent(),
6265 renamed SCIPhasContinuousNonlinearitiesPresent() to SCIPhasNLPContinuousNonlinearity() and allow call only during
6266 initsolve and solve,
6267
6268- Parameters:
6269 - Replaced SCIPparamSet*() by SCIPchg*Param()
6270 + replaced SCIPparamSetBool() by SCIPchgBoolParam()
6271 + replaced SCIPparamSetInt() by SCIPchgIntParam()
6272 + replaced SCIPparamSetLongint() by SCIPchgLongintParam()
6273 + replaced SCIPparamSetReal() by SCIPchgRealParam()
6274 + replaced SCIPparamSetChar() by SCIPchgCharParam()
6275 + replaced SCIPparamSetString() by SCIPchgStringParam()
6276
6277- Presolving:
6278 - Removed parameters `isunbounded`, `isinfeasible` and `result` from SCIP_DECL_PRESOLINITPRE() and
6279 SCIP_DECL_PRESOLSEXITPRE(). It is not allowed to determine unboundedness or infeasibility in these callbacks, anymore.
6280
6281- Propagator:
6282 - changed parameters of function SCIPpropagateCutoffboundVar() in prop_pseudoobj.{c,h}
6283 - Added a parameter `restart` to SCIP_DECL_PROPEXITSOL() callback method, indicating whether this call was triggered
6284 by a restart.
6285 - Added a parameter `relaxedbd` to SCIP_DECL_PROPRESPROP() callback method. If explaining a given bound change
6286 (index), it is sufficient to explain the reason for reaching the `relaxedbd` value.
6287 - Removed parameters `isunbounded`, `isinfeasible` and `result` from SCIP_DECL_PROPINITPRE() and
6288 SCIP_DECL_PROPEXITPRE() callback methods. It is not allowed to determined unboundedness or infeasibility in
6289 these callbacks, anymore.
6290
6291- Sort and Copy:
6292 - The methods SCIPsortedvecInsert*() have an additional parameter which can be used to receive the position where
6293 the new element was inserted, if this is not of interest a `NULL` pointer can be given
6294 - new parameter in SCIPcopyPlugins() to indicate whether the message handler from the source SCIP should be passed to the
6295 target SCIP (only the pointer is copied and the usage counter of the message handler is increased)
6296 - New parameter in SCIPcopy() to indicate whether the message handler from the source SCIP
6297 should be passed to the target SCIP (only the pointer is copied and the usage counter of the message handler is
6298 increased). In multi theaded enviroment this parameter needs to be set to FALSE.
6299
6300- Variable usage:
6301 - rename SCIPvarGetBestBound() to SCIPvarGetBestBoundLocal()
6302 - rename SCIPvarGetWorstBound() to SCIPvarGetWorstBoundLocal()
6303 - Method SCIPvarGetProbvarSum() is not public anymore, use SCIPgetProbvarSum() instead.
6304 - Replaced method SCIPvarGetRootRedcost() by SCIPvarGetBestRootRedcost().
6305
6306### New API functions
6307
6308- setup timer to all plugins and therefore SCIP<plugin-type>GetSetupTime() methods in all pub_plugin-type.h to ask
6309 for this time (, e.g. SCIPeventhdlrGetSetupTime() in pub_event.h)
6310- new GML(Graph Modeling Language) methods SCIPgmlWriteOpening(), SCIPgmlWriteCosing(), SCIPgmlWriteArc(), SCIPgmlWriteEdge(),
6311 SCIPgmlWriteNode() that write to a given GML file
6312- new LPI method SCIPlpiGetObjsen() to query objective sense
6313- SCIPpermuteIntArray() in pub_misc.h and misc.c for permuting an integer array
6314- SCIPcalcBinomCoef() in pub_misc.h and misc.c which calculates a binomial coefficient up to 33 over 16
6315- SCIPheurPassSolAddSol() in heur_trysol.c; solution which are passed via this method are just without any feasibility check
6316- SCIPgetGlobalPseudoObjval() which returns the global pseudo objective value which is all variables
6317 set to their best (w.r.t. the objective function) global bound
6318- SCIPhashGetKeyStandard() which returns the element itself as the key, SCIPhashKeyEqPtr(),
6319 SCIPhashKeyValPtr() which do the hash-comparison/-conversion on a pointer in pub_misc.h
6320- SCIPhashtableClear() which removes all elements of a hash table
6321- SCIPisUpdateUnreliable() to check whether an iteratively updated value should be recomputed from scratch
6322 (e.g., for activities; uses new parameter `misc/num_recompfac`)
6323- SCIPisHugeValue() to check whether a value is huge and should be handled separately from other values
6324 (e.g., in activity computations) and SCIPgetHugeValue() to get the smallest value counting as huge
6325- SCIPfixParam() and SCIPunfixParam() to fix and unfix a parameter, respectively;
6326 the fixing status of a parameter can be requested by SCIPparamIsFixed();
6327- SCIPsetBasePointClosecuts() to set the base point for close cut separation
6328- SCIPchgCutoffboundDive() to change the cutoffbound in diving mode
6329- SCIPupdateCutoffbound() which can be used to pass a cutoff bound
6330
6331- Presolving:
6332 - SCIPpropIsPresolDelayed() which return if a propagator is delay during presolving
6333 - Added method SCIPisPresolveFinished() which returns whether the presolving process would be stopped after the
6334 current presolving round, given no further reductions will be found, can be used to ensure that a presolver is called very late
6335
6336- Memory:
6337 - added forgotten implementation of SCIPfreeMemorySize(), SCIPfreeMemorySizeNull() in scip.h and BMSfreeMemorySize(),
6338 BMSfreeMemorySizeNull() in memory.h
6339 - SCIPmemccpy() in pub_misc.h and misc.c which copies either a specified number of charcters of a source
6340 string to a destination string or until it hits a stoping character
6341 - BMSmoveMemory(), BMSmoveMemoryArray(), BMSmoveMemorySize() and corresponding BMSmoveMemory_call() in
6342 memory.{h,c} too move memory elements
6343
6344- Conflict Analysis:
6345 - SCIPisConflictAnalysisApplicable() which return FALSE is the conflict will not runs; can be used
6346 to avoid unnecessary initialization of the conflict analysis
6347 - SCIPaddConflictRelaxedLb(), SCIPaddConflictRelaxedUb() and SCIPaddConflictRelaxedBd(); these methods
6348 can be used to give for a bound change which is part of an explanation a relaxed bound; this means the relaxed bound
6349 is already efficient to be part of a valid explanation
6350 - SCIPisConflictVarUsed() returns TRUE if the given bound change is already part of the conflict set;
6351 that is the bound change is redundant;
6352 - SCIPgetConflictVarLb() and SCIPgetConflictVarUb() returning the lower/upper bound of the given
6353 variable within the current active conflict set
6354
6355- Variable usage:
6356 - SCIPvarsGetProbvar() in pub_var.h and var.c, which returns for a given array of variables the active, fixed
6357 or multiaggregated representation
6358 - SCIPgetActiveVars() in scip.{h,c}, which returns for a given array of variables the active counterparts
6359 - SCIPgetNObjVars() which returns the number of variables which have a non-zero objective coefficient
6360 - SCIPenableVarHistory() and SCIPdisableVarHistory() which can be used to turn off and on the collection
6361 of variables statistics which is used for example for branching
6362 - SCIPbranchVarHole() which branches a variable w.r.t. a given domain hole
6363 - SCIPvarGetAggregatedObj() which computes for a (not active) variable the corresponding objective value
6364 - SCIPsolIsOriginal() that returns whether a solution is defined on the original variables
6365 - SCIPgetVarImplRedcost() which returns the implied reduced costs
6366 - SCIPvarGetBestRootSol(), SCIPvarGetBestRootRedcost(), SCIPvarGetBestRootLPObjval() which return the best
6367 combination for a variable w.r.t. root solution value, root LP objective value and root reduced cost
6368 - SCIPhaveVarsCommonClique() in scip.{h,c}, to check for common clique information on two given variables
6369 - added basic creation methods SCIPcreateVarBasic() and SCIPcreateProbBasic() and setter functions for
6370 non-fundamental callbacks of variables and problems.
6371 - added new methods SCIPvarGetBestBoundGlobal() and SCIPvarGetWorstBoundGlobal().
6372
6373- Constraint Handler:
6374 - added public wrapper functions for calling constraint handler callback methods for a single constraint:
6375 SCIPactiveCons(), SCIPdeactiveCons(), SCIPinitlpCons(), SCIPsepalpCons(), SCIPsepasolCons(), SCIPpropCons(),
6376 SCIPrespropCons(), SCIPenfopsCons(), SCIPenfolpCons()
6377 - added basic creation methods for all constraint handlers
6378 - SCIPchgCapacityKnapsack() which can be used to change the capacity of a knapsack constraint
6379 - SCIPconsIsAdded() which returns whether a constraint was already to a SCIP instance
6380 - SCIPconshdlrGetNCutsApplied() in pub_cons.h to get the number of cuts applied to the lp
6381 - SCIPconshdlrIncNAppliedCuts() in cons.h to increase the number of applied cuts (used by sepastore.c)
6382 - SCIPchgVarName() and SCIPchgConsName() which can be used to change name of variables and
6383 constraints in problem creation stage
6384 - New methods SCIPgetConsVars() and SCIPgetConsNVars() which return for a given constraint the involved variables and
6385 the number of variables if the corresponding constraint supports this (optional) callbacks
6386 (corresponding callbacks need to be implemented, see above)
6387
6388- Message Handler:
6389 - SCIPmessagehdlrCapture() which captures a given message handler (increases number of uses)
6390 - SCIPmessagehdlrRelease() which releases and possibly frees a given message handler (decreases number of uses)
6391 - SCIPsetMessagehdlrLogfile() which can be used to write into a log file
6392 - SCIPsetMessagehdlrQuiet() which can be used to turn the screen output on and off
6393
6394### Command line interface
6395
6396- in the interactive shell, parameters can be fixed and unfixed with `fix` (instead of `set`), e.g., `fix heuristics rens freq TRUE`;
6397- new shell command `change minuc` to minimize the number of unsatisfied constraints
6398
6399### Interfaces to external software
6400
6401- beta-version of a MATLAB interface can be found under interfaces/matlab
6402- beta-version of a AMPL interface can be found under interfaces/ampl
6403
6404### Changed parameters
6405
6406- `branching/fullstrong/reevalage` changed from an integer to a longint parameter
6407
6408- Removed parameters:
6409 - `separating/closecuts/separootonly`
6410 - `constraints/quadratic/defaultbound`
6411 - `separating/cgmip/nodelimit`
6412
6413### New parameters
6414
6415- `constraints/%s/timingmask` for changing the timingmask for calling the propagtion method of all constraint plugins
6416- `constraints/and/dualpresolving` by default set to TRUE, enabling dual-presolving on and-constraints
6417- `constraints/indicator/{sepacouplingcuts,sepacouplinglocal}` to enable separation of (local) cuts
6418- `constraints/indicator/{maxsepacuts,maxsepacutsroot}` to restrict the number of separated cuts
6419- `constraints/indicator/dualreductions` to enable dual presolving/propagation steps
6420- `constraints/setppc/cliquelifting`, `constraints/setppc/addvariablesascliques`,
6421 `constraints/setppc/cliqueshrinking`, first for enabling/disabling the clique lifting algorithm in cons_setppc.c,
6422 second parameter is for trying to create extra clique constraints in lifting algorithm, third parameter is for trying
6423 to decrease the number of variable in a clique constraint in the lifting algorithm
6424- `limits/totalnodes` that allows to stop at the correct node if a restart occurred; therefore the new
6425 `SCIP_STATUS_TOTALNODELIMIT` is added
6426- `lp/{rootiterlim,iterlim}` to set a limit on the LP iterations spend in the initial root LP and each
6427 LP resolve, respectively
6428- `misc/transorigsols` by default set to TRUE, that switches whether SCIP tries to transfer original
6429 solutions into the transformed space (in initsol and if a heuristic adds an original solution during solving)
6430- `numerics/hugeval` that defines the smalles value counting as huge (see new method SCIPisHugeValue())
6431- `numerics/recompfac` which denotes the factor, by which the absolute of an iteratively updated value has
6432 to be decreased in order to recompute the value from scratch
6433- `presolving/convertinttobin/maxdomainsize` by default is set to `SCIP_LONGINT_MAX`, which deternmines
6434 the domainsize for which integers are converted to their binary representation
6435- `presolving/convertinttobin/onlypoweroftwo` by default is set to FALSE, that parameter allows you to
6436 only convert integer variables with a domainsize of 2^p-1 to their binary representation
6437- `presolving/convertinttobin/samelocksinbothdirections` by default is set to FALSE, that parameter allows
6438 you to convert only integer variables to their binary representation, which have the same amount of up- and downlocks
6439- `presolving/gateextraction/sorting` by default is set to 1, that parameter determines if you want to try
6440 to extract big-gates(-1) or small-gates(1) at first by ordering bigger/smaller logicor constraint up front, or use
6441 them as they are (0)
6442- `presolving/gateextraction/onlysetpart` by default is set to FALSE, that parameter allows you to
6443 only extract set-partitioning and no and-constraints
6444- `presolving/gateextraction/searchequations` by default is set to TRUE, that parameter allows you to
6445 search for logicor constraints and set-packing/-partitioning constraints with same variables
6446- `propagating/%s/timingmask` for changing the timingmask for calling the propagtion method of all propagator plugins
6447- `propagating/probing/maxdepth` to set the maximal depth until the probing propagation is executed
6448- `reading/cnfreader/useobj` to state whether an artificial objective, depending on the number of clauses
6449 a variable appears in, should be used, by default set to FALSE, old default behavior of reader corresponds to TRUE
6450- `separating/cgmip/{minnodelimit,maxnodelimit}` to determine node limit.
6451- `separating/closecuts/maxlpiterfactor` for iteration limit in relative interior point computation
6452- `separating/oddcycle/maxunsucessfull` to automatically turn off separation
6453- `oncepernode` in Rounding and Simple Rounding heuristic
6454
6455### Data structures
6456
6457- new data structure for binary trees (`SCIP_BT` and `SCIP_BTNODE` in pub_misc.h)
6458- renamed data structure `SCIP_STAIRMAP` to `SCIP_PROFILE`
6459- added new stages `SCIP_STAGE_INITPRESOLVE`, `SCIP_STAGE_EXITPRESOLVE` and `SCIP_STAGE_FREE`; renamed `SCIP_STAGE_FREESOLVE`
6460 to `SCIP_STAGE_EXITSOLVE`
6461- Changed the counting system within SCIP heavily. `SPARSESOLUTION` was renamed to `SCIP_SPARSESOL` and moved
6462 from cons_countsols.h to struct_misc.h
6463
6464Testing
6465-------
6466
6467- the check script now recognizes MIQCP and MINLP instances
6468- make test now also checks instances in wbo, cnf, osil and fzn format
6469- renamed parameter SCRDIR of `make testgams` to CLIENTTMPDIR and changed its default to `/tmp`
6470
6471Build system
6472------------
6473
6474### Makefile
6475
6476- CppAD source code is now distributed with SCIP (`src/cppad`), so that `lib/cppad` is not used anymore;
6477 the default for EXPRINT has changed from none to cppad
6478
6479Fixed bugs
6480----------
6481
6482- fixed bug with strong branching with the LP status for conflict analysis
6483- fixed bug w.r.t. adding a value to the objective offset of the transformed problem
6484- fixed wrong assert in feasibility pump stage 3
6485- fixed bug in solve.c, applied bounding for the initial lp was only done if root-lp-solution was valid but another
6486 solution could also have been added
6487- primal solutions with infinite objective value are now automatically discarded
6488- all plugins that solve sub-SCIPs now do not stop the whole solution process if there has been an error
6489- fixed bug in cip reader, wrong use of SCIPstrtok()
6490
6491- Variables:
6492 - fixed bug in shiftandpropagate w.r.t. SCIPconstructLP() which can have the side effect that variables are created
6493 - method SCIPvarGetProbvarSum() (and thus also SCIPgetProbvarSum()) returns +/-infinity if the variable resolves to a
6494 variable fixed to +/-infinity (depending on the sign of the scalar) but does not multiply with the scalar, anymore
6495 - better handling of infinite solution values for aggregated and negated variables
6496 - fixed bug that disabled multi-aggregation of two integer or implicit integer variables
6497 - fixed bug in sol.c with requesting values of transformed variables in original solution; previously this had only
6498 been handled in SCIPgetSolVal(), now the handling has been moved to SCIPsolGetVal()
6499 - fixed several bugs writing an mps file in the reader_mps.c, e.g. writing fixed variables which are not (yet) removed
6500 and writing integer variables even with an objective value of 0, if they only exist in non-linear constraints
6501
6502- Separation:
6503 - fixed minor bugs with respect to counting generated and lifted cuts in sepa_oddcycle
6504 - fixed bug in sepa_clique.c, could not handle only empty cliques, that were not removed
6505
6506- Heuristics:
6507 - fixed potential bugs in shiftandpropagate heuristic concerning the transformation update of a variable with free status
6508 - fixed bug in heur_zirounding with computation of up/downslacks
6509 - fixed bug in mutation heuristic with unnecessary aborts due to a wrong memory limit
6510 - fixed potential bug in fix-and-infer heuristic with variables being fixed to infinite value
6511 - fixed bug in diving heuristics with variables being fixed to values outside their domain
6512 - fixed bug in simple rounding heuristic with column generation for variables with strictly positive lower bound
6513 - made Octane heuristic numerically more stable to avoid asserts being caused by cancellation
6514 - fixed bug in mutation heuristic with variables being fixed to infinite values
6515 - do not run heur_shiftandpropagate if there is no LP
6516
6517- LP Interface:
6518 - fixed bug in Cplex LPI: after running simplex, solisbasic flag was always true, which might be wrong if Cplex hit a
6519 time limit
6520 - fixed bug in SCIP probing mode with cleared LPI state but solved LP
6521 - fixed assert with `LPI=none` (need to count rows/cols in lpi_none)
6522 - fixed bug in SoPlex LPI where objective sense was not correct after reading LP from file in SCIPlpiReadLP()
6523
6524- Constraints:
6525 - fixed bug in scip.c adding a constraint in SCIPgetConsCopy() to the constraint hashmap
6526 - fixed bug in cons_linear w.r.t recalculation of unreliable activities
6527 - fixed bug in cons_linear concerning huge activity values: besides infinite contributions, we now also treat huge
6528 contributions separately, count their occurences in a constraint and provide a relaxed activity value
6529 - fixed bug in cons_xor.c parsing a constraint
6530 - fixed count of propagations in cons_indicator and only try to propagate if variables are not yet fixed
6531 - fixed some bugs in cons_disjunction.c (wrong assert, forgotten deletion of constraint, wrong SCIPreleaseCons() call)
6532
6533Miscellaneous
6534-------------
6535
6536- first release of GCG, a generic branch-cut-and-price solver built on top of SCIP
6537- first release of UG, a framework for solving mixed integer programs, mixed integer
6538 nonlinear programs and constraint integer programs in parallel
6539- new SCIP T-shirts
6540- renamed ZIB Optimization Suite to SCIP Optimization Suite
6541
6542@page RN2_1 Release notes for SCIP 2.1
6543
6544@section RN212 SCIP 2.1.2
6545*************************
6546
6547Performance improvements
6548------------------------
6549
6550- fixed performance issue in debug mode, where SCIPvarGetLPSol_rec() calculated a value to often, which in the end lead
6551 to exponential growth in running time
6552- force cuts from linearizations of convex constraint in NLP relax solution into LP, thus allowing faster proving of
6553 optimality for convex NLPs
6554
6555Fixed bugs
6556----------
6557
6558- fixed bug in varAddTransitiveImplic() in var.c, when adding implications on special aggregated, namely negated, variables
6559- fixed issue if a primal solution leads to a cutoff of the current focus node
6560- fix compilation issues with zlib 1.2.6
6561- fixed bug in SCIPsolveKnapsackExactly(), trying to allocate too much memory which led to an overflow and later to a segmentation fault
6562- fixed bug in sepa_rapidlearning, carrying on the optimization process, when already solved
6563
6564- Heuristics:
6565 - fixed bug in heur_undercover.c, where a variable with fixed bounds but not of status `SCIP_VARSTATUS_FIXED` was wrongly handled
6566 - fixed bug in heur_oneopt.c which forgot to check LP rows if local rows are present
6567
6568- Constraints:
6569 - fixed bug in SCIPsolveKnapsackExactly()
6570 - fixed bug in cons_quadratic where bounds on activity of quadratic term were not always invalidated when quadratic variables were removed
6571 - fixed bug in cons.c, where after a restart the arrays for all initial constraints were corrected in the initsol process
6572 instead of the initpre process, this was to late because you might change the status in presolving which lead to an assert()
6573 - fixed bug in NLP representation of abspower constraints handling (x+a)^2 with nonzero a
6574 - fixed bug parsing an and-constraint in cip format
6575 - fixed bug in cons_setppc, did not handle new constraints with inactive variables
6576 - fixed bug in cons_xor.c which did not copy the artificial integer variable (used for the lp relaxation)
6577
6578@section RN211 SCIP 2.1.1
6579*************************
6580
6581Features
6582--------
6583
6584- the pseudo objective propagator can be forced to propagate if active pricers are present; this can be done
6585 if for all (known or unknown) variables follows that: they have positive (negative) objective coefficient
6586 and the global lower (upper) bound is zero.
6587
6588Performance improvements
6589------------------------
6590
6591- improvements in undercover heuristic
6592- improve SCIPintervalSolveBivariateQuadExpressionAllScalar() for ax=0 case if x has 0 in the interval for the linear coef.
6593- better domain propagation for quadratic constraints that consist of `non-overlapping` bilinear terms only
6594- ensure that a fixing of a variable in an abspower constraint is propagated to a fixing of the other variable
6595- improvements in undercover heuristic, e.g., bound disjunction constraints are considered when setting up the covering problem
6596
6597Interface changes
6598-----------------
6599
6600### Changed parameters
6601
6602- changed parameter `propagating/pseudoobj/maxcands` to `propagating/pseudoobj/minuseless` (see prop_pseudoobj.c)
6603 due to revision of the pseudo objective propagator
6604
6605### New parameters
6606
6607- added parameters `heuristics/undercover/coverbd` and `heuristics/undercover/fixingorder`
6608
6609Fixed bugs
6610----------
6611
6612- fixed numeric issue in aggregations
6613- fixed pseudo cost computation
6614- fixed bug with setting type of slack variables to be implicitly integral
6615- fixed bug when copying problem data in c++ case returned with the result `SCIP_DIDNOTRUN`
6616- fixed computation of counter which state the changes since the last call of a presolver
6617- fixed handling of unbounded solutions, including double-checking their feasibility and that the primal ray is a
6618 valid unboundedness proof and reoptimizing the LP with modified settings if the solution is not feasible
6619- fixed compilation issues with negate() function in intervalarith.c on exotic platforms
6620- fixed bug in SCIPsortedvecDelPos...() templates
6621- pseudo objective propagator does not propagate it active pricers are present
6622- fixed bug in heur_shiftandpropagate.c concerning the treatment of unbounded variables
6623- workaround for trying to add variable bounds with to small coefficients
6624
6625- Reading and Writing:
6626 - gams writer now also substitutes $-sign from variable/equation names
6627 - fixed bug in reader_mps.c: INTEND marker is now also written, if COLUMNS section ends with non-continous variables
6628 - fixed bug in flatzinc reader w.r.t. boolean expressions
6629
6630- Constraints:
6631 - fixed constraint flags evaluation within the ZIMPL reader (reader_zpl.c)
6632 - fixed bug in SCIPmakeIndicatorFeasible() in cons_indicator.c
6633 - fixed bug with conflict clause modification in cons_indicator
6634 - fixed bug in cons_bounddisjunction with uninitialized return values
6635 - fixed bug in cons_orbitope with calling conflict analysis
6636 - fixed bug in nlpi_oracle w.r.t. changing linear coefs in a NLP constraint
6637
6638@section RN210 SCIP 2.1.0
6639*************************
6640
6641Features
6642--------
6643
6644- New original solution storage capability, which allows transfering solutions between SCIP runs
6645- SCIP-CPX is now threadsafe
6646- comparison of solutions now also works for original solutions
6647- can now compute the relative interior point of the current LP
6648- interval arithmetics for power, log, exp, bivariate quadratic expressions should be rounding safe now
6649- LP iterations in resolving calls can now be limited w.r.t. the average number of LP iterations in previous calls
6650 (after the root node); this is currently only done for the initial LP solve at a node and the corresponding parameter
6651 resolveiterfac is set to -1 (no limit) per default
6652- it is now possible in `SCIP_STAGE_TRANSFORMED` to call SCIPaddVarLocks() (i.e. to lock variables in initialization methods)
6653- changed computation of optimality gap which is now done in the same way as described in the MIPLIB 2010 paper: the gap
6654 is 0, if primalbound (pb) and dualbound (db) are equal (within tolerances), it is infinity if pb and db have opposite
6655 signs and (this changed), if both have the same sign, the difference between pb and db is devided by the minimum of
6656 the absolute values of pb and db (instead of always the dual bound)
6657- functionality to use the bound flipping ratio test of SoPlex is available (requires at least version 1.5.0.7)
6658- there exists now a solution candidate store for the original problem; during transformation these solutions are tried;
6659 during free the transformed problem the best feasible solution of the transformed problem are copied to the solution
6660 candidate store of the original problem; this useful if you solve several problems iteratively, solutions get now
6661 carried over automatically.
6662- reworked concept of lazy bounds: they can now also be used for problems where constraints and objective together
6663 ensure the bounds; to allow this also for diving heuristics that might change the objective and thus destroy this
6664 property, lazy bounds are explicitly put into the LP during diving and removed afterwards
6665- `SCIP_HASHMAP` now works also without block memory
6666- The variable deletion event is now a variable specific event and not global, anymore.
6667- All timing flags are now defined type_timing.h.
6668- all C template files are now called <plugintype>_xyz.{c,h} instead of <plugintype>_xxx.{c,h}
6669
6670- Separators and Cuts:
6671 - reorganized computation of scores in cut filtering: instead of the computation at the time of addition, scores are now
6672 only computed w.r.t. the current LP solution and when cut filtering is performed; one can now fill the cut storage
6673 with cuts that were separated for different solutions
6674 - New separator for close cuts and a new function to compute relative interior points of the LP
6675 - added first version of sepa_closecuts.{c,h} to separate cuts w.r.t. a point that is closer to the integral polyhedron
6676
6677- Constraints:
6678 - implement possibility to force a restart in cons_indicator if enough indicator variables have been fixed
6679 - the xor constraint handler can now parse its constraints
6680 - the bounddisjunction constraint handler can now parse its constraints
6681 - the knapsack, setppc and soc constraint handler can now parse their constraints
6682 - the varbound constraint handler can now parse its constraints
6683 - added beta version of variable deletion: for branch-and-price application, variables can now be completely deleted
6684 from the problem; variables that are deletable have to be marked with SCIPvarMarkDeletable(), constraint handlers can
6685 implement the new `SCIP_DECL_DELVARS` callback that should remove variables from the constraints; at the moment, only
6686 the linear, the setppc and the knapsack constraint handler support this callback; furthermore, when using this
6687 feature, all used plugins have to capture and release variables they store in their data, this is currently only done
6688 for the aforementioned constraint handlers as well as the and, the varbound and the logicor constraint handler; for
6689 more details about this feature, see the FAQ
6690 - added pseudoboolean constraint handler (cons_pseudoboolean.{c,h})
6691 - added first version of cons_disjunction.{c,h} which allows a disjunction of constraints
6692 - added constraint handler for (absolute) power constraints (cons_abspower.{c,h}) to handle equations like z = sign(x)abs(x)^n, n > 1
6693
6694- Heuristics:
6695 - new heuristic vbounds which use the variables lower and upper bounds to fix variable and performs a neighborhood search
6696 - added vbound heuristic (heur_vbounds.{c,h})
6697 - added clique heuristic (heur_clique.{c,h})
6698
6699- Reading and Writing:
6700 - added writing for wbo files
6701 - added writing for pip files (linear, quadratic, polynomial nonlinear, polynomial abspower, polynomial bivariate, and
6702 and constraints)
6703 - CIP format variable characters defined, e.g. `SCIP_VARTYPE_INTEGER_CHAR`
6704 - Improved support for wbo format for weighted PBO problems, IBM's xml-solution
6705 format and pip and zimpl format for polynomial mixed-integer programs
6706 - New reader for (standard) bounds on variables
6707 - Extended reader for CIP models to handle various new constraints, including all types of linear constraints
6708 - flatzinc reader is now capable to read cumulative constraints
6709 - changed opb(/wbo) reader which now creates pseudoboolean constraints instead of linear- and and-constraints, only a
6710 non-linear objective will create and-constraints inside the reader and while reading a wbo file the topcost constraint
6711 is created as well
6712 - added clock for determine the time for reading
6713 - added reader for variable bounds (reader_bnd.{c,h})
6714 - Removed method SCIPreadSol(); call solution reading via SCIPreadProb() which calls the solution reader for .sol files.
6715
6716- Nonlinear:
6717 - Major extensions for nonlinear CIP, new option for n-ary branching on nonlinear variables (within pseudocost branching rule)
6718 - added BETA version of constraint handler for nonlinear constraints (cons_nonlinear.{c,h}) to handle nonlinear
6719 equations given by algebraic expressions using operands like addition, multiplication, power, exp, log, bivariate
6720 nonlinear constraints; currently no trigonometric functions
6721 - added BETA version of constraint handler for bivariate nonlinear constraints (cons_bivariate.{c,h}) to compute tight
6722 estimators for 1-convex and convex-concave bivariate nonlinear functions (given as expression tree)
6723 - the gams writer can now write nonlinear, abspower and bivariate constraints
6724 - Extended writer for GAMS and pip format to write more types of nonlinear constraints
6725 - the pip and zimpl reader now create nonlinear constraints for polynomials of degree > 2
6726
6727- Presolving:
6728 - new dual presolving methods in cons_setppc and cons_logicor
6729 - new presolving step `removeConstraintsDueToNegCliques` in locigor constraint handler which updates logicor constraints
6730 to setppc constraints if a negated clique inside this constraint exist, by default is off
6731 - new presolving step in cons_knapsack (detectRedundantVars, deleteRedundantVars) which determines redundant variables
6732 in knapsack constraint with or without using clique information
6733 - cons_logicor is now able to replace all aggregated variables in presolving by there active or negation of an active
6734 variable counterpart
6735 - prop_pseudoobj is now working in presolving as well
6736 - implement presolving in exitpre() in cons_orbitope and cons_indicator
6737
6738- Propagators:
6739 - added counter for number calls and timing for resolve propagation calls for constraint handler and propagators
6740 - Propagators are now also called in node presolving
6741 - the probing presolver presol_probing.{c.h} is now a propagator prop_probing.{c,h}, all corresponding parameters moved as well
6742 - the redcost separator sepa_redcost.{c.h} is now a propagator prop_redcost.{c,h}, all corresponding parameters moved as well
6743 - outsourced propAndSolve() method in solve.c which calls domain propagation and solving of the lp and relaxation
6744
6745- Statistic:
6746 - solutions which are given by the user from the outside are now marked by `#` in the output
6747 - the `Solving Time` is now spitted into presolving, solving and reading time
6748 - Presolvers section has new column `AddCons` which states the number of added constraint
6749 - Constraints section has new column named \#ResProp which show the number of resolve propagation calls of certain
6750 constraint handler
6751 - Constraint Timing section has a new column \#ResProp which states the time spend in resolve propagation method of the
6752 constraint handler
6753 - improved output of propagators in display statistics
6754 - new section `Propagator Timing` which shows the time spend in different callbacks of the propagator
6755 - rearranged first two columns of Propagators section; \#Propagate and \#ResProp stating the number of call for
6756 propagation and resolve propagation; the Time column is moved into the new section Propagator Timings
6757 - Constraints section has new column named `MaxNumber` which the maximum number of active constraint of a certain
6758 constraint handler
6759 - added two columns `Time-0-It` and `Calls-0-It` in the LP section which states the number of LP call and time spend for
6760 solving LPs with zero iterations (only refactorization)
6761 - The display of statistics for presolvers, propagators, constraints and LP solving has changed.
6762
6763Performance improvements
6764------------------------
6765
6766- Reorganized filtering process of separation storage (allows adding cuts for different solutions)
6767- Improved presolving for various constraint handlers
6768- Improved propagation methods for variable bound constraints
6769- Improved performance for quadratic constraints
6770- performance improvements in prop_vbounds
6771- child selection rules now get also applied when the relaxation value is equal to the bound changed in branching
6772- added dual reduction to cons_cumulative.c
6773- for continuous variables, the pseudo costs update and the pscost branching rule now use the same strategies for
6774 updating the pseudo costs and estimating the improvement in the LP bound
6775- only perform probing if the variables are locked
6776- performance and memory consumption improvements in xmlparse.c
6777- Improved knapsack cover cuts
6778- avoid very long separation times of LEWIs in cons_knapsack for very large minimal covers
6779- used SCIPallocMemoryArray() instead of SCIPallocBlockMemoryArray() which leads to fewer memory consumption in
6780 getLiftingSequence() in cons_knapsack, also improved cache use bei using an extra array instead blockmemory chunks
6781- switched FASTMIP from 1 to 2 for CPLEX and changed default pricing rule back to steepest edge pricing instead of
6782 quickstart steepest edge pricing
6783- made sorting method more robust
6784- LNS heuristics now use SCIPcopy() by default
6785- considering inactive variables in undercover heuristic; limiting effort for solving covering problem
6786- if during probing mode the LP relaxation is solved from scratch, e.g., when calling the shiftandpropagate heuristic
6787 before root node solving, then we clear the resulting LP state, since it might be a bad starting basis for the next
6788 solve of the LP relaxation (controlled by new parameter `lp/clearinitialprobinglp`)
6789- included LP simplifier into SoPlex LP interface, applied when solving from scratch (lpi_spx.cpp)
6790- new presolving steps in varbound constraint handler, tightening bounds, coefficients, sides and pairwise presolving
6791
6792Interface changes
6793-----------------
6794
6795- Miscellaneous:
6796 - The emphasis setting types now distinguish between plugin-type specific parameter settings (default, aggressive, fast, off),
6797 which are changed by SCIPsetHeuristics/Presolving/Separating(), and global emphasis settings (default, cpsolver, easycip,
6798 feasibility, hardlp, optimality, counter), which can be set using SCIPsetEmphasis().
6799
6800### New and changed callbacks
6801
6802- added propagator timings `SCIP_PROPTIMING_BEFORELP`, `SCIP_PROPTIMING_DURINGLPLOOP` and `SCIP_PROPTIMING_AFTERLPLOOP` for
6803 all propagation callbacks (see propagators and constraint handlers) which lead to calling the propagation methods of a
6804 propagator before the lp is solved, during the lp loop and after the lp solving loop
6805
6806- Conflict Analysis:
6807 - Added parameter `separate` to conflict handler callback method SCIP_DECL_CONFLICTEXEC() that defines whether the conflict
6808 constraint should be separated or not.
6809
6810- Constraint Handler:
6811 - The new constraint handler callback SCIP_DECL_CONSDELVARS() is called after variables were marked for deletion.
6812 This method is optional and only of interest if you are using SCIP as a branch-and-price framework. That means,
6813 you are generating new variables during the search. If you are not doing that just define the function pointer
6814 to be `NULL`.
6815 If this method gets implemented you should iterate over all constraints of the constraint handler and delete all
6816 variables that were marked for deletion by SCIPdelVar().
6817
6818- NLP Solver Interface:
6819 - The callbacks SCIP_DECL_NLPIGETSOLUTION() and SCIP_DECL_NLPISETINITIALGUESS() got new parameters to get/set values of
6820 dual variables.
6821 - The callback SCIP_DECL_NLPICOPY() now passes the block memory of the target SCIP as an additional parameter.
6822
6823- Presolving:
6824 - New parameters `isunbounded` and `isinfeasible` for presolving initialization (SCIP_DECL_CONSINITPRE(),
6825 SCIP_DECL_PRESOLINITPRE(), SCIP_DECL_PROPINITPRE()) and presolving deinitialization (SCIP_DECL_CONSEXITPRE(),
6826 SCIP_DECL_PRESOLEXITPRE(), SCIP_DECL_PROPEXITPRE()) callbacks of presolvers,
6827 constraint handlers and propagators, telling the callback whether the problem was already declared to be
6828 unbounded or infeasible. This allows to avoid expensive steps in these methods in case the problem is already
6829 solved, anyway.
6830
6831 Note, that the C++ methods
6832 - scip::ObjConshdlr::scip_presol() corresponding to SCIP_DECL_CONSPRESOL()
6833 - scip::ObjConshdlr::scip_initpre() corresponding to SCIP_DECL_CONSINITPRE()
6834 - scip::ObjPresol::scip_initpre() corresponding to SCIP_DECL_PRESOLINITPRE()
6835 - scip::ObjProp::scip_initpre() corresponding to SCIP_DECL_PROPINITPRE()
6836 - scip::ObjConshdlr::scip_exitpre() corresponding to SCIP_DECL_CONSEXITPRE()
6837 - scip::ObjPresol::scip_exitpre() corresponding to SCIP_DECL_PRESOLEXITPRE()
6838 - scip::ObjProp::scip_exitpre() corresponding to and SCIP_DECL_PROPEXITPRE()
6839 are virtual functions. That means, if you are not adding the new parameters, your code will still compile, but these methods are not executed.
6840 - Propagators are now also called in during presolving, this is supported by the new callback methods SCIP_DECL_PROPINITPRE(),
6841 SCIP_DECL_PROPEXITPRE(), and SCIP_DECL_PROPPRESOL().
6842 - The new parameters `nnewaddconss` and `naddconss` were added to the constraint handler callback method SCIP_DECL_CONSPRESOL()
6843 and the presolver callback method SCIP_DECL_PRESOLEXEC(). These parameters were also added to corresponding C++ wrapper
6844 class methods (scip_presol() in objconshdlr.h and scip_exec() in objpresol.h)
6845
6846- Problem Data:
6847 - The callback SCIP_DECL_PROBCOPY() got a new parameter `global` to indicate whether the global problem or a local version is copied.
6848
6849### Deleted and changed API functions
6850
6851- implemented SCIPlpiGetPrimalRay() in SoPlex interface that has become available with SoPlex version 1.5.0.2
6852- allowed calling SCIPgetRowSolActivity() in `SCIP_STAGE_SOLVED`, since LP is still available
6853- various extensions and modifications for expressions and expression trees (too much to state here)
6854- The result value `SCIP_NEWROUND` has been added, it allows a separator/constraint handler to start a new separation round
6855 (without previous calls to other separators/conshdlrs).
6856- SCIPcalcNodeselPriority() got a new parameter `branchdir`, which defines the type of branching that was performed: upwards, downwards, or fixed.
6857
6858- Constraint Handlers:
6859 - Method SCIPincludeQuadconsUpgrade() of quadratic constraint handler got new parameter `active` to indicate whether the upgrading method is active by default.
6860 - Method SCIPseparateRelaxedKnapsack() in knapsack constraint handler got new parameter `cutoff`, which is a pointer to store whether a cutoff was found.
6861
6862- Nonlinear expressions, relaxation, and solver interface:
6863 - SCIPcreateNLPSol() now creates a `SCIP_SOL` that is linked to the solution of the current NLP relaxation
6864 - Various types and functions dealing with polynomial expressions have been renamed to use the proper terms `monomial` and
6865 `polynomial` in nonlinear expressions (nlpi/∗expr*); results in many renamings of types, structs and methods.
6866 - The methods SCIPnlpGetObjective(), SCIPnlpGetSolVals(), and SCIPnlpGetVarSolVal() have been removed, use SCIPgetNLPObjval(),
6867 SCIPvarGetNLPSol() and SCIPcreateNLPSol() to retrieve NLP solution values instead.
6868 SCIPcreateNLPSol() now returns an error if NLP or NLP solution is not available
6869 - Removed methods SCIPmarkRequireNLP() and SCIPisNLPRequired(), because the NLP is now always constructed if nonlinearities
6870 are present.
6871 - SCIPgetNLP() has been removed and NLP-methods from pub_nlp.h have been moved to scip.h, which resulted in some renamings, too.
6872 - renamed SCIPexprtreeEvalSol() to SCIPevalExprtreeSol() and now located in scip.h.
6873 - renamed SCIPexprtreeEvalIntLocalBounds() to SCIPevalExprtreeLocalBounds() and now located in scip.h.
6874 - renamed SCIPexprtreeEvalIntGlobalBounds() to SCIPevalExprtreeGlobalBounds() and now located in scip.h.
6875 - The functions SCIPnlpiGetSolution() and SCIPnlpiSetInitialGuess() got additional arguments to get/set dual values.
6876 - The method SCIPgetNLPI() got a new parameter `nlpiproblem`, which is a pointer to store the NLP solver interface problem.
6877
6878- Timing:
6879 - SCIPincludeProp() got additional parameters to set the timing mask of the propagator and the new callbacks and parameters
6880 related to calling the propagator in presolving.
6881 - SCIPincludeConshdlr() got additional parameters to set the variable deletion callback function and the timing mask for
6882 propagation.
6883 - removed parameters timelimit and memorylimit from SCIPapplyRens()
6884 - The parameters `timelimit` and `memorylimit` were removed from SCIPapplyRens().
6885
6886- Problem Data:
6887 - The method SCIPcopyProb() got a new parameter `global` to indicate whether the global problem or a local version is copied.
6888
6889- Writing and Parsing Constraints:
6890 - The methods SCIPwriteVarName(), SCIPwriteVarsList(), and SCIPwriteVarsLinearsum() got a new boolean parameter `type`
6891 that indicates whether the variable type should be written or not.
6892 - The methods SCIPparseVarName() and SCIPparseVarsList() got a new output parameter `endptr` that is filled with the position
6893 where the parsing stopped.
6894 - The method SCIPwriteVarsList() got additionally a new parameter `delimiter` that defines the character which is used for delimitation.
6895
6896- Variables:
6897 - SCIPmarkDoNotMultaggrVar()/SCIPvarMarkDoNotMultaggr() now allow to mark negated and aggregated variables
6898 - SCIPgetVarCopy() got a new parameter `success` that will be FALSE if method is called after problem creation stage and no hash map is
6899 given or no image for the given variable is contained in the given hash map.
6900 - SCIPchgVarType() got an extra boolean parameter to store if infeasibility is recognized while upgrading a variable from continuous
6901 type to an integer type.
6902 - SCIPdelVar() got a new parameter `deleted`, which stores whether the variable was successfully marked to be deleted.
6903
6904### New API functions
6905
6906- information about the quality of the solution of an LP (currently the condition number of the basis matrix) can now be:
6907 + requested from the LPI (currently only available for CPLEX): methods SCIPlpiGetRealSolQuality() and
6908 + SCIPprintLPSolutionQuality() command display lpsolquality in interactive shell display column lpcond to show
6909 + estimate on condition number, if available
6910- SCIPround() and SCIPfeasRound() to round to nearest integer
6911- SCIPsortRealRealIntInt() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
6912- SCIPsortRealIntLong(), SCIPsortPtrPtrRealInt() and corresponding sorting/inserting/deleting methods in
6913 pub_misc.h and necessary defines in misc.c
6914- SCIPcomputeLPRelIntPoint() to compute relative interior point of the current LP
6915- SCIPstartSolvingTime() and SCIPstopSolvingTime() which can be used to start or stop the solving time clock
6916- SCIPstrToRealValue() and SCIPstrCopySection() in pub_misc.h; these methods can be used to convert a string
6917 into a `SCIP_Real` value and to copy a substring.
6918- SCIPgetBinvarRepresentatives() which gets binary variables that are equal to some given binary variables,
6919 and which are either active, fixed, or multi-aggregated, or the negated variables of active, fixed, or multi-aggregated variables
6920- SCIPhasPrimalRay() and SCIPgetPrimalRayVal() that return whether a primal ray is stored and which value a
6921 given variable has in the primal ray, respectively
6922- SCIPsetConsModifiable()
6923- SCIPsetParam() which is a generic parameter setter method, independent of the parameter type
6924- SCIPpropInitpre(), SCIPpropExitpre(), SCIPpropPresol() which initializes, exists and executes the presolving phase
6925- SCIProwGetAge() to access the age of a row (pub_lp.h/lp.c)
6926- SCIPsolGetOrigObj() in pub_sol.h which returns for a solution in the original problem space the objective value
6927- SCIPretransformSol() in scip.h that allows to retransform a solution to the original space
6928- SCIPlpiClearState() to LP interfaces for clearing basis information in the LP solver
6929- SCIPgetSubscipDepth() to access the depth of the current SCIP as a copied subproblem
6930- SCIPdebugAddSolVal() and SCIPdebugGetSolVal() to add/get values to/from a debug solution
6931- SCIPsepastoreRemoveInefficaciousCuts() to remove non-efficious cuts from the separation storage
6932
6933- Nodes:
6934 - SCIPnodeGetParent() to get parent node of a node
6935 - SCIPnodesSharePath() in pub_tree.h that determines whether two nodes are on the same leaf-root path
6936 - SCIPnodesGetCommonAncestor() in pub_tree.h that finds the common ancestor node for two given nodes
6937
6938- Read and Write:
6939 - SCIPgetReadingTime() which returns the time for reading in seconds
6940 - SCIPparseVarsLinearsum(), SCIPparseVarsPolynomial() and SCIPwriteVarsPolynomial() and for writing and
6941 parsing polynomials in constraint handler writing/parsing methods
6942
6943- Memory:
6944 - SCIPcreateMesshdlrPThreads() and SCIPfreeMesshdlrPThreads() for allocating and deleting necessary memory
6945 for message handlers for parallel pthread version
6946 - SCIPallocClearMemoryArray() and BMSallocClearMemoryArray() for allocating cleared memory arrays in scip.h and memory.h
6947
6948- Intervals:
6949 - SCIPintervalPowerScalarInverse() to solve an equation y = x^p for given bounds on y and scalar exponent p
6950 - SCIPintervalQuadBivar() to compute tight bounds on a bivariate quadratic form
6951 - SCIPintervalSolveBivariateQuadExpressionAllScalar() to compute tight bounds on the solutions of a bivariate quadratic equation
6952
6953- Variables:
6954 - SCIPcomputeVarCurrent{L,U}b{Local,Global}() to compute local or global lower or upper bounds of a
6955 multiaggregated variable from the bounds of the aggregation variables
6956 - SCIPbranchVarValNary() for n-ary variable branching
6957 - SCIPgetNegatedVars() which returns all negated variables for a given array of variables, if the negated
6958 variables are not existing yet, they will be created
6959 - SCIPgetNTotalVars() that returns the total number of created vars, icluding variables that were deleted in the meantime
6960 - SCIPvarGetHashkey(), SCIPvarIsHashkeyEq(), SCIPvarGetHashkeyVal() in pub_var.h which can be used for `SCIP_HASHTABLE` of variables
6961 - SCIPvarGetNBdchgInfosLb() and SCIPvarGetNBdchgInfosUb() in pub_var.h returning the number of lower or upper bound changes on the active path
6962 - SCIPvarGetBdchgInfoLb() and SCIPvarGetBdchgInfoUb() returning the bound change information at the given position
6963 - SCIPvarMarkDeletable() to mark a variable to be deletable completely from the problem (for
6964 branch-and-price); can only be called before the variable is added to the problem
6965 - SCIPvarMarkNotDeletable() that marks a variable to be non-deleteable (used within SCIP for forbidding
6966 deletion of variables contained in solution, LP bases, (multi)aggregation, ...)
6967 - SCIPvarIsDeletable() that returns whether a variable is marked to be deletable (each variable is per default non-deletable)
6968
6969- NLP:
6970 - SCIPgetNLPVarsNonlinearity() to get for each variable in the NLP the number of NLP rows in which this variable appears in a nonlinear way
6971 - SCIPnlrowGetDualsol(), SCIPgetNLPVarsLbDualsol(), SCIPgetNLPVarsUbDualsol() to retrieve dual values from an NLP solution
6972 - SCIPgetNLPFracVars() to get the fractional variables in an NLP solution
6973
6974- Propagator:
6975 - SCIPpropSetPresolPriority() which changes the presolving priority of a given propagator
6976 - SCIPpropGetPresolPriority(), SCIPpropGetPresolTime(), SCIPpropWasPresolDelayed(), SCIPpropGetNFixedVars(),
6977 SCIPpropGetNAggrVars(), SCIPpropGetNChgVarTypes(), SCIPpropGetNChgBds(), SCIPpropGetNAddHoles(), SCIPpropGetNDelConss(),
6978 SCIPpropGetNAddConss(), SCIPpropGetNUpgdConss(), SCIPpropGetNChgCoefs(), SCIPpropGetNChgSides(), SCIPpropGetTimingmask(),
6979 SCIPpropDoesPresolve() which return corresponding presolving information
6980 - SCIPpropGetNRespropCalls() and SCIPconshdlrGetNRespropCalls() which return the number of times a
6981 propagator or a constraint handler was called for resolving a propagation
6982 - SCIPpropGetRespropTime() and SCIPconshdlrGetRespropTime() which return time spent for resolving a
6983 propagation within a propagator or a constraint handler
6984 - SCIPcheckCumulativeCondition(), SCIPpropCumulativeCondition() and SCIPrespropCumulativeCondition() in
6985 cons_cumulative.h; these methods can be used to check, propagate, or resolve the propagation of a cumulative condition
6986 - SCIPpropagateCutoffboundVar() in prop_pseudoobj.h which can be used to propagate the cutoff bound for the given variables
6987
6988- Constraints:
6989 - added to linear constraint handler SCIPsetUpgradeConsLinear(), which (de-)activates the possibility to
6990 upgrade a linear constraint to a specialized linear constraint (e.g. knapsack)
6991 - SCIPconvertCutsToConss() and SCIPcopyCuts() to scip.{c,h} for copying cuts to linear constraints
6992 - SCIPaddCoefLogicor() to add a variable to a logic or constraint
6993 - SCIPfindOrigCons() which return a original constraint with the given name or `NULL`
6994 - SCIPconshdlrGetNAddConss() which returns the number of added constraints during presolving by a given constraint handler
6995 - SCIPpresolGetNAddConss() which returns the number of added constraints during presolving by a given presolver
6996
6997### Command line interface
6998
6999- New funtionalities in the interactive shell (modify current CIP instance, write NLP relaxation)
7000- added dialog `write nlp` to write current NLP relaxation to a file
7001- new dialog `change freetransproblem` to free transformed problem in the interactive shell before changing the problem
7002- it is possible to change bounds of a variable in the interactive shell
7003- it is possible to add a constraint to a problem in the interactive shell
7004
7005### Interfaces to external software
7006
7007- Improved SOPLEX interface (LP simplifier)
7008- Improved CPLEX interface, including measures for numerical stability
7009
7010### Changed parameters
7011
7012- change default value of parameter `nodeselection/restartdfs/selectbestfreq` 100
7013- moved parameters for pseudoboolean constraints from opb-reader to pseudoboolean constraint handler
7014- changed possible parameter values of `branching/pscost/strategy` from `bri` to `cdsu`: default is now `u`, i.e., to
7015 estimate the LP gain by a branching for external branching candidates (esp. continuous variables) the same way as
7016 their pseudo costs are updated
7017- added possible value `d` for `constraints/soc/nlpform` to choose a convex division form for SOC constraint
7018 representation in NLP
7019- renamed parameter `constraints/quadratic/linearizenlpsol` to `constraints/quadratic/linearizeheursol` and do
7020 linearizations in every solution found by some heuristic
7021- renamed parameter `constraints/quadratic/mincutefficacyenfo` to `constraints/quadratic/mincutefficacyenfofac` and
7022 interpret it as a factor of the feasibility tolerance
7023- removed fastmip setting 2, which means the dualsolution would not be calculated but because SCIP always asks for the
7024 dual solution, the lp would be reoptimized to calculate them; so it had no real effect
7025- all parameters in cons_indicator and cons_sos1 have been converted to lower case!
7026- changed default value of parameter `separating/gomory/maxroundsroot` to 10
7027- changed default value of parameter `separating/gomory/maxsepacutsroot` to 50
7028- removed parameter `heuristics/subnlp/nlpsolver`, use `nlp/solver` instead
7029
7030### New parameters
7031
7032- `branching/delaypscostupdate` to delay the update of pseudo costs for continuous variables behind the separation round: default is TRUE
7033- `branching/lpgainnormalize` to set the strategy how the LP gain for a continuous variable is normalized when updating the
7034 variables pseudocosts: default is to divide LP gain by reduction of variable's domain in sibling node
7035- `branching/pscost/nchildren` and `branching/pscost/nary*` to enable and customize n-ary branching on
7036 external branching candidates (e.g., in spatial branching for MINLP)
7037- `conflict/bounddisjunction/continuousfrac` which defines the maximum percantage of continuous variables
7038 within a conflict create by the bounddisjunction conflict handler
7039- `conflict/separate` which enables or disables the separation of conflict constraints
7040- `constraints/{nonlinear,quadratic,soc,abspower}/sepanlpmincont` to specify minimal required fraction
7041 of continuous variables in problem to enable linearization of convex constraints in NLP relaxation solution in root
7042- `constraints/indicator/forcerestart` and `constraints/indicator/restartfrac` to control forced restart in cons_indicator
7043- `constraints/indicator/generatebilinear` to generate bilinear (quadratic) constraints instead of indicator constraints
7044- `constraints/indicator/maxconditionaltlp` to enable a quality check for the solution of the alternative LP
7045- `constraints/indicator/removeindicators` to remove indicator constraints if corresponding vub has been added
7046- `constraints/linear/nmincomparisons` and `constraints/linear/mingainpernmincomparisons` to influence
7047 stopping criterium for pairwise comparison of linear constraints
7048- `constraints/pseudoboolean/decompose`, for pseudoboolean constraints to transform pseudoboolean constraints into linear- and and-constraints
7049- `constraints/quadratic/binreforminitial` to indicate whether linear (non-varbound) constraints added due to reformulation of products with
7050 binary variables in a quadratic constraints should be initial (if the quadratic constraint is initial), default is FALSE
7051- `constraints/quadratic/checkfactorable` to disable check for factorable quadratic functions (xAx = (ax+b)*(cx+d)) in quadratic constraints
7052 and not to use of this information in separation (generates lifted tangent inequalities according to Belotti/Miller/Namazifar if also
7053 linear vars are present)
7054- `constraints/quadratic/disaggregate` to split a block-separable quadratic constraint into several quadratic constraint
7055- `constraints/quadratic/maxproprounds` and `constraints/quadratic/maxproproundspresolve` to limit the
7056 number of propagations rounds for quadratic constraints within one propagation round of SCIP solve or during SCIP presolve
7057- `constraints/varbound/presolpairwise` that allows pairwise presolving of varbound constraints, default is TRUE
7058- `heuristics/shiftandpropagate/onlywithoutsol` to switch whether the heuristic should be called in case a primal solution is already present
7059- `limit/maxorigsol` which defines the size of the solution candidate store (default value is 10)
7060- `lp/resolverestore` controlling how LP solution is restored after diving: if TRUE by resolving them,
7061 if FALSE by buffering them; if `lp/freesolvalbuffers` is TRUE, we free the buffer memory each time (FALSE by default)
7062- `lp/clearinitialprobinglp` to clear LP state at end of probing mode, if LP was initially unsolved
7063- `lp/resolveitermin` and `lp/resolveiterfac` to limit the number of LP iterations in resolving calls:
7064 resolveiterfac is a factor by which the average number of iterations per call is multiplied to get the limit, but the
7065 limit is at least resolveitermin; default is -1 (no limit) for resolveiterfac and 1000 for resolveitermin
7066- `lp/resolverestore` and `lp/freesolvalbuffers` possibility to buffer and restore LP solution after diving without
7067 having to resolve the LP; currently turned off, because performance impact is unclear;
7068- `misc/improvingsols` which states whether only solutions which have a better (or equal) primal bound
7069 as the best known are checked; this is of interest if the check of a solution is expensive; default value is FALSE
7070- `misc/resetstat` which state if the statistics should be reseted if the transformed problem is freed
7071 (in case of a benders decomposition this parameter should be set to FALSE) default value is TRUE
7072- `nodeselection/restartdfs/countonlyleafs` in node selector restart dfs which can be used to select the counting process of processed nodes
7073- `presolving/donotaggr` to deactivate aggregation of variables globally
7074- `pricing/delvars` and `pricing/delvarsroot` that define, whether variables created at a node / the
7075 root node should be deleted when the node is solved in case they are not present in the LP anymore
7076- `propagating/%s/maxprerounds` for all propagators which allows to change to maximal number of rounds
7077 of presolving where this propagator participates in
7078- `propagating/%s/presoldelay` for all propagators which allows to change if the presolving call of the given propagator should be delayed
7079- `propagating/%s/presolpriority` for all propagators which allows to change the priority of calling the given propagator
7080- `propagating/pseudoobj/propfullinroot` for allowing to propagate all variables in the root node,
7081 instead of stopping after `maxcands` which is set by a parameter as well
7082- `reading/gmsreader/bigmdefault` and `reading/gmsreader/indicatorreform` reader_gms is now able to write indicator
7083 constraints (reformulated either via big-M or sos1)
7084- `reading/gmsreader/signpower` to enable writing sign(x)abs(x)^n as the rarely used gams function signpower(x,n)
7085- `separating/closecuts/maxunsucessful` to turn off separation if we can not find cuts
7086- `timing/reading` to add reading time to solving time
7087
7088### Data structures
7089
7090- split off `PARAMEMPHASIS` from `PARAMSETTING` (in pub_paramset.c/paramset.c)
7091- new data structure `SCIP_STAIRMAP`
7092- add expression graph data structures and methods for reformulation, domain propagation, simple convexity check on
7093 nonlinear expressions and simplification for expression trees and graphs
7094
7095Testing
7096-------
7097
7098- New scripts for running tests with GAMS
7099- added scripts check_gams.sh, evalcheck_gams.sh and check_gams.awk and target `testgams` in Makefile
7100- adjusted all test scripts to use the same new optimality gap computation as in SCIP
7101- added Makefile option `VALGRIND=true` to enable running the SCIP checks (make test) through valgrind; valgrind errors
7102 and memory leaks are reported as fails
7103- moved *.test and *.solu files to subdirectory testset in check directory and adjusted test scripts
7104
7105Build system
7106------------
7107
7108### Makefile
7109
7110- Variables:
7111 - via `PARASCIP=true` as a `Makefile` option it is possible to compile SCIP threadsafe in DEBUG-mode, (in OPT-mode it's
7112 only necessary if non-default messagehandler or CppAD is used)
7113 - the `make` parameter `PARASCIP=true` leads to threadsafe message handlers where you need to call
7114 SCIPcreateMesshdlrPThreads() and SCIPmessageSetHandler()/SCIPmessageSetDefaultHandler() and SCIPfreeMesshdlrPThreads();
7115 therefore we need to link with pthread library
7116 - new variable $(INSTALLDIR) in Makefile which define installation directory for the libraries, $(INSTALLDIR)/lib/,
7117 binary, $(INSTALLDIR)/bin and include headers, $(INSTALLDIR)/include, the default value is the empty string
7118
7119- Linking:
7120 - Linking against Clp and Ipopt has been simplified. Only the directory where the
7121 package has been installed need to be provided now. For details see the INSTALL file.
7122 - to link against IPOPT, only the base directory of an Ipopt installation need to be specified now; additionally, if
7123 building with gnu compilers, the Ipopt libraries directory is stored in the SCIP binary, which should make it easier
7124 to run with Ipopt shared libraries
7125 - to link against Clp, only the base directory of an Clp installation needs to be specified now
7126
7127- Targets:
7128 - New targets `(un)install` in Makefile, support for valgrind in testing environment
7129 - new target `make libs` which compiles only the libraries
7130 - new target in Makefile `install` performs `make` and copies using the install command the include headers, binary, and
7131 libraries
7132 - new target in Makefile `uninstall` removes libraries, binary and include headers form `INSTALLDIR`
7133 - removed target `lintfiles`, this target is now imitated by the `lint` target and a none empty variable `FILES`
7134
7135Fixed bugs
7136----------
7137
7138- fixed bug in copying if the target SCIP already is in solving stage: it might be that the copy of a variable cannot be found/created
7139- fixed bug trying to print big messages bigger than `SCIP_MAXSTRLEN`
7140- fixed bug w.r.t. counting feasible solutions and turned of sparse solution test
7141- LP solution status is now checked when checking root LP solution. Otherwise, due to different time measurements, it
7142 might happen that the LP solving was stopped due to the time limit, but SCIP did not reach the limit, yet.
7143- fixed bug trying to tighten multiaggregated variables, which have only one active representation and this variable is already tightened
7144- fixed possible buffer overrun in tclique_graph.c
7145- fixed issue with interactive shell in case (user) plugins are included after the default plugins
7146- fixed bug where mutiaggregating leads to an aggregation and both variables were of implicit or integral type
7147- fixed bug in conflict.c, where LPi was manipulated, but not marked as not solved
7148
7149- Tree:
7150 - fixed assertion in tree.c w.r.t. node estimation
7151 - fixed bug in debug.c: removed tree nodes had not been checked if they were pruned due to an incumbent solution found by a diving heuristic
7152
7153- Bounds:
7154 - fixed bug which occurred when changing a bound in the solving stage when this variables got upgraded from continuous to
7155 a integer type, where the bounds of this variable were still not integral; due to that SCIPchgVarType() has changed (see above)
7156 - fixed bug in handling of lazy bounds that resulted in putting the bounds explicitly into the LP
7157
7158- Separation:
7159 - fixed assert in sepa_clique.c which is currently not valid because implicit binary variables in cliques are ignored
7160 - fixed bug in sepa_zerohalf.c concerning inconsistent construction of solution array of variables and fixed wrong assert about variable bounds
7161
7162- Constraints:
7163 - fixed not correct merging of variable in logicor constraint handler and changed the name of the method to a common
7164 name used by other constraint handlers too(findPairsAndSets->mergeMultiples)
7165 - fixed bugs in changing the initial and checked flags for constraints in original problem
7166 - fixed bug in cons_linear.c, when scaling a constraint maxabscoef was not set correctly, furthermore the correction of
7167 maxabscoef was not handled correctly
7168 - fixed bug in cons_indicator.c trying to copy a constraint where the pointer to the linear constraint did not point to
7169 the already transformed linear constraint (, happend when SCIPcopy() is used after transforming before presolving)
7170 - fixed numerical bug in linear constraint handler: polishing of coefficients after fixing variables led to wrong
7171 results for continuous variables fixed to a close-to-zero value.
7172 - fixed bug in cons_bounddisjunction where branching on multiaggregated variables was tried while all aggregation variables are fixed
7173 - fixed bug in presolving of cons_logicor.c: adding variable implications can lead to further reductions; added call to applyFixings()
7174 - fixed bug in cons_countsols.c w.r.t. none active variables
7175 - fixed bug in cons_linear.c, scaling could have led to wrong values
7176
7177- Reader:
7178 - fixed bug in reader_fzn.c w.r.t. cumulative constraints
7179 - fixed bug in reader_mps.c: if a variables first occurence is in the bounds section, then the corresponding variable bound was lost
7180 - fixed several issues in flatzinc reader
7181 - deactived checking of zero solution in Zimpl reader when no starting values are provided
7182 - reader_lp is now able to read lines longer than 65534 characters
7183
7184- Memory:
7185 - fixed bug in copying NLPI interfaces that use block-memory (NLPI copy used block memory from source SCIP)
7186 - fixed memory leak in reader_pip.c
7187 - fixed memory leak in coloring part of maximum clique algorithm (tclique_coloring.c)
7188 - fixed memory leak in coloring part of maximum clique algorithm (tclique_coloring.c) in a better way
7189
7190- Numerics:
7191 - fixed bug which occurred when the dual farkas multipliers were not available in the lpi because the LP could only be
7192 solved with the primal simplex due to numerical problems
7193 - fixed bug in ZI round heuristic that led to infeasible shiftings for numerically slightly infeasible rows with close-to-zero coefficients
7194 - fixed numerical issue in octane heuristic: close-to-zero values for ray direction could have led to bad computations
7195
7196- Propagation:
7197 - fixed bug in propagation of indicator constraints: cannot fix slack variable to 0 if linear constraint is disabled/not active
7198 - fixed bug in cons_linear.c while sorting the eventdatas during the binary variable sorting for propagation
7199 - fixed bug and wrong assert in heur_shiftandpropagate.c when relaxing continuous variables from the problem
7200 - fixed bug in cons_orbitope:resprop() for the packing case
7201 - fixed wrong changing of wasdelayed flag for propagators
7202 - fixed bug using wrong sign in infinity check in prop_pseudoobj
7203 - fixed bug in redcost propagator: can only be called if the current node has an LP
7204 - fixed bug w.r.t. infinity loop during propagation
7205
7206Miscellaneous
7207-------------
7208
7209- The interface contains several additional callback functions and parameters for plugins. Some effort may be required to compile your old
7210 projects with SCIP 2.1. For details see section `Changes between version 2.0 and 2.1` in the doxygen documentation.
7211
7212@page RN2_0 Release notes for SCIP 2.0
7213
7214@section RN202 SCIP 2.0.2
7215*************************
7216
7217Performance improvements
7218------------------------
7219
7220- improved twoopt-heuristic by considering larger search domains
7221- the SoPlex interface now has the capability to provide a primal ray, provided it is compiled against the next SoPlex release (>= 1.5.0.2)
7222- calculation of node priority now also works when variable's relaxation value is equal to a bound
7223- fixed issue w.r.t. calling primal heuristics after presolving detected infeasibility
7224
7225- Constraints:
7226 - fasten propagation in cons_knapsack.c due to negated clique partitions
7227 - recalculating only needed partitions in cons_knapsack.c, not always both
7228
7229- Memory:
7230 - reduced memory usage of shift-and-propagate heuristic
7231 - knapsack constraints are now separated faster; SCIPsolveKnapsackExactly() now works faster and requires less memory
7232 - fasten knapsack separation by replacing SCIPallocBuffer(Array) through SCIPallocBlockMemory(Array)
7233 - improved runtime and memory consumption in SCIPsolveKnapsackExactly() in cons_knapsack.c
7234
7235Fixed bugs:
7236----------
7237
7238- fixed `make/make.project`
7239- fixed wrong assert in plugins that use SCIPcopy()
7240- fixed bug in DINS w.r.t. column generation
7241- fixed bug in var.c where a possible multiaggregation was resolved to an aggregation but the variables types were not
7242 checked to prefer more general types for aggregating; possible memory loss removed
7243- fixed bug in prop_vbounds.c w.r.t. infinity lower and upper bound of variable bound variables
7244- fixed bug w.r.t. setting wall clocks
7245- fixed wrong assert in var.c (replaced `==` through SCIPsetIsEQ()), real values do not have to be exactly the same when
7246 computed in different function
7247- fixed bug in SCIPsolveIsStopped() where it could happen that TRUE was reported if a nodelimit was reached but
7248 checknodelimits had been set to FALSE
7249- fixed three bugs when writing in fzn format (wrongly splitted writing buffer, wrong variables was used, floats were printed to short)
7250- fixed bug in conflict.c, infeasibility analysis with big values led to wrong result
7251
7252- Heuristics:
7253 - fixed bug in DINS heuristic that occurred when the incumbent solution value is outside the variable's current domain
7254 - fixed behavior of LNS heuristics when the subproblem aborts: continue in optimized mode, stop in debug mode
7255 - fixed segmentation fault in heur_subnlp.c which occurred if resolving the NLP with a tighter feasibility tolerance
7256 failed with a solver error
7257 - fixed bug in heur_subnlp.c where constraints forbidding variable fixations where added if a cutoff was used in the subproblem
7258 - fixed bug in heur_subnlp.c where wrong constraints forbidding variable fixations where added in case of general integers
7259
7260- NLP:
7261 - fixed bug in changing quadratic coefficients of a row in the NLP
7262 - fixed various small bugs in nonlinear expressions code
7263 - fixed removal of fixed linear variables from a nonlinear row: a fixed variable may have not been removed if there was
7264 also a multiaggregated variable
7265
7266- LP:
7267 - implemented SCIPlpiGetPrimalRay() in SoPlex interface that has become available with SoPlex version 1.5.0.2
7268 - fixed two bugs at nodes with unbounded LP relaxation: don't check lp rows of infinite solution; don't analyze conflict
7269 due to primal cutoff bound of -infinity
7270 - fixed wrong assumption that an optimal LP solution in the root is optimal for the problem if there are no active
7271 pricers, need to check also whether all variables are in the LP
7272
7273- Constraints:
7274 - fixed bug in reader_cip regarding reading of very long constraints
7275 - fixed bug while after restarting possible the aggregted variables were not removed in setppc constraints
7276 - fixed bug in cons_knapsack: in seldom circumstances the relaxation of a linear constraint can detect infeasibility,
7277 which was not handled properly
7278 - fixed bug w.r.t. to pricing variables in case new initial constraints come in during the price and cut loop
7279 - fixed bug in cons_soc.c w.r.t. upgrading from quadratic constraints with finite left-hand-side
7280 - fixed bug caused by not (correctly) counting boundchanges in cons_varbound.c
7281 - fixed bug in sorting mechanism in cons_xor.c
7282 - fixed wrong (neg)cliquepartition check in cons_knapsack.c when deleting a coefficient
7283 - fixed bug in cons_quadratic: in seldom cases, fixed variables may have been substituted out wrongly in presolve
7284 - fixed bugs in cons_countsols.c w.r.t. collecting feasible solutions and forbidding a found solution
7285 - fixed bug in cons_linear.c: multiaggregated variables were not removed when adding during solve, leading to a failing
7286 assert in tightenBounds due to an unsuccessful bound tightening
7287
7288- Memory:
7289 - fixed bug concerning overflow in memsize calculation in set.c
7290 - fixed memory leak in SoPlex LP interface when requesting an unbounded solution
7291 - fixed memory leak in SoPlex LP interface when solving with LP scaling
7292 - fixed memory leaks in reader of TSP example
7293
7294@section RN201 SCIP 2.0.1
7295*************************
7296
7297Performance improvements
7298------------------------
7299
7300- SCIP with SoPlex as LP solver now uses auto pricing by default (start with devex, switch to steepest
7301 edge after some iterations); this fixes timeouts on instances where devex converges very slowly
7302- fixing lifting of new knapsack items which are negated items of already included items, this could lead to very long presolving
7303- fixed performance issue in presolving w.r.t. to computing the number of new fixings, aggregated,
7304 and so on before a constraint handler presolver is called
7305- in case of adding constraints during pricing with initial flag set to
7306 TRUE, we add now these constraints after the pricing round to the LP
7307- changed parameter values in clique separator in order to avoid very large branch-and-bound trees
7308
7309Interface changes
7310-----------------
7311
7312### New and changed callbacks
7313
7314- allow access of transformed constraints in `SCIP_STAGE_TRANSFORMED`
7315
7316### Changed parameters
7317
7318- replaced parameter `constraints/quadratic/minefficacy` by `constraints/quadratic/minefficacysepa` and `constraints/quadratic/minefficacyenfo`
7319- added possible values `a` and `e` for `constraints/soc/nlpform` to enable automatic choice and convex exponential-sqrt
7320 form for SOC constraint representation in NLP
7321
7322Fixed bugs
7323----------
7324
7325- fixed bug w.r.t. looseobjval; the counting of number of loose variables in the LP data structure was incorrect in case
7326 a variable got aggregated or multi-aggregated
7327- fixed bug in copy method of objvardata which should only create a new `SCIP_VARDATA` if the implemented subclass create
7328 a copy of the given objvardata object
7329- fixed bug in lp.c where in case of objlimit reached and fastmip not all variables where priced because of an incorrect
7330 dual solution
7331- fixed bugs in binpacking example w.r.t. empty struct and not initializing an array
7332- fixed bugs in sepa_clique.c concerning incorrect way to ignore implicit binary variables in cliques and non-active
7333 variables in implications
7334- fixed some bugs w.r.t. to casting pointer arrays
7335- fixed bug in vars.c which handled arrays with parts of original variables during resolving to active variables (using
7336 SCIPvarsGetProbvarBinary) wrong
7337- fixed bug in nlp.c: nlrowSearchQuadElem was using SCIPquadelemSortedFind() incorrectly
7338
7339- Branching:
7340 - fixed assertion w.r.t. to probing during the propagation round of a branch-and-bound node
7341 - fixed computation of node's objective value estimate when branching on continuous variables (see
7342 SCIPtreeCalcChildEstimate(), SCIPtreeBranchVar())
7343 - fixed bug in statistic w.r.t. number of calls for external branching candidates
7344 - fixes to branching on continuous variables
7345
7346- Reader:
7347 - fixed bug in reader_gms.c: linear coefficients for quadratic variables were not printed if they had no
7348 square-coefficient
7349 - fixed bug in reader_mps: indicator constraints do not output the slack variables anymore
7350
7351- Constraints:
7352 - fixed bugs in SCIPcopyConss: copy all active constraints (including disabled ones), *valid was not initialized to TRUE
7353 - fixed bug in debug.c w.r.t. checking of constraints and continuous variables
7354 - fixed bug in cons.c which didn't allow the changing of the separation and enforcement flag of a constraint in the
7355 problem stage
7356 - corrected behavior of the copy function in cons_indicator.c: create artificial linear constraint if linear constraint
7357 was deleted
7358 - fixed bug in cons_indicator.c: presolving cannot delete linear constraints; several other minor bugfixes
7359 - fixed bugs in cons_bounddisjunction where the branching during the constraint enforcement was done incorrectly
7360 - fixed bugs in cons_orbitope.c: orbitopal fixing for the packing case had two bugs; also fixed one wrong assert
7361 - fixed bugs in cons_sos?.c: take average of objestimate
7362 - fixed bug in cons_logicor, implications on none `SCIP_VARTYPE_BINARY` variable were handled wrong
7363 - fixed bug in cons_linear while trying to add a conflict without any variables
7364 - fixed bug in cons_indicator.c: creating constraints in transformed stage is now possible
7365
7366- LP Interface:
7367 - fixed bug w.r.t. memory allocation for all values of a column in lpi_cpx.c
7368 - fixed bugs in SCIPnlpiOracleChgLinearCoefs() and SCIPnlpiOracleChgQuadCoefs() for the case where new coefficients where
7369 added
7370 - fixed bugs in lpi_none.c w.r.t. debug and opt mode
7371 - fixed bug in lpi_cpx.c w.r.t. to wrong handling in case the crossover did not succeed
7372
7373- Heuristics:
7374 - fixed bug in heur_subnlp when initialized starting values of a fixed variable in the NLP of the subscip
7375 - fixed bug in heur_undercover: removed option globalbounds, since we are not allowed to relax bounds at a probing node
7376 - fixed bug in heur_shiftandpropagate where some variables were initialized too late
7377 - fixed numerical issue in some heuristics: nearly-integral values that are between the feasibility and the integrality
7378 tolerance might not have been rounded correctly
7379 - fixed bug in heur_guideddiving: best solution is now copied to avoid deletion in case of many new solutions
7380 - fixed bug in DINS heuristic, information storage for binary variables could lead to bad memory access in column
7381 generation applications
7382 - fixed bug in heur_shiftandpropagate.c: Now, the heuristic checks rows for global infeasibility at the beginning. This
7383 check is only relevant if presolving is disabled.
7384 - fixed bug in heur_subnlp when forbidding a particular combination of integer variables in the main problem
7385
7386@section RN200 SCIP 2.0.0
7387*************************
7388
7389Features
7390--------
7391
7392- added relaxation structure to SCIP, it represents global relaxation information independent from a specific relaxator;
7393 at the moment, it contains information about the relaxation solution stored in the variables: objective value and
7394 validness
7395- SCIP may now be manually restarted
7396- SCIPsolveKnapsackExactly() got a new 12. parameter `SCIP_Bool* success` which stores if an error occurred during
7397 solving(normally a memory problem)
7398- SCIP can now handle problems with continuous variables w.r.t. to counting (the projection to the integral variables
7399 are counted)
7400- an XML-parser is available in the src/xml subdirectory
7401- We do not distinguish between block memory for the original and the transformed problem anymore. The same
7402 block memory is now used in both problem stages.
7403- added new sorting method SCIPsortLongPtr(), SCIPsortDownLongPtr() and all corresponding methods
7404- added new sorting method SCIPsortRealIntPtr(), SCIPsortDownRealIntPtr() and all corresponding methods
7405
7406- Heuristics:
7407 - SCIP can now copy instances (e.g. for heuristics)
7408 - new undercover heuristic for MINLPs: fixes variables such as to obtain a linear or convex subproblem and solves this
7409 - primal heuristics may now already be called before presolving, using the new timing point
7410 `SCIP_HEURTIMING_BEFOREPRESOL`. Note that solutions that are added before/during presolving, will be retransformed to
7411 the original space.
7412 - primal heuristics may now be called during presolving, using the new timing point `SCIP_HEURTIMING_DURINGPRESOLLOOP`
7413 - added heuristic zirounding (heur_zirounding.{c,h})
7414 - added heuristic twoopt (heur_twoopt.{c,h})
7415 - added new NLP heuristic (heur_subnlp.{c,h}) which solves the sub-NLP that is obtained by fixing all discrete variables
7416 in the CIP and applying SCIP's presolving
7417 - feasibility pump heuristic now implements all functionality for feasibility pump 2.0
7418
7419- Reader:
7420 - can now read XML-solution files as used by CPLEX
7421 - the MPS reader can now read MIQPs and MIQCPs where a quadratic objective function can be specified by a QMATRIX or
7422 QUADOBJ section and the quadratic part of a quadratic constraint by a QCMATRIX
7423 - the MPS reader can now write quadratic and SOC constraints
7424 - the GAMS reader can now write SOC constraints
7425 - added support for bool_gt, bool_lt, bool_ge, bool_le, bool_ne, bool_not, int_times, int_minus, int_plus, int_negate,
7426 float_times, float_minus, float_plus, float_negate constraints to flatzinc reader
7427 - the LP reader (.lp files) can now read MIQPs and MIQCPs and write quadratic and SOC constraints
7428 - the LP reader (.lp files) and MPS reader can now read semicontinuous variables, they are handled by creating bound
7429 disjunction constraints
7430 - added new reader for polynomial mixed-integer programs (reader_pip.{c,h}) as used in the POLIP
7431
7432- Indicator constraints:
7433 - SCIP can now handle indicator constraints (reading (from LP, ZIMPL), writing, solving, ...) see \ref cons_indicator.h.
7434 - the indicator constraint can now decompose the problem, i.e., not add the linear constraint to the problem if all of
7435 its variables are continuous
7436 - can now read and write indicator constraints in the (extended) MPS format
7437 - cons_indicator tries to adapt solutions to get feasible during check
7438 - cons_indicator allows to store information on other linear constraints that might help to separate cuts
7439
7440- Constraint handlers:
7441 - Solution counting extended to constraint integer programs, this also
7442 includes constraint integer programs which contain continuous variables
7443 - The solution behavior of SCIP can be diversified by randomly permuting constraints and variables or randomly
7444 determining a set of branching variables with a unique high priority
7445 - `negated cliques` (1<=i<=n : sum (x_i) >= n-1) were added and we are using them now inside the knapsack constraint
7446 handler, the cliquepartitioning which is returned by SCIPcalcCliquePartition() contains now integer != 0, negatives ones
7447 indicates a negated clique and positive ones indicates a normal clique
7448 - SCIP is now able to detect in DEBUG-mode whether a constraint or variables which will be added, was also created in
7449 the same scip instance, if not an error is thrown
7450 - cons_knapsack is now able to detect negated cliques due to negated cliques on knapsack constraints
7451 - SCIP is now able to write non-linear opb-files(linear instances with and-constraints)
7452 - New constraint handlers for linking constraints (only Beta), cumulative constraints, and for breaking orbitopal symmetries
7453 - `negated cliques` handling in knapsack constraint handler got changed due to the new method
7454 SCIPcalcNegatedCliquePartition() resulting in new consdata members `negcliquepartition`, `negcliquepartitioned` and
7455 `nnegcliques`; changed SCIPcalcCliquePartition() so all cliquepartitions (calculated by SCIPcalcCliquePartition() or
7456 SCIPcalcNegatedCliquePartition(), which uses the first one) contain again not negative integers
7457 - `and`, `knapsack`, `linear`, `logic`, `or`, `quadratic`, `setpp`, `varbound`, `xor` and `clique` constraint handlers
7458 can handle implicit binary variables
7459 - knapsack constraint handler is now able to pairwise presolving constraints
7460 - constraint handlers `logicor`, `and`, `or` can parse their output
7461 - constraint handler `or` can copy its constraints
7462 - added packing/partitioning orbitope constraint handler for symmetry handling (cons_orbitope.{c,h})
7463 - added constraint handler for second order cone constraints (cons_soc.(c|h))
7464 - added constraint handler cons_linking.{c,h} (see cons_linking.c for more details)
7465 - cons_quadratic can make solutions in CONSCHECK feasible for the quadratic constraints by moving values of linear
7466 variables and passing the modified solution to the trysol heuristic
7467 - constraint handler can now register their upgrade functions for quadratic constraints to cons_quadratic (similar to
7468 LINCONSUPGD)
7469
7470- Separation:
7471 - New separators for oddcycle cuts and Chvatal-Gomory cuts using sub-MIPs
7472 - modified implementation of separation algorithms in cons_knapsack.c according to results of diploma thesis; including
7473 super-additive lifting (disabled)
7474 - uncommented decomposeProblem() in sepa_zerohalf.c (in default settings, not used anyway): was not adapted to the case
7475 that contiuous variables are allowed in a row
7476 - new separator rapid learning (sepa_rapidlearning.{c,h}) that produces conflicts, global bound changes, primal
7477 solutions and initializes inference values for branching
7478 - added Chvatal-Gomory cuts separated with a sub-MIP (sepa_cgmip.{c|h})
7479 - added reader for 'Weigted Boolean Optimization': problems (reader_wbo.{c,h}), this reader needs the reader_opb files
7480 - new separator oddcycle (sepa_oddcycle.{c,h}) separates oddcycle inequalities using the implication/conflict graph and
7481 dijkstra-algorithm based on binary heaps (dijkstra/dijkstra_bh.{c,h})
7482
7483- Branching:
7484 - Branching on externally given candidates, the \ref BRANCH 'branching rules' have a second new callback method
7485 (see type_branch.h for more details): SCIP_DECL_BRANCHEXECEXT(x) can be used to branch on external branching candidates,
7486 which can be added by a user's `relaxation handler` or `constraint handler` plugin, calling SCIPaddExternBranchCand().
7487 - added branchcands for relaxator solution, that can be added by the relaxator and used by branching rules
7488 - added relaxsol to variables, s.t. a relaxator can store a solution on which branching or separation can be done
7489 - SCIP can now branch on relaxation solutions that are either installed to the relaxsol field of the variables or added
7490 to the list of relaxation candidates, e.g., by constraint handlers. Branching on relaxation solutions is performed if
7491 the enforcement resulted in an unresolved infeasibility and there are no LP branching candidates, but before pseudo
7492 solution branching. The branching rules leastinf, mostinf, random and pscost implement the callback for branching on
7493 relaxation candidates.
7494 - SCIP can branch on continuous variables. The branching value x' must not be one of the bounds. Two children (x <= x',
7495 x >= x') will be created.
7496 - the vbc visualization adds the branching type (lower or upper bound change) and the new bound to the node information
7497 - the vbc visualization adds the new bound of the branched variable to the node information
7498
7499- Statistic:
7500 - added statistic information about the first primal solution to SCIP statistic; in the statistic output a new line
7501 appears with this information
7502 - now the statistic displays the number of calls of the feasibility checking method of each constraint handler and the
7503 running time of it
7504
7505- Propagation:
7506 - New rounding and propagation heuristics
7507 - New propagator for variable bounds
7508 - primal heuristics may now be called directly after the node's propagation loop, using the new timing point
7509 `SCIP_HEURTIMING_AFTERPROPLOOP`
7510 - following methods SCIPinferVarUbProp(), SCIPinferVarLbProp(), SCIPinferVarLbCons(), SCIPinferVarUbCons() have a new 6th
7511 parameter `SCIP_Bool force` which allows bound tightening even if the difference to the newbound is below bound
7512 strengthening tolerance
7513 - added propagator for variable lower and upper bounds (prop_vbounds.{c,h}); adjusted cons_varbound.c, var.c, and,
7514 implics.c to work correctly with the new propagator
7515
7516- Nonlinear CIPs:
7517 + Improved constraint handler for quadratic constraints
7518 + New constraint handler for second order cone constraints
7519 + New MINLP heuristics (undercover, subnlp)
7520 + Preliminary support for non-linear relaxations (via expression trees)
7521 + Automatic branching on solutions from arbitrary relaxations and on continuous variables
7522
7523Performance improvements
7524------------------------
7525
7526- improved `settings/emphasis/cpsolver.set` to decrease time per node
7527- reworked access to pseudo solution and inference value of variables in order to reduce function calls
7528- changed default value of parameter `nodeselection/restartdfs/selectbestfreq` to 0; this means if the current node has
7529 no children the node with the best bound is selected (SCIPgetBestboundNode())
7530- added a dual reduction step in cons_knapsack.c
7531- fasten check for common cliques in SCIPcliquelistsHaveCommonClique
7532- SCIP with CPLEX as LP solver now uses quickstart steepest edge pricing as default instead of steepest edge pricing
7533- avoid unnecessary domain propagation and LP resolve at nodes with infeasible LP relaxation
7534- improved zerohalf cut separator: more than one delta is tested for MIR cuts, better handling of dense base
7535 inequalities, faster scaling of fractional coefficients in rows (now enabled), improved parameter settings (presolving)
7536
7537- LP solution:
7538 - in root node, first LP solution is checked for feasibility to avoid expensive setup
7539 - avoided restarting if LP solution is feasible
7540 - separators are not called any longer for an integral initial LP solution
7541
7542Examples and applications
7543-------------------------
7544
7545- New branch-and-price example which includes Ryan/Foster branching (binpacking example)
7546- New example illustrating the use of an event handler (`example/Eventhdlr`)
7547
7548Interface changes
7549-----------------
7550
7551- Enhanced user interface for callable library: manual restarts, predefined settings and many other features
7552- Support of wbo format for weighted PBO problems, IBM's xml-solution format and pip format for polynomial mixed-integer programs
7553- Extended reader for Flatzinc models
7554- new API for 'expressions interpreter': code that evaluates expression trees, including first and second derivatives
7555- NLP solver interface (NLPI) now independent of SCIP like LPI
7556- SCIP can now maintain a central NLP relaxation of the problem (similar to LP)
7557- SCIP can now manage a list of external codes (e.g., LP or NLP solver, ZIMPL)
7558- lp.h/lp.c and the lpi's were changed according to the changes mentioned below.
7559- adding and deletion of rows to the separation storage and to the LP can now be catched by events
7560 (`SCIP_EVENTTYPE_ROWADDEDSEPA`, `SCIP_EVENTTYPE_ROWDELETEDSEPA`, `SCIP_EVENTTYPE_ROWADDEDLP`, `SCIP_EVENTTYPE_ROWDELETEDLP`)
7561
7562### New and changed callbacks
7563
7564- new callback SCIP_DECL_BRANCHEXECRELAX(), together with new parameter in SCIPincludeBranchrule() for branching on a
7565 relaxation solution
7566
7567- Copying a SCIP instance:
7568 - Constraint handlers have two new callback methods. One for copying the constraint handler plugins
7569 SCIP_DECL_CONSHDLRCOPY() and the other for copying a constraint itself, SCIP_DECL_CONSCOPY().
7570 - All plugins, like \ref BRANCH `branching rules` and \ref HEUR `primal heuristics`, have a new callback method (see, e.g.,
7571 type_branch.h and type_heur.h for more details):
7572 - SCIP_DECL_BRANCHCOPY(x), SCIP_DECL_HEURCOPY(x) etc.
7573 - When copying a SCIP instance, these methods are called to copy the plugins.
7574 - The main problem has a new callback method (see type_prob.h for more details) SCIP_DECL_PROBCOPY(x) when copying a
7575 SCIP instance, this method is called to copy the problem's data.
7576 - Variables have a new callback method (see type_var.h for more details) SCIP_DECL_VARCOPY(x) when copying a SCIP
7577 instance, this method is called to copy the variables' data.
7578
7579- Restarts:
7580 - The callback SCIP_DECL_PROBEXITSOL(x) in the main problem has one new parameter (see type_prob.h for more details):
7581 - The parameter `restart` is `TRUE` if the callback method was triggered by a restart.
7582
7583### Deleted and changed API functions
7584
7585- All C++ objects and constructors have a SCIP pointer, now.
7586- added parameter scip to ObjCloneable::clone()
7587- changes in a row can now be catched via row events (SCIPcatchRowEvent(), SCIPdropRowEvent(),
7588 `SCIP_EVENTTYPE_ROWCOEFCHANGED`, `SCIP_EVENTTYPE_ROWCONSTCHANGED`, `SCIP_EVENTTYPE_ROWSIDECHANGED`)
7589- added new parameter `varcopy` to SCIPcreateVar() to add the function for copying variable data
7590- in case of using SCIPwriteTransProblem() the currently (locally) valid problem is written this now also includes the
7591 local constraints
7592
7593- Settings:
7594 - The predefined setting files like `settings/cuts/off.set,aggressive.set,fast.set` have been replaced by
7595 interface methods like SCIPsetHeuristics(), SCIPsetPresolving(), SCIPsetSeparating(), and SCIPsetEmphasis() in
7596 \ref scip.h and by user dialogs in the interactive shell like
7597 `SCIP> set {heuristics|presolving|separating} emphasis {aggressive|fast|off}` or
7598 `SCIP> set emphasis {counter|cpsolver|easycip|feasibility|hardlp|optimality}`
7599 - All functions for setting user parameters of different types like SCIPparamSetBool(), SCIPparamSetChar(),
7600 SCIPparamSetInt(), SCIPparamSetLongint(), and SCIPparamSetString() in pub_paramset.h have a new parameter
7601 `quiet` it prevents any output during the assign to a new value.
7602
7603- NLP:
7604 - NLPIs can now be used without generating a SCIP instance (i.e., do not require a SCIP pointer), code moved into src/nlpi
7605 - NLPIs can now be managed like other SCIP plugins, i.e., they can be included into the SCIP core and accessed by
7606 methods SCIPincludeNlpi(), SCIPfindNlpi(), SCIPgetNNlpis(), SCIPgetNlpis(), SCIPsetNlpiPriority()
7607
7608- Intervalarithmetic:
7609 - method SCIPgetVarPseudocostCurrentRun() now returns the pseudocost value of one branching direction, scaled to a unit
7610 interval, old method now called SCIPgetVarPseudocostValCurrentRun()
7611 - renamed SCIPintervalScalarProductRealsIntervals()/SCIPintervalScalarProduct() by
7612 SCIPintervalScalprodScalars()/SCIPintervalScalprod() and redesigned them in intervalarith.c including new methods
7613 SCIPintervalScalprodScalarsInf/Sup()
7614
7615- Branching:
7616 - The usage of strong branching changed. Now, SCIPstartStrongbranch() and SCIPendStrongbranch() must be
7617 called before and after strong branching, respectively.
7618 - The methods SCIPgetVarPseudocost() and SCIPgetVarPseudocostCurrentRun() in \ref scip.h now return the pseudocost value of
7619 one branching direction, scaled to a unit interval. The former versions of SCIPgetVarPseudocost() and
7620 SCIPgetVarPseudocostCurrentRun() are now called SCIPgetVarPseudocostVal() and SCIPgetVarPseudocostValCurrentRun(), respectively.
7621 - The methods SCIPgetVarConflictScore() and SCIPgetVarConflictScoreCurrentRun() in \ref scip.h are now called
7622 SCIPgetVarVSIDS() and SCIPgetVarVSIDSCurrentRun(), respectively.
7623 - The methods SCIPvarGetNInferences(), SCIPvarGetNInferencesCurrentRun(), SCIPvarGetNCutoffs(), and
7624 SCIPvarGetNCutoffsCurrentRun() are now called SCIPvarGetInferenceSum(), SCIPvarGetInferenceSumCurrentRun(),
7625 SCIPvarGetCutoffSum(), and SCIPvarGetCutoffSumCurrentRun(), respectively. Furthermore, they now return
7626 `SCIP_Real` instead of `SCIP_Longint` values.
7627 - The method SCIPgetVarStrongbranch() has been replaced by two methods SCIPgetVarStrongbranchFrac() and
7628 SCIPgetVarStrongbranchInt().
7629
7630- Copying a SCIP instance:
7631 - Every new callback method resulted in a new parameter of the include function for the corresponding plugin,
7632 e.g., SCIPincludeBranchrule() has two new parameters `SCIP_DECL_BRANCHCOPY((*branchcopy))` and
7633 `SCIP_DECL_BRANCHEXECREL((*branchexecrel))`. In the same fashion, the new callbacks
7634 `SCIP_DECL_VARCOPY` and `SCIP_DECL_PROBCOPY` led to new parameters in SCIPcreateVar() and SCIPcreateProb() in
7635 scip.c, respectively.
7636 - W.r.t. to copy and the C++ wrapper classes there are two new classes. These are `ObjCloneable` and `ObjProbCloneable`.
7637 The constraint handlers and variables pricers are derived from `ObjProbCloneable` and all other plugin are derived from `ObjCloneable`.
7638 Both classes implement the function `iscloneable()` which return whether a plugin is clone able or not. Besides that each class has a
7639 function named `clone()` which differ in their signature. See objcloneable.h, objprobcloneable.h, and the TSP example for more details.
7640 - SCIPincludeHeur() and SCIPincludeSepa() in \ref scip.h, as well as scip::ObjSepa() and scip::ObjHeur(), have a new parameter:
7641 `usessubscip`: It can be used to inform SCIP that the heuristic/separator to be included uses a secondary SCIP instance.
7642 - The argument success in `SCIP_DECL_CONSCOPY` has been renamed to valid.
7643
7644- Heuristics:
7645 - SCIPcutGenerationHeuristicCmir() in sepa_cmir.h has three new parameters:
7646 - `maxmksetcoefs`: If the mixed knapsack constraint obtained after aggregating LP rows contains more
7647 than `maxmksetcoefs` nonzero coefficients the generation of the c-MIR cut is aborted.
7648 - `delta`: It can be used to obtain the scaling factor which leads to the best c-MIR cut found within
7649 the cut generation heuristic. If a `NULL` pointer is passed, the corresponding c-MIR cut will already be
7650 added to SCIP by SCIPcutGenerationHeuristicCmir(). Otherwise, the user can generate the cut and add it to SCIP
7651 on demand afterwards.
7652 - `deltavalid`: In case, the user wants to know the best scaling factor, i.e., `delta` passed is not `NULL`,
7653 `deltavalid` will be `TRUE` if the stored scaling factor `delta` will lead to a violated c-MIR cut.
7654
7655### New API functions
7656
7657- added SCIPcalcNegatedCliquePartition() to scip.c to calculate a clique partition on negations of all given binary
7658 variables
7659- SCIPpermuteArray() that randomly shuffles an array using the Fisher-Yates algorithm
7660- SCIPgetRandomSubset() that draws a random subset of disjoint elements from a given set of disjoint elements
7661- SCIPswapPointers()
7662- SCIPlpiGetSolverDesc() to get a descriptive string of an LP solver (developer, webpage, ...)
7663- SCIPholelistGetNext() to get the next hole of the hole list
7664- SCIPlpRecalculateObjSqrNorm() which is used when the old calculated square norm was unreliable
7665- SCIPpricerIsDelayed() which returns if the pricer is delayed (see pub_pricer.h)
7666
7667- Variables:
7668 - SCIPvarIsBinary() which checks if a variable is (implicit) binary (see var.c for more details)
7669 - SCIPvarGetHolelistOriginal(), SCIPvarGetHolelistGlobal(), SCIPvarGetHolelistLocal() to get the original, global and local holes, respectively
7670 - SCIPvarGetProbvarHole() to tranform a given domain hole to the corresponding active, fixed, or multi-aggregated variable
7671
7672- Restart:
7673 - allow user to trigger a restart during presolving SCIPrestartSolve()
7674 - SCIPrestartSolve() that allows the user to manually restart the solving process
7675 - SCIPisInRestart() to detect whether we are currently restarting
7676
7677- Heuristics:
7678 - for heuristics SCIPheurSetFreq() to change the frequency of the heuristic (pub_heur.h, heur.c)
7679 - SCIPsepaUsesSubscip(), SCIPheurUsesSubscip()
7680
7681- Intervalarithmetic:
7682 - SCIPeventGetHoleLeft() and SCIPeventGetHoleRight() for accessing the left right interval bound of a domain hole added or removed event
7683 - SCIPholelistGetLeft() and SCIPholelistGetRight()to get the left and right interval bounds of the open hole interval
7684 - SCIPintervalAddInf/Sup/Vectors(), SCIPintervalMulInf/Sup() in intervalarith.c
7685
7686- Sorting:
7687 - added SCIPsortPtrPtrLongIntInt(), SCIPsortLongPtrPtrIntInt() and corresponding sorting/inserting/deleting methods in
7688 pub_misc.h and necessary defines in misc.c
7689 - added SCIPsortLongPtrInt() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
7690 - added SCIPsortPtrPtrInt() (and various other) and corresponding sorting/inserting/deleting methods in pub_misc.h and
7691 necessary defines in misc.c
7692 - SCIPsortPtrBool() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
7693
7694- Constraint Handlers:
7695 - SCIPconshdlrGetEnfoConss(), SCIPconshdlrGetNEnfoConss()
7696 - can now forbid upgrading of individual linear constraints (SCIPmarkDoNotUpgradeConsLinear())
7697 - SCIPpermuteProb() that randomly permutes constraints and variables
7698 - SCIPgetResultantOr() which returns the resultant of an `or` constraint
7699 - SCIPmarkDoNotUpgradeConsLinear() in cons_linear.?, which allows to forbid upgrading of linear constraints
7700 - SCIPgetNUpgrConss() which returns the number of upgraded constraints
7701 - SCIPconshdlrGetCheckTime() and SCIPconshdlrGetNCheckCalls() which returns the running time in the feasibility checking of the
7702 corresponding constraint handler respectively the number of calls of the checking method (implemented in cons.c)
7703
7704- Copy:
7705 - SCIPcopy() to clone a SCIP instance
7706 - SCIPcopyPlugins(), SCIPcopyParamSettings(), SCIPcopyVars(), SCIPcopyConss(), SCIPgetVarCopy() to copy
7707 individual parts of a SCIP instance separately.
7708 - SCIPcopyProbData() and SCIPprobCopyProbData() which copies the probdata from a sourcescip to a targetscip
7709
7710- Branching:
7711 - two new functions SCIPgetVarsStrongbranchesFrac()/SCIPgetVarsStrongbranchesInt() for computing strong branching
7712 information for several variables
7713 - SCIPbranchruleGetNRelaxCalls() to get the total number of times, a particular branching rule was called on a relaxation solutions
7714 - SCIPbranchRelax() to branch on a relaxation solution
7715 - SCIPbranchVarVal() to branch on an arbitrary value within the variable's bounds
7716 - SCIPbranchGetBranchingPoint() and SCIPgetBranchingPoint() to select branching point for a variable, e.g.,
7717 ensure branching point is inside the interval for a continuous variable
7718 - SCIPexecRelpscostBranching() in branch_relpscost.{c,h}; this method allows of calling the reliability
7719 pseudo cost branching algorithm for given set of branching candidates from the outside
7720 - SCIPinitVarBranchStats() to initialize the branching statistics (such as pseudo costs, VSIDS, inference values) of a variable
7721 - SCIPselectBranchVarPscost() in branch_pscost.{c,h}; this method selects from a given candidate array a
7722 branching variable w.r.t. pseudo cost branching for relax candidates
7723
7724- Reading, Writing and Parsing:
7725 - SCIPparseVarName() which parses a string in cip-format as a variable name
7726 - SCIPparseVarList() which parses a string as a variable list in cip-format
7727 - the Flatzinc reader can now handle the output annotations of the Flatzinc format; the method SCIPprintSolReaderFzn()
7728 outputs the given solution in Flatzinc format w.r.t. the output annotations
7729 - SCIPprintSolReaderFzn() which prints the best solution in Flatzinc format w.r.t. to the output annotations
7730 in the input file of the flatzinc model
7731 - SCIPwriteVarName() which writes a variable in cip-format to given stream
7732 - SCIPwriteVarsList() which writes an array of variables in cip-Format to given stream
7733 - SCIPwriteVarsLinearsum() which writes an array of variables and coefficients as linear sum in cip-Format to given stream
7734
7735- Copying a SCIP instance:
7736 - SCIPapplyRens() in \ref heur_rens.h has a new parameter `uselprows`. It can be used to switch from LP rows
7737 to SCIP constraints as basis of the sub-SCIP constructed in the RENS heuristic.
7738
7739- Parameters:
7740 - SCIPsetParamsCountsols() which sets the parameter for a valid counting process
7741 - SCIPsetEmphasis() which sets parameter to detect feasibility fast, handle hard LP, solves easy CIPs fast, behaves like a
7742 CP solver, set parameter for a valid counting process; the desired behavior is triggered via a parameter of the function
7743 - SCIPresetParam() to reset the value of a single parameter to its default value
7744
7745- Settings:
7746 - added SCIPsortRealRealRealPtr() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
7747 as basis for the subSCIP, setting ist to TRUE (uses LP rows) will lead to same version as before
7748 - SCIPsetHeuristics(), SCIPsetSeparating(), SCIPsetPresolving() which set the heuristics to aggressive, fast, off, or
7749 default settings, depending on the `SCIP_PARAMSET` parameter
7750 - SCIPsetSubscipsOff() which disables all plugins that uses subscips
7751 - SCIPsepaSetFreq() to set the calling frequency of a separator
7752
7753### Command line interface
7754
7755- added new dialog for setting the SCIP parameters for hardlp, optimality, easy CIP, CP like search
7756- added new dialog for setting the SCIP parameters for feasibility problems `SCIP> set emphasis feasibility`
7757- added new dialog for setting the SCIP parameters for counting `SCIP> set emphasis counting`
7758- added new dialog for setting presolving to aggressive, fast, or off in interactive shell
7759- added new dialog for setting separation to aggressive, fast, or off in interactive shell
7760- added new dialog for writing all solutions which are collected during the counting process (see cons_countsols.{c,h})
7761- added new dialog for setting heuristics to aggressive, fast, or off in interactive shell
7762- added new dialog `display pricers` which displays all included pricers
7763
7764### Interfaces to external software
7765
7766- added interface to CppAD (nlpi/exprinterpret_cppad.cpp)
7767- Improved Xpress, CPLEX, SoPlex interfaces
7768- the SoPlex interface now includes equilibrium scaling on lp's solved from scratch without starting basis
7769- the SoPlex interface can now double check each SoPlex result against CPLEX (lpi_spx.cpp)
7770- the SoPlex interface has the option to restore basis only after entire strong branching phase instead of after each
7771 strong branch (off, because it mostly appears to increase strong branching time and iterations) (lpi_spx.cpp)
7772
7773### Changed parameters
7774
7775- removed parameter `constraints/knapsack/maxnumcardlift` and adapted setting files
7776- changed parameter `lp/fastmip` from boolean to integer, possible values are 0 (off), 1 (medium, default), 2 (full,
7777 must not be used with branch-and-price).
7778
7779### New parameters
7780
7781- `branching/clamp` to set the minimal fractional distance of a branching point to a continuous variable' bounds
7782- `branching/random/seed` to change the initial seed value of the branching rule random
7783- `constraints/indicator/addCouplingCons` that allows to add variable upper bounds if addCoupling is true
7784- `constraints/indicator/enforceCuts` that allows to check for violated cust in enforcement
7785- `constraints/indicator/maxCouplingValue` for the maximal value of the coefficient in a coupling inequality/constraint
7786- `constraints/indicator/noLinconsCon` which controls whether the linear constraint is not explicitly
7787 added to the problem. default is FALSE
7788- `constraints/knapsack/dualpresolving` to switch dualpresolving on/off inside the knapsack constraint handler, default is TRUE
7789- `constraints/knapsack/presolpairwise` that allows pairwise presolving of knapsack constraints, default is TRUE
7790- `constraints/knapsack/presolusehashing` that allows fast pairwise presolving of knapsack constraints, default is TRUE
7791- `heuristics/crossover/dontwaitatroot` that allows to call crossover at root node independently from nwaitingnodes
7792- `heuristics/rens/uselprows` that allows to switch between LP row and SCIP constraints as basis for the
7793 subSCIP, default is TRUE (uses LP rows)
7794- `lp/rowrepswitch` telling simplex solver to switch to row representation of the basis (if possible),
7795 if number of rows divided by number of columns exceeds this value (default value infinity, i.e. never switch)
7796- `lp/threads` to change the number of threads used to solve the LP relaxation (default is 0: automatic)
7797- `misc/lexdualstalling` that turns on the lex dual algorithm if the separation process is stalling
7798- `misc/usevartable` and `misc/useconstable` which turns on/off the usage of hashtables mapping from
7799 variable/constraint names to the variables/constraints; when turned off, SCIPfindVar() and SCIPfindCons() may not be
7800 used; the hashtables can be turned off for subMIPs to improve the performance, default value TRUE
7801- `misc/usesmalltables` which results in using smaller tables for names, cliques and cuts and improves
7802 the performace for smaller instances, default value FALSE
7803- `misc/permutationseed` to change the permutation seed value for permuting the problem after the
7804 problem is transformed (-1 means no permutation)
7805- `reading/zplreader/usestartsol` which allows to switch ZIMPL start solutions off, default value TRUE
7806- `vbc/dispsols` to propose if the nodes where solutions are found should be visualized in the branch and bound tree
7807
7808### Data structures
7809
7810- implemented the data structure and events for global and local domain holes added and removed
7811- new data structures and methods to handle nonlinear expressions in NLPI ({type_, struct_, pub_}expression.{h,c}):
7812 nlpioracle can store and evaluate general NLPs now, nlpi_ipopt can solve general NLPs now
7813
7814Testing
7815-------
7816
7817- minor changes on several evaluation scripts (new statuses: better, solved, sollimit, gaplimit) and short-mode for cmpres.awk
7818- support for FreeBSD (32- and 64-bit) including minor changes in several scripts in the check-directory
7819
7820Build system
7821------------
7822
7823### Makefile
7824
7825- added scripts check_*.sh, evalcheck_*.sh and check_*.awk for blis, glkp, gurobi and symphony (including targets in
7826 Makefile) and slightly modified scripts for cplex, cbc and mosek and cmpres-script
7827- added target `lintfiles` which allows to call flexelint with a list of file, for example, make lintfiles
7828 `FILES=src/scip/prop_vbounds.c`
7829- the NLP solver interfaces and expression interpreter are located in a separate library (libnlpi.*; similar to the lpi
7830 library) and is required to link against the SCIP library also projects that use SCIP via `make/make.project` need to
7831 change their Makefile (!!!): in the $(MAINFILE) target, add $(NLPILIBFILE) behind $(LPILIBFILE) in the dependencies
7832 and add $(LINKCXX_l)$(NLPILIB)$(LINKLIBSUFFIX) to the linker flags
7833- The additional NLPI library requires a change in the Makefile of SCIP's project:
7834 The $(MAINFILE) target now has $(NLPILIBFILE) as additional dependency and the linking
7835 command requires $(LINKCXX_l)$(NLPILIB)$(LINKLIBSUFFIX) as additional argument.
7836- A bug in the Makefiles of older versions of the SCIP examples may cause
7837 data loss. If you have a custom Makefile, please ensure that the target
7838 `clean` is changed as described here:
7839 http://scipopt.org/download/bugfixes/scip-1.2.0/make.txt.
7840
7841Fixed bugs
7842----------
7843
7844- fixed bug in conflict.c in the method conflictsetAddBound()
7845- fixed `bug` in projects Makefiles w.r.t. `make clean`
7846- fixed bug in rapid learning with wrong ordering of dual and primal bound update, primal bound is now updated inside
7847 rapid learning
7848- fixed potential bug in rapid learning with dual reductions
7849- fixed potential bug where SCIPselectSimpleValue() returns a value slightly outside of the given bounds due to rounding
7850 errors (probably cancelation in subtraction in SCIPfindSimpleRational), now use rounding control and check result
7851- fixed bug that SCIP could not be continued after it has been stopped due to a limit
7852- fixed bug in var.c: SCIPvarChgLbOriginal() and SCIPvarChgUbOriginal() cannot access original bounds if the variable is
7853 negated
7854- fixed potential bug with pseudo solution branching on free variables
7855- fixed bug with multiaggregations whose infimum and supremum are both infinite: in such a case multiaggregation is now
7856 forbidden
7857- fixed numerical issue with multiaggregations which are infinite in one direction: value of multiaggregated variable
7858 could have been larger then inifinity
7859- fixed bug w.r.t. of adding a variable bound variable to its self
7860- fixed bug concering the incorrect assumption that every solution computed in SCIPlpGetUnboundedSol() is integral (we
7861 will not branch but return `infeasible or unbounded` like in presolving)
7862- fixed bug while breaking an clique down to their impications (in SCIPcliquetableCleanup() in implics.c) where the
7863 variable was not of vartype `SCIP_VARTYPE_BINARY`, instead of adding an implication we add a variable bound
7864- fixed bug with debugging a solution: during restarts erroneously it was claimed that the primal solution is cut off
7865
7866- Interface:
7867 - fixed bug w.r.t. ObjDialog and displaying the description of the dialog
7868 - fixed bug when aborting pricing with Ctrl-C
7869
7870- LP:
7871 - fixed bug in scip.c w.r.t. to call of conflict analysis for LPs which reached the objective limit in case of diving
7872 - fixed bug with resolving LPs at infeasible root node
7873 - fixed bug in lp.c: in sumMIRRow() rowtoolong was not set correctly
7874 - fixed bug in lp.c w.r.t. objective limit reached and the chosen comparison (fixed buglist entry 40)
7875 - fixed bug in lp.c: if in SCIPlpSolveAndEval() the LP has to be solved from scratch due to numerical troubles, reset
7876 `SCIP_LPPARAM_FROMSCRATCH` to `FALSE` afterwards
7877 - fixed bug in lp.c SCIProwGetObjParallelism() due to a wrong parallelism value which arised from cancellations during
7878 calculation of squared euclidean norm of objective function vector of column variables
7879 - fixed bug in lp.c: SCIPlpGetUnboundedSol() did not ensure that unbounded solution lies withing the bounds of the
7880 variables
7881 - fixed bug in lp.c w.r.t. to the number of `active` pricer
7882
7883- Solve:
7884 - fixed bug in solve.c where relaxation branching candidates were cleared, but the relaxation was still marked solved
7885 and not called again, furthermore, adjusted criterions for solving a relaxation again
7886 - fixed bugs in solve.c: even with LP solving disabled, the root LP was solved in case continous variables are
7887 contained; setting pricing/maxvars(root) to 1 resulted in not calling the pricers
7888 - fixed bug in solve.c: make sure SCIP terminates correctly also when a user interrupt or gap limit is reached, i.e.,
7889 avoid error `pricing was aborted, but no branching could be created!`
7890
7891- Tree:
7892 - fixed bug in tree.c: if an explicit branching point is given, we may not recompute a better centering point
7893 - fixed bug in tree.c: propagate implications on multi-aggregated should not be performed
7894
7895- Constraints:
7896 - corrected several asserts in linear and quadratic constraint handler concerning parsing of CIP format
7897 - fixed bug while deleting redundant variables, which have no influence on changing the feasibility of the linear
7898 constraints, we need to update the sides of the constraint at each step, bug number 51 in bugzilla
7899 - fixed bug in copy procedure of AND constraint handler, negated variables have been copied to their originals
7900 - fixed bug when deleting a constraint where the update was delayed and not processed yet (in cons.c)
7901 - fixed bug in cons_linear.c: binary variables should not be multi-aggregated
7902 - fixed bug in cons_quadratic.c: curvature of bivariate quadratic constraints was not detected correctly
7903 - fixed bug in cons_sos2.c: the branching position was sometimes mistakenly increased
7904 - fixed bug in propagation of cons_sos2.c: the node can be cut off at more places: the previous version was not
7905 sucessfull in this respect
7906 - fixed bug in cons_linear.c:applyFixings() which could lead to lhs/rhs smaller/larger than -/+infinity
7907 - fixed bug in cons_linear.c in detectRedundantConstraints() and corrected old bug fix in SCIProwCreate(): we want lhs
7908 <= rhs to be satisfied without numerical tolerances in order to avoid numerical problems in the LP solver
7909
7910- Knapsack Constraint Handler:
7911 - fixed bug in cons_knapsack.c: mergeMultiples() now detects whether a node can be cut off
7912 - fixed bug in cons_knapsack.c w.r.t. to items with zero weight
7913 - fixed bug in cons_knapsack.c: In SCIPseparateRelaxedKnapsack() not all variables need to be active in deeper regions
7914 of the tree
7915 - fixed bug in cons_knapsack.c and sepa_clique.c: the assumption that implications are always nonredundant and contain
7916 only active variables is not correct anymore as the corresponing vbound might be missing because of numerics
7917
7918- Separation and Cuts:
7919 - fixed bug in cutpool.c: the hashkey computation was not constant over time
7920 - fixed bug in cutpool.c: hashkey of a row changed during the solving process (if a row is made integral after creation,
7921 maxabsval can be invalid when adding it to the pool, but might be recomputed later on)
7922 - fixed bug in sepa_rapidlearning.c, stop processing if there are no binary variables left
7923 - fixed bug in sepa_rapidlearning.c, corrected computation of right dualbound
7924 - fixed bugs in sepa_zerohalf.c, e.g., handling of intscaling and substitution of variable bounds
7925 - fixed bug in sepastore.c in sepastoreApplyLb/Ub being to hard on feasibility decisions
7926 - fixed bug in sepa_flowcover.c: numerical issues while computing candidate set for lambda
7927
7928- LP Interfaces:
7929 - fixed bug in SoPlex autopricing due to which autopricing had behaved like steepest edge pricing so far
7930 - fixed bug in lpi_clp.cpp: SCIPlpiChgBounds() checks if the column status exists in Clp before using it
7931 - fixed wrong assert in Cplex LPI: Due to numerical inaccuracies, a few pivots might be performed after refactorization
7932 - fixed bug concerning assert(!SCIPlpDivingObjChanged(lp)) which was caused by wrong infinity double parameters for
7933 cplex
7934 - fixed makefile system for `OSTYPE=darwin` w.r.t. to CPLEX as LP solver
7935
7936- Presolving:
7937 - fixed bug in cons_setppc: aggregated variables were not correctly removed in presolving
7938 - fixed bug in presolving of linear constraint handler: in redundancy detection, two different numerical epsilons were used
7939 - fixed bug in presolving while not applying a bound change on a variable in a single-variable constraint (e.g. x1 =
7940 0.03) in cons_linear which is too small, that lead to another bound change in presol_trivial which is not allowed, so
7941 now this bound change will be forced
7942 - fixed SCIPvarIsTransformedOrigvar() in var.c (variables generated by presol_inttobinary returned false)
7943 - fixed bug w.r.t. an assert in presol_inttobinary.c; it was assumed that the aggregation which is performed there will
7944 never lead to an infeasibility, this is not true, see comment in presol_inttobinary.c
7945 - fixed bug in presol_trivial.c trying to fix continuous variables, now uses a less stricter comparison to fix variables
7946 - fixed bug in cons_bounddisjunction.c: presolve may have tried to tighten bounds on a multiaggregated variable (now
7947 upgrades to linear constraint)
7948
7949- Reading, Writing and Messages:
7950 - fixed bug while trying to write a MIP where SCIP needs to flush the lp changes first
7951 - fixed potential resource leak when running out of memory while writing files
7952 - fixed bug in reader_zpl.c which appeared using the parameter `reading/zplreader/parameters`
7953 - fixed bugs in flatzinc readers with constraints that exclusively consist of constants
7954 - fixed bug in reader_gms: correct handling of nonstandard bounds on general integer variables
7955 - fixed buglist entry 35, which was caused by a wrong read in correction when the reading buffer was full in
7956 reader_opb.c
7957 - fixed bugs in reader_fzn.c w.r.t. parsing and solution output in Flatzinc format
7958 - fixed bug in reader_fzn.c w.r.t. comment lines
7959 - fixed bug in reader_opb.c w.r.t. comment lines
7960 - fixed bug in message handler w.r.t. to messages which are longer then `SCIP_MAXSTRLEN`
7961
7962- Heuristics:
7963 - fixed bugs do to `HEUR_TIMING SCIP_HEURTIMING_AFTERPROPLOOP` which appeared during repropagation
7964 - fixed bug in trivial heuristic: the locking solution might have falsely initialized some values to zero
7965 - fixed bug in heur_oneopt.c w.r.t. to SCIPtrySol(); it is necessary that the bound of the solution is check otherwise,
7966 infeasible solution could be accepted as feasible
7967 - fixed bug in heur_trivial.c w.r.t. to debug messages after a solution was freed
7968 - fixed bug for `HEUR_TIMING SCIP_HEURTIMING_BEFOREPRESOL` and modifiable constraints
7969 - corrected wrong assert in DINS heuristic when called for an empty problem
7970 - fixed potential bug in OCTANE heuristic with nonbasic solutions
7971 - fixed bug in sub-MIP heuristics with parameter change if some default plugins are not included
7972 - fixed bug in trivial heuristic with bounds that are greater than the heuristic's infinity value
7973
7974Miscellaneous
7975-------------
7976
7977- As the interface contains several additional callback functions and
7978 parameters for plugins, some effort may be required to compile your
7979 own projects with SCIP 2.0. See also `Changes between version 1.2 and 2.0` in the doxygen
7980 documentation for additional information.
7981
7982@page RN1_2 Release notes for SCIP 1.2
7983
7984@section RN120 SCIP 1.2.0
7985*************************
7986
7987Features
7988--------
7989
7990- adjusted hard memory limit to (soft memory limit)*1.1 + 100mb in check.sh, checkcount.sh, check_cplex.sh,
7991 check_cluster.sh and check_cbc.sh
7992- new presolving step in cons_knapsack.c, same like `simplifyinequalities` in cons_linear.c
7993- now it's possible to write strings with more than `SCIP_MAXSTRLEN` amount of characters in all message.c functions
7994- the current/root lp can be marked to be no relaxation of the current/root problem
7995- added new preprocessing step (mergeMultiples) in cons_setppc.c where equal variables are merged
7996- Black-box lexicographic dual simplex algorithm; can now run lexicographical dual algorithm (parameter `lp/lexdualalgo`)
7997
7998- Bounds:
7999 - SCIP now has `lazy bounds`, which are useful for column generation: see @ref PRICER_REMARKS `pricer remarks` for an explanation.
8000 Each variable has now two additional `SCIP_Real` parameter which define a lazy lower and upper bound; lazy means that
8001 there exists constraints which implies these (lazy) bounds. If the lazy lower or upper bound is greater or less than
8002 the local lower or upper bound, respectively, then the corresponding bound is not put into the LP. The bounds are set
8003 to minus and plus infinity per default which yields the same behavior as before. With the methods SCIPchgVarLbLazy()
8004 and SCIPchgVarUbLazy() these bounds can be set. This is of interest if SCIP gets used as a branch-and-price
8005 framework. Attention! The lazy bounds need to be valid for each feasible LP solution. If the objective function
8006 implies bounds on the variables for each optimal LP solution, but these bounds may be violated for arbitrary LP
8007 solutions, these bounds must not be declared lazy!
8008 - interval arithmetic functions can work with unbounded intervals added new functions to allow more operations on
8009 intervals, including solving quadratic interval equations
8010
8011- Branching:
8012 - extended hybrid relpscost branching rule by usage of the average length of conflicts a variable appears in
8013 - `early branching`-functionality added: in a branch-and-price code, the user can stop pricing at a node although there
8014 may exist variables with negative reduced costs. In this case, the lp-lowerbound will not be used. The pricer has,
8015 however, the option to return a lower bound. This can be useful for column generation.
8016
8017- Constraints:
8018 - Copy constructors and i/o functionality for constraints: all linear type constraint handlers are able to copy
8019 constraints using the function SCIPgetConsCopy() in scip.h
8020 - the linear constraint handler is able to parse a string in CIP format and create a corresponding linear constraint
8021 - Constraint handler for indicator constraints and parsing them from *.lp and *.zpl files
8022 - the indicator constraint can now try to produce a feasible solution (via heur_trysol)
8023 - one can now write indicator constraints in LP-format
8024 - added constraint handler for quadratic constraints
8025
8026- Cuts:
8027 - added new version of zerohalf cuts from Manuel Kutschka
8028 - added multi-commodity-flow cut separator
8029
8030- Heuristics:
8031 - Heuristics which are applied before root LP
8032 - added heuristic that performs a local search in an NLP (takes only linear and quadratic constraints into account so far)
8033 - added heuristic that gets a solution from other components and tries it (heur_trysol.?)
8034 - new trivial heuristic: tries zero solution, lower and upper bound solution and some variable lock based fixing
8035 - added new timing point, `SCIP_HEURTIMING_DURINGPRICINGLOOP`, for calling heuristics; If this timing point is used the
8036 corresponding heuristics is called during the pricing loop of variables; we also added this timing point to
8037 heur_simplerounding.{h,c} which has the effect that a LP solution which satisfies all integrality conditions during
8038 the pricing loop is detected
8039
8040- Interfaces:
8041 - added first version of an interface to NLP solvers (type_nlpi.h, struct_nlpi.h, nlpi.h, nlpi.c, nlpi_oracle.h, nlpi_oracle.c)
8042 - Preliminary support of non-convex MIQCPs: Constraint handler for quadratic constraints, NLP heuristic and
8043 Ipopt interface, see \ref cons_quadratic.h.
8044 - There are LP-interfaces to QSopt and Gurobi (rudimentary).
8045
8046- Reader and Writer:
8047 - added reader and writer for FlatZinc models (reader_fzn.{c,h})
8048 - added writer for GAMS models (reader_gms.{c,h})
8049
8050Performance improvements
8051------------------------
8052
8053- Enhanced MCF cuts: stable version, used by default
8054- replaced some function calls in loop conditions
8055- in sepa_cmir.c, if mksetcoefs is invalid for delta=1 no other values of delta are tested anymore
8056- changed the timing of the feasibility pump in case of pricing
8057- removed changing of update rule to `ETA` from standard soplex update `Forrest-Tomlin` in lpi_spx.cpp
8058- improved memory usage in heur_octane.c
8059- improved reading time of opb-files, due to using a hashtable for all `and`-constraints
8060- improved performance of merging variables in mergeMultiples() in cons_knapsack.c
8061- improved performance in tightenWeightsLift() and SCIPseparateRelaxedKnapsack() in cons_knapsack.c, due to now
8062 sparse-cleaning `global` arrays instead of using BMSclearMemory... functions for cleaning local arrays each time
8063- improved performance in SCIPcliquelistRemoveFromCliques()
8064- improved performance in SCIPcalcCliquePartition()
8065- improved performance in SCIPvarGetActiveRepresentatives() in var.c
8066
8067- Presolving:
8068 - improved pairwise presolving in cons_and.c due to using a hashtable
8069 - improved pairwise presolving in cons_xor.c due to using a hashtable
8070
8071Interface changes
8072-----------------
8073
8074- A significant change for C++ users is that all include files of SCIP
8075 automatically detect C++ mode, i.e., no `extern `C`` is needed anymore.
8076- Reader for Flatzinc and GAMS models
8077
8078### New and changed callbacks
8079
8080- The callback SCIP_DECL_PRICERREDCOST(x) in the \ref PRICER `pricers` has two new parameters:
8081 + A `result` pointer determines whether the pricer guarantees that there exist no more variables. This allows for early branching.
8082 + A pointer for providing a lower bound.
8083
8084- The \ref CONS `constraint handlers` have two new callback methods (see type_cons.h for more details):
8085 + SCIP_DECL_CONSCOPY(x): this method can be used to copy a constraint.
8086 + SCIP_DECL_CONSPARSE(x): this method can be used to parse a constraint in CIP format.
8087
8088### Deleted and changed API functions
8089
8090- SCIPcalcMIR() in scip.h has two new parameter `mksetcoefsvalid` and `sol`. The parameter `mksetcoefsvalid` stores
8091 whether the coefficients of the mixed knapsack set (`mksetcoefs`) computed in SCIPlpCalcMIR() are valid. If the mixed
8092 knapsack constraint obtained after aggregating LP rows is empty or contains too many nonzero elements the generation of the
8093 c-MIR cut is aborted in SCIPlpCalcMIR() and `mksetcoefs` is not valid. The input parameter `sol` can be used to separate a
8094 solution different from the LP solution.
8095- new parameter `set` in SCIPconsSetInitial().
8096- some interval arithmetic method take an additional argument to denote which value stands for infinity in an interval
8097
8098- Variables:
8099 - SCIPgetVarClosestVlb() and SCIPgetVarClosestVub() in scip.h have a new parameter `sol`. It can be used to obtain the closest
8100 variable bound w.r.t. a solution different from the LP solution.
8101 - new parameters `lowerbound` and `result` in type_pricer.h: lowerbound can save a lower bound computed by the pricer,
8102 result indicates whether the pricer guarantees that there exist no more variables if no variable was found
8103
8104### New API functions
8105
8106- new methods to deactivate a pricer SCIPdeactivatePricer() in scip.c
8107- new methods in pub_misc.h/misc.c to access hash map lists and elements of a hash map list and to clear all entries in a hash map
8108- SCIPsetProbName() to set problem name in scip.h/c (SCIPprobSetName() in prob.h/c)
8109
8110- Objective:
8111 - SCIPgetTransObjscale() and SCIPgetTransObjoffset() in scip.c
8112 - SCIPaddObjoffset() in scip.h; sets offset of objective function
8113 - SCIPgetOrigObjoffset() in scip.h; returns the objective offset of the original problem
8114 - SCIPgetOrigObjscale() in scip.h; returns the objective scale of the original problem
8115
8116- Constraints:
8117 - detectRedundantConstraints() in cons_xor.c and necessary hash-functions for fast pairwise presolving
8118 - SCIPparseCons() in scip.h; parses constraint information (in cip format) out of a string
8119 - SCIPgetConsCopy() in scip.h; which copies a constraint of the source SCIP
8120
8121- Relaxation:
8122 - SCIPisLPRelax() and SCIPisRootLPRelax() in scip.c and scip.h returning whether the current/root LP is a
8123 relaxation of the current/root problem and thus defines a valid lower bound
8124 - SCIPlpSetIsRelax() and SCIPlpSetRootLPIsRelax() in lp.c and lp.h to set the information, whether the lp is a valid relaxation;
8125 this information is per default set to true and constraint be used. The aggregated version has only 2 linear constraints the
8126 default linearization has nvars + 1
8127
8128- Sort:
8129 - extended the sort template functions in sorttpl.c with a `five` array; now it possible to used this template to sort
8130 up to five arrays
8131 - new interface methods SCIPcolSort(), SCIProwSort(), SCIPcolGetIndex()
8132 - added SCIPsortPtrPtrLongInt() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines
8133 in misc.c
8134
8135- Variables:
8136 - SCIPprintNodeRootPath() in scip.h This method prints all branching decisions on variables from the root to the given node
8137 - SCIPnodeGetParentBranchings(), SCIPnodeGetAncestorBranchings(), SCIPnodeGetAncestorBranchingPath(); These methods return
8138 the set of variable branchings that were performed in the parent node / all ancestor nodes to create a given node
8139 - SCIPchgVarLbLazy() and SCIPchgVarUbLazy() in scip.h; These methods can be used to change the lazy lower or
8140 upper bound of a variable; This might has the consequences that the bounds of the corresponding variable is not in
8141 LP. This is the case if the lazy lower or upper bound is greater or less than the local lower or upper bound, respectively
8142 - SCIPvarGetLbLazy() and SCIPvarGetUbLazy() in pub_var.h; These methods return the lazy lower or upper bound, respectively
8143 - SCIPvarCompareActiveAndNegated() and SCIPvarCompActiveAndNegated() in pub_var.h for comparing variables
8144 negated, active or fixed the same way
8145 - SCIPparseVars() in scip.h; parses variable information (in cip format) out of a string
8146 - SCIPgetNFixedonesSetppc() and SCIPgetNFixedzerosSetppc() in cons_setppc.{h,c}; these methods returns
8147 current (local) number of variables fixed to one/zero in the given setppc constraint
8148 - SCIPgetVarConflictlengthScore(), SCIPgetVarAvgConflictlength(), SCIPgetAvgConflictlengthScore() and their pendants for the current run
8149 - added function SCIPvarsGetProbvarBinary() in pub_var.h; gets active, fixed, or multi-aggregated problem variables of
8150 binary variables and corresponding negated status
8151
8152### Interfaces to external software
8153
8154- LP Interfaces:
8155 - heavily revised Mosek interface
8156 - new interface to QSopt due to Daniel Espinoza
8157 - First version of LP interfaces to Gurobi and QSopt
8158 - Major performance improvements in LP interfaces to Clp, Mosek and SoPlex
8159
8160- External Software:
8161 - adjusted interface to ZIMPL (reader_zpl.{c,h} for ZIMPL version 2.10; this interface should also work with older ZIMPL versions
8162 - Adjusted interface to Zimpl version 3.0.0
8163 - added first version of an interface to Ipopt (only QCP, no deletion of vars/cons allowed; nlpi_ipopt.(h|c))
8164
8165- SCIP Interfaces:
8166 - On http://code.google.com/p/python-zibopt/source/checkout you find a beta
8167 version of a python interface to SCIP implemented by Ryan J. O'Neil.
8168
8169### Changed parameters
8170
8171- removed parameter `constraints/and/initiallp` since it is not needed anymore;
8172- set parameter `constraints/and/sepafreq` default value to 1
8173- display character of oneopt heuristic changed to `b`
8174
8175### New parameters
8176
8177- `branching/relpscost/advanced/conflenscore`, default value 0.001
8178- `constraints/and/aggrlinearization` in cons_and.c, aggregated version of the linearization
8179- `constraints/and/enforcecuts` in cons_and.c, should cuts be separated during LP enforcing?
8180- `constraints/and/presolusehashing` in cons_and.c, should pairwise presolving use hashing?, default TRUE
8181- `constraints/countsols/sollimit` in cons_countsols.c, counting stops, if the given number of solutions were found (-1: no limit)
8182- `constraints/xor/presolusehashing` in cons_xor.c, should pairwise presolving use hashing?, default TRUE
8183- `heuristics/oneopt/duringroot`, default value TRUE
8184
8185Build system
8186------------
8187
8188### Makefile
8189
8190- extend Makefile to link against Ipopt if `IPOPT=true` is set
8191
8192Fixed bugs
8193----------
8194
8195- fixed wrong use of pointer in lp.c
8196- fixed bug with array dimension not reset to zero when array is freed in pseudoobj propagator
8197- fixed bug with enforcement of pseudo solutions: if pseudo solution is choosen because LP hit a limit, it has to be
8198 enforced in any case
8199- fixed potential bug in coloring example: SCIPcreateChild() is now given an estimate in terms of the transformed
8200 problem by SCIPgetLocalTransEstimate(), no longer the estimated original problem value. Also clarified this in the
8201 comments for SCIPcreateChild()
8202- fixed compiler warning `warning: dereferencing type-punned pointer will break strict-aliasing rules` which resuts in
8203 scip-crashes with gcc version 4.4.0
8204- adjusted assert in var.c
8205- fixed bug in SCIPvarGetActiveRepresentatives() in var.c
8206- fixed bug with objective limit in lp.c: previously the infinity value of SCIP was used as default - now the value of
8207 LPI is used. In the earlier version in many cases the problems where never infeasible.
8208- added and adjusted some asserts, initialized some values
8209- increased the numerical stability of coefficient tightening for Big M formulations
8210- fixed bug with incorrect pseudo activities when objective of a variable switches sign in linear constraint handler
8211- fixed bug with empty constraints in several writing routines
8212- fixed `GGT-Kaibel-Bug` in var.c, prop_pseudoobj.c and cons_varbound.c that occurred while computing new values using
8213 infinity values
8214
8215- Bounds:
8216 - fixed bug in coefficient tightening with infinite bounds
8217 - fixed bug in solve.c: in case lowerbound >= upperbound, SCIPsolveIsStopped() returned `SCIP_STATUS_GAPLIMIT`
8218
8219- Nodes:
8220 - fixed bug in SCIPsolveNode() concerning the case that the time limit was hit while solving the LP relaxation of a
8221 subproblem which is already an LP (branching on pseudo solution is not possible)
8222 - fixed bug in vbc tools concerning of marking probing nodes
8223 - fixed bug in solve.c with nodes which are marked to be repropagated while enforcement
8224
8225- Variables:
8226 - fixed possible infinite loop while multiaggregating a variable in var.c
8227 - fixed bug in SCIPgetSolVals() similar to SCIPgetSolVal(): try to get original variables of transformed ones if the
8228 solution lives in original space
8229
8230- Pricing:
8231 - fixed potential bug: restarts are now only done if no active pricers exist
8232 - fixed bug in SCIPlpSolveAndEval(): if fastmip and pricers enabled and objlimit was reached but CPLEX did not perform
8233 the final pivot step in order to exceed the objlimit, do one additional simplex step with pricing strategy steepest
8234 edge, if this doesn't suffice, turn off fastmip temporarily and solve again. Also consider solstat of the new
8235 solution.
8236 - fixed bug with invalid pseudo solution (lower bound was always >= 0) when using pricing.
8237 - fixed bug in SCIPfreeProb() in scip.c: all pricers are deactivated now
8238
8239- Memory:
8240 - now frees debug memory
8241 - fixed bug with exponential complexity for reallocating memory in SCIPvarGetActiveRepresentatives() in var.c
8242 - fixed casting of void* pointers in memory.h for C++, adjusted the same for C in memory.h and due to that adjusted all
8243 header files(set whole files in extern `C`) and cpp-files(removed unnecessary extern `C` lines)
8244 - removed memory leak in connection with freeing branch and bound nodes: focusnode was not freed if both children could
8245 be cut off due to bounding
8246
8247- Reading and Writing:
8248 - corrected bug in reader_lp.c: earlier read bounds were thrown away (implementation was not conforming to standard)
8249 - fixed bug in reader_lp.c with respect to constraint and variable names which start with two or more dots `..`
8250 - fixed bug in all readers w.r.t. SCIPgetProbvarLinearSum()
8251 - fixed bug in reader_mps.c with respect to corrupted files
8252 - fixed bug in reader_mps.c with respect to writing transformed problems
8253 - changed wrong writing of mps files due to constraints without any name
8254 - fixed a bug during reading debug solution file
8255 - fixed bug in case of reading an objective function in opb format with multiple occurrences of the same variable
8256 - fixed bug in case of reading an objective function in lp format with multiple occurrences of the same variable
8257 - fixed a wrong fix of a reading bug, which was in reality a writing bug in MPS format; integer variables in mps format
8258 without bounds are binary variables, if the bound of an integer variable is infinity you have to write this bound
8259
8260- Separation:
8261 - fixed bug in sepa_cmir.c, sepa_mcf.c and sepa_flowcover.c: sol different to LP solution is now separated
8262 - corrected two asserts in sepa_redcost.c (reduced costs can be negative for fixed variables: qsopt uses this)
8263 - fixed bug in sepa_zerohalf.c; replacement of own sorting functions by template functions was incorrect
8264 - fixed bug in var.c, cons_knapsack.c and sepa_flowcover.c: variable bounds corresponding to implication are not
8265 generated if coefficient is large, variable bounds with large coefficients are ignored for construction of knapsack
8266 and snf relaxations
8267 - fixed bug in sepa_impliedbound.c concerning redundant implications
8268
8269- Cuts:
8270 - fixed bug in sepa_cmir.c concerning uninitialized mksetcoefs (if MIR-cut generation is aborted because the aggregated
8271 constraint is empty or contains too many nonzero elements mksetcoefs is invalid)
8272 - interrupts optimization process if a node will be cutoff, which allows the solution
8273 - fixed bug in sepa_impliedbounds.c and sepa_intobj.c: if separating a sol, this sol is now also given to SCIPaddCut()
8274 so that the efficacy of the cut is now computed correctly
8275 - fixed bug in solve.c caused by integer overflow due to setting the number of cuts to INT_MAX
8276
8277- Presolving:
8278 - fixed wrong result in check.awk, if infeasible problems are stopped in presolving
8279 - fixed exponential calculation of solution values during check of original solution, therefore changed
8280 SCIPvarGetActiveRepresentatives() in var.c and flattened all multiaggregated vars at the end of presolving in
8281 exitPresolve()
8282 - fixed bug with wrong abort criterion in presolving
8283 - fixed bug in presol.c caused by not reseting presolver-wasdelayed status
8284 - fixed bug in SCIPconsSetInitial() that occurred in pairwise presolving: add or delete constraint in initconss when
8285 changing the initial flag
8286
8287- Constraints:
8288 - fixed bug in cons.c caused by not resetting conshdlr data after restart
8289 - fixed memory error in cons_countsols.c
8290 - fixed assert in cons_and.c method SCIP_DECL_CONSINITSOL(consInitsolAnd)
8291 - fixed bug in cons_countsols.c we respect to warning message that `The current parameter setting might cause ...`
8292
8293- Knapsack Constraint Handler:
8294 - fixed wrong assert in cons_knapsack.c and handled a special this case in simplifyInequalities()
8295 - fixed some bugs in simplifyInequalities() in cons_knapsack.c
8296 - fixed bug in mergeMultiples() in cons_knapsack.c
8297 - adjusted ConsData and ConsHdlrData in cons_knapsack.c
8298 - fixed compiler warning caused by no initialization of two integer in cons_knapsack.c
8299 - fixed bug in cons_knapsack.c caused by having a multi-aggregated variable in a knapsack constraint, now applyFixing is
8300 able to resolve a binary multi-aggregation with integral values
8301
8302- Linear Constraint Handler:
8303 - fixed infinity loop in simplify inequalities in cons_linear.c
8304 - fixed bug in cons_linear.c: do not select variable as slack variable for multiaggregation in convertLongEquality if it
8305 has been marked as not-multiaggregable
8306 - fixed bug in cons_linear.c: also do not multiaggregate variables in dual preproccessing if it has been marked as
8307 not-multiaggregable
8308 - fixed bug in cons_linear.c: slight decrease of epsilon in order to make sure that scaled coefficients are really
8309 integral
8310 - fixed bug in chgRhs() and chgLhs() of cons_linear.c: after changing lhs or rhs of a constraints lhs <= rhs has to be
8311 satisfied without numerical tolerances
8312
8313- Heuristics:
8314 - added and changed some SCIPisStopped() calls in several heuristics
8315 - fixed bug in oneopt heuritic with start solution which has become infeasible due to global bound changes
8316
8317- Interfaces:
8318 - corrected several bugs in the Clp-interface concerning return values
8319 - fixed potential interface bug: time limits of 0.0 are not anymore passed to the LP solver, which may have caused
8320 errors
8321
8322@page RN1_1 Release notes for SCIP 1.1
8323
8324@section RN110 SCIP 1.1.0
8325*************************
8326
8327Features
8328--------
8329
8330- SCIP can now count integer feasible solutions for IPs/CIPs (without continuous variables) (see SCIPcount())
8331- check.awk now uses TeX package supertabular which supports automatic pagebreak
8332- struct `SCIP_Stat` has now two additional variables: `nprobboundchgs`, `nprobholechgs`; these are used to fix the domain
8333 reduction counts in sepa.c, cons.c, branch.c and prop.c; this means, that now the domain reduction counts are reduced
8334 by those domain reduceds which are preformed during probing
8335- added capabilities to flatten the (multi)-aggregation graph of variables
8336- pseudoobj propagator now also propagates the global lower (dual) bound
8337- new heuristic DINS (distance induced neighborhood search by Ghosh)
8338
8339- Output:
8340 - SCIP can now output a picture of the constraint matrix in PPM format.
8341 - output of real values is now done with 15 digits after the decimal point
8342 - Extended the capabilities of SCIP to output problems in different formats (LP, MPS, CIP, ...). You can output the original and
8343 transformed problem. Furthermore, generic names can be given to the variables and constraints.
8344 - The feasibility test for solutions at the end of the execution now outputs more useful information.
8345 This made some changes in the interface of constraint handlers necessary.
8346
8347- Presolving:
8348 - added predefined settings file presolving/aggressive.set
8349 - new presolver boundshift (presol_boundshift.{c,h}); this presolver is currently turned off with default parameter setting
8350
8351- Constraints:
8352 - linear constraint handler now detects continuous variables that are implicit integer in dual presolve
8353 - replaced some old sorting methods in cons_knapsack.c, heur_octane.c, sepa_flowcover.c and presol_probing.c through
8354 SCIPsort...() interfaces, adjusted misc.{c,h} and pub_misc.h for these changes
8355 - cons_countsols.c is now able to store the collected solution if required
8356 - added first version of SOS type 1 constraint handler (cons_sos1.{c,h})
8357 - added first version of SOS type 2 constraint handler (cons_sos2.{c,h})
8358 - less aggressive scaling in linear constraint handler presolve to improve numerics
8359 - added first version of constraint handler cons_countsols.{c,h}
8360
8361- Reader:
8362 - added ccg-reader (weighted column connectivity graph)
8363 - added reader for pseudo-Boolean problems (reader_opb.{c,h})
8364 - the ZPL reader is now able to pass a starting solution to SCIP
8365 - the MPS reader is now able to write a problem in MPS format
8366 - the ZIMPL reader now understands SOS type 1 and 2 constraints
8367 - the LP reader reads SOS constraints of type 1 and 2
8368 - the MPS reader reads the SOS section (but cannot yet handle `MARKERS`)
8369
8370- LPI:
8371 - The SoPlex LPI can now write basis files.
8372 - revised lpi_clp.cpp (many small changes, in particular writing and reading of bases)
8373 - added FASTMIP settings in lpi_clp.cpp that try to improve the performance of Clp as much as possible
8374
8375- Cuts and Separation:
8376 - the c-MIR separator now also tries to get rid of implicit integer variables by aggregation
8377 - allow cut selection based on support of inequality in orthogonality computation
8378 - disabled zerohalf cuts by default
8379 - adjusted all predefined settings files, e.g., `settings/cuts/fast.set`, such that they are consistent wrt removed,
8380 added and changed parameter values of scip.
8381 - New cutting plane separator MCF (beta version).
8382 - new separator sepa_zerohalf.{c,h}; separates {0,1/2}-Cuts according to Caprara and Fischetti
8383
8384Performance improvements
8385------------------------
8386
8387- heavily decreased the usage of SCIPisStopped(), which costs system time
8388- small performance improvement of c-MIR aggregation heuristic
8389- reworked strong branching in lpi_clp.cpp (scaling works now, bounds can be trusted)
8390
8391- Constraints:
8392 - The preprocessing has been revised. It now applies bound computations in a numerically more stable way. The pairwise
8393 comparison of linear, logicor, and setppc constraints has been improved.
8394 - better branching in SOS1/SOS2 constraints
8395 - fixed performance bug with large number of unnamed constraints that will kill the name hash table (now, unnamed
8396 constraints are not put into the hash table)
8397
8398- Cuts and Separation:
8399 - improved the performance of SCIPcalcMIR() and SCIPcalcStrongCG() by exploiting sparsity
8400 - improved performance of SCIPvarGetLPSol(), which affects many parts of the code, in particular Gomory and strong CG cuts
8401 - do not calculate MIR and StrongCG cut aggregations if number of nonzeros in aggregated row is too large
8402
8403- Presolving:
8404 - improved pairwise presolving in cons_linear.c: reduced cache misses, reduced number of SCIPisStopped() calls and
8405 included detecting of redundant constraints with hash table in advance
8406 - tighter memory limits in knapsack presolve lifting procedure to avoid overly expensive presolving
8407 - included detecting of redundant constraints with hash table in advance in cons_logicor.c and limit other pairwise
8408 presolving
8409 - included detecting of redundant constraints with hash table in advance in cons_setppc.c and limit other pairwise
8410 presolving
8411 - limit pairwise presolving in cons_linear.c
8412
8413Examples and applications
8414-------------------------
8415
8416- Added an example for the graph coloring problem in `examples/Coloring`, showing the usage of column generation.
8417- added SOS2 example
8418- extended TSP example
8419
8420Interface changes
8421-----------------
8422
8423### New and changed callbacks
8424
8425- New callback method SCIP_DECL_READERWRITE(x) in type_reader.h; this method is called to write a problem to file
8426 stream in the format the reader stands for; useful for writing the transformed problem in LP or MPS format. Hence,
8427 also SCIPincludeReader() has changed.
8428- The callback \ref CONSCHECK (SCIP_DECL_CONSCHECK()) in the constraint handlers now has a new parameter `printreason` that tells
8429 a constraint handler to output the reason for a possible infeasibility of the solution to be checked using
8430 SCIPinfoMessage(). Have a look at one of the constraint handlers implemented in SCIP to see how it works. This
8431 methodology makes it possible to output the reason of a violation in human readable form, for instance, for the check
8432 at the end of a SCIP run, where the obtained best solution is checked against the original formulation.\n This change
8433 often has little effect on C-implementations, since this parameter can be safely ignored with respect to the
8434 correctness of the code. The corresponding C++ method scip::ObjConshdlr::scip_check(), however, has to be extended
8435 and will not compile otherwise.
8436- added new LPI pricing option `SCIP_PRICING_LPIDEFAULT`, such that every LP interface can set the default pricing
8437 strategy on its own (`auto` is not useful for this, because for CPLEX, for example, SCIP seems to be worse with `auto`
8438 then with `steepest edge`)
8439- Added user pointer to callback methods of hash table, see pub_misc.h.
8440
8441### Deleted and changed API functions
8442
8443- SCIPgetVarRedcost() now returns 0 for variables that have been aggregated out or removed in presolving.
8444 reduced cost in case of infeasible LPs)
8445- new parameter `maxfrac` for SCIPcalcStrongCG()
8446- new parameter `maxmksetcoefs` for SCIPcalcMIR() and SCIPcalcStrongCG() methods
8447- new parameter `conshdlrname` in SCIPincludeLinconsUpgrade()
8448
8449- Problem:
8450 - new parameters `extension` in SCIPreadProb() defining a desired file format or `NULL` if file extension should be use
8451 - New parameters `extension` and `genericnames` in SCIPprintTransProblem(), SCIPprintOrigProblem(),
8452 SCIPwriteOrigProblem(), and SCIPwriteTransProblem() defining the requested format or `NULL` for default CIP format
8453 and using generic names for the variables and constraints. Examples are
8454 - SCIPprintTransProblem(scip, NULL, NULL, TRUE) displays the transformed problem in CIP format with
8455 generic variables and constraint names
8456 - SCIPprintOrigProblem(scip, NULL, `lp`, FALSE) displays the original problem in LP format with
8457 original variables and constraint names.
8458
8459- Sorting:
8460 - expand sorttpl.c by some parameters
8461 - changed some names for sorting methods
8462 - replaced sorting methods SCIPbsort...() by faster (quicksort/shellsort) algorithms SCIPsort...() Note that the order
8463 of the parameters has been changed to simplify the template code in sorttpl.c!
8464
8465- Checking:
8466 - SCIPcheckSolOrig() is restructured. The last two parameters have changed. They are now bools indicating
8467 whether the reason for the violation should be printed to the standard output and whether all violations should be
8468 printed. This reflects the changes in the constraint handlers above, which allow the automation of the feasibility
8469 test. The pointers to store the constraint handler or constraint are not needed anymore.
8470 - the parameter list of the method SCIPcheckCons() (scip.h) has changed; the new advatage is, that SCIP can print the
8471 reason for the violation of a constraint as for as the constraint handler supports that
8472 - the parameter list of the method scip_check() (objconshdlr.h) has an additional parameter `printreason` see for
8473 explanation the previous point
8474
8475### New API functions
8476
8477- LPI now has a function SCIPlpiGetSolverPointer() that returns a solver dependent pointer. This can be used to directly
8478 access the LP solver. This should, of course, only be used by people that know exactly what they are doing.
8479- added capabilities to avoid multi-aggregation of a single variable by setting a corresponding flag (SCIPmarkDoNotMultaggrVar())
8480- SCIPgetProbvarLinearSum()
8481- SCIPgetResultantAnd() which returns the resultant variable of an `and` constraint
8482- SCIPchgChildPrio() to change the node selection priority of the given child
8483- SCIPconsGetPos()
8484- SCIPrepropagateNode() to mark a node for repropagation
8485- SCIPcount() (in cons_countsols.h) for counting all feasible solution of a given CIP
8486- SCIPcreateRootDialog() (in dialog_default.h) which creates a root dialog
8487- SCIPgetVectorEfficacyNorm()
8488- SCIPseparateRelaxedKnapsack() in cons_knapsack.h
8489- SCIPgetCutoffdepth() which returns the depth of first node in active path that is marked being cutoff
8490- SCIPflattenVarAggregationGraph()
8491- SCIPclockGetLastTime()
8492- SCIPcalcHashtableSize() to get a reasonable hash table size
8493- SCIPgetVarFarkasCoef() and SCIPgetColFarkasCoef() to get the farkas coefficient of a variable (analogon of
8494- SCIPgetRepropdepth() to get the depth of first node in active path that has to be propagated again
8495- SCIPmajorVersion(), SCIPminorVersion() and SCIPtechVersion() returning the corresponding version
8496
8497- Read, Write and Print:
8498 - SCIPprintSysError() which encapsulates the strerror_r calls, the NO_STRERROR_R flag switches between the use
8499 of strerror_r and strerror inside
8500 - SCIPsnprintf() safe version of snprintf (and sprintf)
8501 - SCIPreaderCanRead() and SCIPreaderCanWrite() in pub_reader.h, these return TRUE if the corresponding
8502 reader is capable to read or write, respectively
8503 - SCIPwriteOrigProblem(), e.g., SCIPwriteOrigProblem(scip, `orig.lp`, NULL, FALSE) prints the original
8504 problem in LP format in the file `orig.lp`
8505 - SCIPwriteTransProblem(), e.g., SCIPwriteTransProblem(scip, NULL, NULL, FALSE) displays the transformed problem in CIP format
8506
8507- Heuristics:
8508 - SCIPcutGenerationHeuristicCmir() in sepa_cmir.h
8509 - SCIPheurGetTimingmask() and SCIPheurSetTimingmask()
8510
8511- Sorting:
8512 - added some downwards-sorting methods
8513 - SCIPbsortInd()
8514 - SCIPsortedvecInsert...(), SCIPsortedvecInsertDown...(), SCIPsortedvecDelPos...(),
8515 SCIPsortedvecDelPosDown...(), SCIPsortedvecFind...() and SCIPsortedvecFindDown...() to manage sorted vectors or
8516 groups of vectors of various data types that are sorted w.r.t. the first vector
8517
8518### Command line interface
8519
8520- advanced reading and writing dialog in interactive shell
8521
8522### Interfaces to external software
8523
8524- Many changes in the SoPlex interface: The current one is tailored towards SoPlex 1.4 (aka 1.3.3). All SoPlex functions
8525 (where applicable) should now have an exception handling. The Bugfix for adding columns has been moved to SoPlex. One
8526 can use ROW representation. Reading/writing of a basis has been implemented.
8527
8528### Changed parameters
8529
8530- changed default frequency parameters for RINS, Local Branching, Crossover and Mutation heuristic This should not
8531 change the performance but happened just for consistency reasons
8532- changed parameter default values for the priority of presolver `dualfix` and `inttobinary`
8533- removed parameter `separating/cmir/maxtestdeltaroot`
8534- new value `l` for parameter `lp/pricing`, which is the new default
8535
8536### New parameters
8537
8538- `constraints/and/linearize` to enable linearization of all <and> constraints (in presolving),
8539- `constraints/and/initiallp` to turn on, off, or `auto` that the LP relaxation of the AND constraints are in the initial LP;
8540- `constraints/countsols/collect` to enable the storing of the solutions; default value FALSE;
8541- `constraints/indicator/addCoupling` to enable generation of relaxation
8542- `constraints/indicator/branchIndicators` to decide whether it is branched on indicator constraints in enforcing
8543- `constraints/indicator/genLogicor` to decide whether logicor constraints instead of cuts are generated
8544- `constraints/indicator/sepaAlternativeLP` to decide whether separation takes place using the alternative LP
8545- `constraints/linear/aggregatevariables` to search for aggregations in equations in the presolving step
8546- `constraints/linear/dualpresolving` to disable dual presolving step in the linear constraint handler; default value is TRUE
8547- `constraints/linear/simplifyinequalities` to enable a simplification step for inequalities; default value is set to FALSE = disabled
8548- `constraints/linear/upgrade/binpack` to enable or disable the linear upgrading process
8549- `constraints/linear/upgrade/eqknapsack` to enable or disable the linear upgrading process
8550- `constraints/linear/upgrade/invarknapsack` to enable or disable the linear upgrading process
8551- `constraints/linear/upgrade/knapsack` to enable or disable the linear upgrading process
8552- `constraints/linear/upgrade/logicor` to enable or disable the linear upgrading process
8553- `constraints/linear/upgrade/setppc` to enable or disable the linear upgrading process
8554- `constraints/linear/upgrade/varbound` to enable or disable the linear upgrading process
8555- `constraints/linear/presolusehashing` to use hashing comparison in cons_linear.c; default value is TRUE
8556- `constraints/logicor/presolusehashing` to use hashing comparison in cons_logicor.c; default value is TRUE
8557- `constraints/setppc/presolusehashing` to use hashing comparison in cons_setppc.c; default value is TRUE
8558- `constraints/SOS1/branchNonzeros` to decide whether SOS1 constraint with largest number of nonzero variables is picked for branching
8559- `constraints/SOS1/branchSOS` to enable or disable branching on SOS1 constraints
8560- `heuristics/feaspump/beforecuts` to allow the feaspump to be called before cut separation
8561- `heuristics/mutation/minimprove`
8562- `presol/donotmultaggr` which disables multiaggregation for all variables of the problem
8563- `separating/cmir/densityoffset` to allow for more c-MIR cuts on small models
8564- `separating/orthofunc` to choose function for scalar product computation in orthogonality test
8565
8566Testing
8567-------
8568
8569- updated mmm.{test,solu}, mittelmann.{test,solu}, miplib3.solu, miplib.solu, shortmiplib.test and added
8570 mittelmann_current.test, mittelmann_old.test
8571- added test scripts for testing counting (make testcount)
8572- removed tag make testpre (useless without corresponding scripts)
8573- added tag testcount (make testcount); this allows for testing counting problem
8574- replaced tcsh by bash and gawk by awk in all check scripts to achieve higher compatibility
8575
8576Build system
8577------------
8578
8579### Makefile
8580
8581- added `make/make.project` as default make include for external projects using SCIP
8582- added possibility to compile shared libraries in makefiles (and added `make/make.linux.x86.gnu.opt-shared`)
8583- replaced <string> by <cstring> in all C++-interfaces to get `strlen()` included (gcc-4.3 gave an error)
8584- Moved -rpath option for ld to linux-specific Makefiles.
8585- Re-activated readline library on darwin/ppc.
8586
8587- Flags:
8588 - added in all `make/make.*` `GMP_FLAGS` and `GMP_LDFLAGS`
8589 - new flag GMP with values (`auto`, `true and `false`); in case of `auto` the library gmp is linked if ZIMPL is
8590 included
8591 - adapted all makefiles of the examples accordingly
8592
8593- LP:
8594 - modified makefiles to accept ZIMPLOPT and LPSOPT flags (with values `opt` or `dbg` and default being `opt`), and
8595 removed `LPS=spxdbg` and `LPS=clpdbg`
8596 - added target spx132 for SoPlex version 1.3.2
8597
8598Fixed bugs
8599----------
8600
8601- fixed CTRL-C if NO_SIGACTION is set (e.g., for MinGW)
8602- added checks whether a plugin (handler) has already been included to avoid later complications e.g. with parameters.
8603- fixed bug with wrong `tightened` return value of some of the change bounds methods
8604- forced full propagation in presolving -> this fixes a bug that implied that variable locks became inconsistent
8605- replaced calls to perror() by SCIP error message using strerror(errno); this avoids problems with the error output
8606 stream
8607- fixed bug in method SCIPgetProbvarLinearSum()
8608- fixed bug with errors occurring in sub-MIPs. Search is only aborted in dbg mode, in opt mode a warning will be printed
8609- fixed bug in tclique-graph datastructure concerning insertion of edges into nonempty graph
8610- corrected bug in SCIPtreeBranchVar() (tree.c): several comparison functions needed a `feas`.
8611- fixed bug in SCIPtightenVarLb/Ub() in scip.c concering forcing a bound change (bound improvement is checked now)
8612- improved stage checking for bound computation
8613- fixed usage of command test for string comparison in check-scripts (now compatible with ubuntu)
8614- replaced sprintf and snprintf by SCIPsnprintf() fixed potential bug with overlong strings
8615- corrected bug in the case when soplex threw an exception in autopricing
8616- fixed bug in SCIPvarGetOrigvarSum() concerning the corner case the a negated variable has no parent variable in
8617 original problem
8618
8619- Aggregation:
8620 - avoid aggregation of implicit integers with fractional aggregation scalars
8621 - fixed bug in aggregateActiveIntVars(): If a < 0, multiply a*x + b*y == c by -1 (algo for finding initial solution does
8622 only work for a > 0).
8623 - avoiding aggregation that removes information about implicitly integer variables (removes bug)
8624 - fixed bug with exponential running times due to complicated recursive multi-aggregation
8625 - corrected bug in var.c occuring during applying boundchanges in varUpdateAggregationBounds method
8626
8627- Constraints:
8628 - fixed bug that a missing CONSTRANS in constraint handler leads to `NULL` pointer as constraint data for the copied
8629 constraints instead of pointer copies of the consdata (as explained in the constraint handler `HowTo`)
8630 - fixed bugs in second part of consdataTightenCoefs(): Removed min/maxleftactisinfinity (definition was not correct),
8631 fixed calculation of min/maxleftactivity and removed asserts concerning whether all redundant vars were deleted (led
8632 to different behavior in debug and opt mod).
8633 - fixed typo in documentation: default value for `dynamic` parameter is FALSE for all constraint handlers!
8634 - fixed bug in preprocessing of SOS2 constraints (cons_sos2.c)
8635 - fixed bug in cons_countsols.c concerning variable locking
8636 - fixed bug in cons_varbounds.c, concerning SCIPaddVarVlb() and SCIPaddVarVub()
8637 - fixed bug in applyFixings() in cons_varbound.c concerning tightening the bound of a variable left in a redundant
8638 constraint (bound change is forced now)
8639
8640- Heuristics:
8641 - fixed bug with useless objective cutoff in LNS heuristics
8642 - removed bug for values greater than (-)infinity, heur_shifting.c, heur_intshifting.c, heur_rounding.c, heur_oneopt.c
8643 - fixed bug with errors occurring in heuristic LPs. In opt mode a warning will be printed, abort in dbg mode
8644
8645- Linear Constraints:
8646 - fixed bug with wrong update of activities in linear constraints after global upper bound changes
8647 - fixed bug in preprocessConstraintPairs() in cons_linear.c concerning updating the flags of the constraint that stayes
8648 in the problem (nonredundant information were lost before)
8649 - fixed bug in cons_linear.c caused by comparing two infinity values during checking of using variable as slackvariable
8650 - removed bug for rhs/lhs greater than (-)infinity, cons_linear.c
8651 - removed bug caused by hashcomparison for non-sorted constraints, cons_linear.c
8652 - fixed bugs with wrong presolving due to cancellation in (res-)activities in cons_linear.c
8653 - removed BOUNDSCALETOL adjustment in cons_linear.c. This fixes bug with slightly infeasible variable fixings in
8654 presolving; reliable resactivities should make the BOUNDSCALETOL relaxation redundant.
8655 - removed `epsilontic` bug in cons_linear.c due to adjusting left/right hand side in applyfixing
8656 - fixed bug with multi-aggregated variables in cons_logicor: instead of fixing them, a linear constraint will be created
8657 - corrected bug in cons_linear.c:applyFixings() [if variable was fixed to infinity the rhs/lhs were wrong]
8658 - fixed bugs in pairwise presolving of cons_linear.c concerning deletion of upgraded constraints and inconsistent update
8659 of nchgsides in case of coefsequal and coefsnegated
8660 - fixed false assert and corrected a bug caused by deleting a constraint on `firstchanged` position in pairwise
8661 presolving with hashing in cons_linear.c
8662
8663- LP:
8664 - fixed handling of unbounded variables with 0 objective in SCIPlpGetModifiedPseudo[Proved]Objval() (lp.c)
8665 - fixed bug with uncatched LPSOLSTAT after hitting a time or iteration limit
8666 - corrected bug in SCIPlpGetState() if the LP is empty
8667 - fixed bug in SCIPlpSolveAndEval(): added extra simplex step if objlimit reached, fastmip and pricers enabled in order
8668 to get dual solution for pricing.
8669 - weakened two too strong asserts in lp.c concerning the LP result OBJLIMIT
8670 - fixed bug in SCIPlpSolveAndEval(): allow more than one extra simplex step for getting an objlimit exceeding solution
8671 with fastmip
8672
8673- Memory:
8674 - corrected invalid memory access in tcliqueIsEdge: added check whether node1 has no neighbors (tclique_graph.c)
8675 - removed memory leak detected with the help of coverity in dialog.c
8676 - fixed bug with memory reallocation in SCIPgetProbvarLinearSum()
8677 - tried to fix memory leak in dialog.c occuring from different versions of the readline/history libraries
8678 - removed possible memory leak in objdialog.cpp
8679
8680- Numerical:
8681 - fixed numerical issue in linear constraint propagation: need slightly more aggressive tightening such that probing
8682 does not choose a wrong value for fixing inside an epsilon interval
8683 - fixed numerical bug in dual presolving of linear constraint handler
8684 - avoid fixing variables to infinity in order to get rid of numerical inconsistencies in the original model
8685
8686- Objective:
8687 - added handling of the case of roundable variables with 0 objective in presol_dualfix.c
8688 - fixed bug with writing the MIP relaxation to a file concerning the objective function; in case the original objective
8689 function is requested, the transformed objective function gets re-transformed (scaling, offset)
8690 - fixed bug with wrong objective sense output for transformed problem. The transformed problem is always a minimization
8691 problem!
8692 - fixed bug with objective scaling after restart
8693
8694- Reading:
8695 - fixed bug with reading empty lines in TSP example
8696 - fixed bug with non-conformal parameter name in reader_ppm
8697 - fixed infinite loop in LP file reader if a line exceeds the character limit
8698 - fixed bug in reader_ppm while appending strings for output file
8699 - fixed some `SCIP_RETCODE` bugs in reader_fix.c, reader_sol.c, reader_sos.c and reader_zpl.c
8700 - fixed docu in type_reader.h
8701 - fixed bug with multi-aggregated variables which are de facto aggregated or fixed after flattening the aggregation tree
8702 - fixed bug with bound changes of variables in modifiable constraints during full dual presolving of linear conshdlr
8703 - increased compiler compatibility for C++ wrapper classed by adding extern `C` in obj*.cpp files and changing strlen
8704 calls to std::strlen
8705
8706- Separation:
8707 - corrected bug in priceAndCutLoop(): separation was aborted if domain reduction was applied
8708 - fixed bug in sepa_mir.c: size of testeddeltas-array was too small
8709 - corrected imlementation of SCIPlpiGetBasisInd() in lpi_clp.cpp (this fixes the bug that almost no Gomory cuts are
8710 found with Clp).
8711
8712- Sorting:
8713 - fixed bugs in sorttpl.c: fixed wrong arraysize in shellsort; in case an has at most one element, then no sorting is
8714 applied
8715 - fixed wrong if condition for function call in sorttpl.c
8716 - fixed obvious bug in linear constraint data sorting. Most part of the code assumed pure index sorting, but in fact, it
8717 was sorted by variable type as first criterion and index as second criterion.
8718
8719@page RN1_0 Release notes for SCIP 1.0
8720
8721@section RN100 SCIP 1.0.0
8722*************************
8723
8724Features
8725--------
8726
8727- SCIP now has a couple of specialized settings, all called scip_*.set
8728- SCIP is now compatible to the Exception branch of SoPlex
8729- if possible, objective function is scaled to make objective value integral with gcd 1
8730- slightly modified automatic constraint aging strategy
8731- new C templates disp_xxx.h and dialog_xxx.h and C++ wrapper classes objdisp.h and objdialog.h, respectively
8732- modified reader `sol`, st. files which where created via typing the order of commands `set log *.sol`,
8733 `disp sol var -`, `set log cplex.log` in Cplex can now be read
8734- new dummy LP interface `lpi_none.c`; useful for running SCIP without a LP solver
8735
8736- Presolver:
8737 - modified probing presolver to do multiple cycles if called in subsequent runs
8738 - changed sort algorithm in probing presolver
8739
8740- Node selection:
8741 - new node selection rule `estimate` (best estimate search)
8742 - new node selection rule `hybridestim`
8743
8744- Documentation:
8745 - the doxygen documentation now has HowTo's for all plugin types
8746 - the doxygen documentation now contains a FAQ
8747 - the documentation has now a TAB Modules; there you can find list of available constraint handles, presolvers,
8748 propagators, lpi interfaces, file readers and so on
8749
8750- Time:
8751 - time limit is now forwarded to lp solving algorithm
8752 - presolving, cut separation, primal heuristics and strong branching now better respect time limit
8753
8754- Heuristics:
8755 - best estimate search is now used in all large neighborhood search heuristics
8756 - new improvement heuristic `oneopt`
8757 - new heuristic `actconsdiving` following an idea of John Chinneck
8758
8759- Separation and Cuts:
8760 - modified cut selection code
8761 - cut conversion into linear constraints after a restart now works better
8762 - added flow cover separator
8763 - gomory cuts are now also separated for integral slack variables
8764 - less aggressive in Gomory cut separation
8765 - strong CG cuts are now also separated for integral slack variables
8766
8767Performance improvements
8768------------------------
8769
8770- greatly improved performance of LP file reader by replacing string copies with pointer copies
8771- removed performance bottleneck with non-bfs based node selectors and large leaf queues at the cost of a small memory
8772 overhead (2 ints per node in the leaf queue); this improves performance quite a bit on instances that take a large
8773 number of branching nodes
8774- improved performance of linear constraint propagation by delaying some floor/ceil calculations
8775- improved performance of clique cut separator
8776
8777Interface changes
8778-----------------
8779
8780### New and changed callbacks
8781
8782- new callback method SCIPdialogFree()
8783
8784### Deleted and changed API functions
8785
8786- slightly modified bound substitution heuristic in SCIPcalcMIR() and SCIPcalcStrongCG()
8787- slightly less conservative in numerics for SCIPmakeRowIntegral()
8788- linear and knapsack constraint handler may now deal with coefficients of value zero
8789- new parameter `maxbounddist` for SCIPincludeSepa() and constructor ObjSepa()
8790- new parameter `restart` for method SCIPfreeSolve()
8791- calling SCIPwriteLP() is now possible in Solved Stage
8792- SCIPwrite{LP,MIP} may no longer be called after solving, since the LP data structures may not be valid
8793- All functions SCIP<datatype>Param() got a new parameter `isadvanced`.
8794 This does not influence the performance of SCIP, but the position of the parameter in the settings menu.
8795 Hence, if you do not care about this, you can assign any value to it.
8796 You should add the corresponding flag to the SCIP<datatype>Param() calls in your own source code.
8797
8798- Version:
8799 - modified `SCIP_SUBVERSION` to be a number instead of a string (to be able to use `SCIP_SUBVERSION >= ...`)
8800 - SCIPsubversion() now returns an int instead of a const char*
8801
8802- Tree and Nodes:
8803 - new parameter `estimate` for SCIPcreateChild() giving an estimate for value of best feasible solution in the subtree to
8804 be created. One possibility is to use SCIPgetLocalOrigEstimate() for this value.
8805 - removed method SCIPnodeGetPriority()
8806 - removed parameter `lowestboundfirst` from SCIPincludeNodesel()
8807
8808- Branching:
8809 - removed parameter `branchdir` from SCIPbranchVar()
8810 - new parameters `leftchild`, `eqchild` and `downchild` for SCIPbranchVar()
8811 - SCIPgetVarStrongbranch() now also returns lperror == TRUE if the solving process should be stopped, e.g., because of a
8812 time limit
8813
8814- Variable tightening:
8815 - replaced methods SCIPvarGetClosestVlb() and SCIPvarGetClosestVub() from pub_var.h by new methods
8816 SCIPgetVarClosestVlb() and SCIPgetVarClosestVlb() in scip.h
8817 - new parameter `force` for SCIPtightenVarLb() and SCIPtightenVarUb()
8818
8819### New API functions
8820
8821- SCIPreadSol()
8822- SCIPwriteMIP()
8823- SCIPgetLocalOrigEstimate() and SCIPgetLocalTransEstimate()
8824- SCIPisStopped()
8825- SCIProwIsInGlobalCutpool()
8826- SCIPresetParams()
8827- SCIPgetVarRedcost()
8828- SCIPtightenVarLbGlobal() and SCIPtightenVarUbGlobal()
8829- SCIPsepaGetMaxbounddist()
8830- SCIPboundchgGetNewbound(), SCIPboundchgGetVar(), SCIPboundchgGetBoundchgtype(),
8831 SCIPboundchgGetBoundtype(), SCIPboundchgIsRedundant(), SCIPdomchgGetNBoundchgs(), SCIPdomchgGetBoundchg()
8832- SCIPnodeUpdateLowerboundLP()
8833- SCIPcalcNodeselPriority()
8834- SCIPnodeGetEstimate()
8835- SCIPnodeGetDomchg()
8836- SCIPgetRootNode() (in combination with SCIPcutoffNode(), this allows the immediate finishing of the optimization)
8837
8838### Command line interface
8839
8840- default dialog menu now includes the commands `set default` and `display parameters`
8841- added option to write node LP and MIP relaxations to LP file from interactive shell
8842
8843### Changed parameters
8844
8845- parameters are now separated into basic and advanced, the latter ones have been moved to extra submenus
8846- priority parameters are now restricted to be in [INT_MIN/4,INT_MAX/4] to avoid overflow errors in comparison methods
8847- increased priority of `estimate` node selector, such that this is the new default node selector
8848- changed meaning of parameter setting `nodeselection/childsel = l`; old meaning is now called `r`
8849- changed default value of `conflict/maxvarsfac` to 0.1
8850- changed default value of `conflict/useprop` to TRUE
8851- changed default value of `conflict/useinflp` to TRUE
8852- changed default value of `conflict/usepseudo` to TRUE
8853- changed default value of `conflict/maxlploops` to 2
8854- changed default value of `conflict/lpiterations` to 10
8855- changed default value of `conflict/interconss` to -1
8856- changed default value of `conflict/reconvlevels` to -1
8857- changed default value of `conflict/settlelocal` to FALSE
8858- changed default value of `constraints/linear/propfreq` to 1
8859- changed default values of `heuristics/∗diving/backtrack` to TRUE
8860- changed default value of `nodeselection/restartdfs/stdpriority` to 10000
8861- changed default value of `numerics/boundstreps` to 0.05 in order to avoid very long propagation loops on continuous variables
8862- changed default value of `presolving/restartfac` to 0.05
8863- changed default value of `presolving/restartminred` to 0.10
8864- changed default value of `separating/objparalfac` to 0.01 for performance reasons
8865- changed default value of global `separating/maxbounddist` to 1.0
8866- changed default value of `separating/objparalfac` to 0.0001
8867
8868### New parameters
8869
8870- `conflict/enable` to globally enable or disable conflict analysis
8871- `constraints/linear/maxcardbounddist` and `constraints/knapsack/maxcardbounddist`
8872- `heuristics/∗diving/backtrack` to activate 1-level backtracking for most of the diving heuristics
8873- `heuristics/feaspump/maxstallloops`
8874- `nodeselection/childsel` to control the child selection
8875- `presolving/immrestartfac`
8876- `separating/∗/maxbounddist` to have individual maxbounddist parameters per separator
8877- `separating/clique/backtrackfreq` to speed up clique cut separation in heuristic fashion
8878- `separating/redcost/continuous`
8879
8880Build system
8881------------
8882
8883### Makefile
8884
8885- added version numbers to library files (There will be a softlink generated in the lib/ and bin/ directories without
8886 version number that point to the latest compiled version.)
8887- added .exe extension to binaries of MinGW
8888- removed the `.static` extension associated to the LINK variable from the Makefile system (If you want to build
8889 makefiles for shared library generation, use the OPT variable. For example, you could create a makefile
8890 `make/make.linux.x86.gnu.opt-shared` and compile it with `make OPT=opt-shared`.)
8891
8892- Defaults and Options:
8893 - modified the default LP solver to be SoPlex instead of CPLEX
8894 - added `LPS=none` for compiling SCIP without a LP solver
8895 - made `ZIMPL=true` the default; if you do not want to include ZIMPL support, call `make ZIMPL=false`
8896
8897Fixed bugs
8898----------
8899
8900- fixed bug in rowScale() concerning deletion of almost zero coefficients
8901- weakened assert in primal.c in order to avoid numerical troubles
8902- fixed bug with too long variable names
8903- fixed bug with strange user descriptions of plugins
8904- changed position of some asserts to prevent segmentation faults
8905- SCIPgetAvgPseudocostCount() and SCIPgetAvgPseudocostCountCurrentRun() now return the average over all integer
8906 variables instead of all variables, since pseudo costs are not recorded for continuous variables
8907- fixed wrong sorting of plugins with priorities close to INT_MIN or INT_MAX
8908- replaced `line` by `read` in Makefile, since `line` is non-standard
8909- fixed bug with branching rules that produce only one child with no changes to the problem
8910- fixed bug that external relaxator is not reset appropriately for a new problem instance
8911- removed wrong assert in function paramWrite()
8912- fixed bug with uninitialized in check.awk
8913- fixed bug in ZIMPL file reader for multiple occurrences of a single variable in the objective function
8914- fixed bug with deleting variables from the transformed problem that are contained in the implication graph
8915- fixed bug in root reduced cost fixing propagator that leads to an empty domain for a variable as a proof of optimality
8916 of the current incumbent
8917- fixed bug with fractional coefficients of binary variables in cont --> impl int upgrading
8918
8919- Solution:
8920 - fixed bug with aggregated variables in debug solution test
8921 - now it is possible to add original solutions
8922 - fixed bugs with SCIPgetBestsol() returning `NULL` after a restart with user objective limit
8923 - fixed wrong status code in presence of user objective limit and a feasible solution that is not better than the limit
8924
8925- Bounds:
8926 - fixed bug with wrong bound changes of loose variables
8927 - changed wrong assert in SCIPnodeAddBoundinfer()
8928 - fixed bug in variable bounds search and insertion method
8929 - fixed bug regarding modifying bounds in original problem if negated original variables exist
8930 - fixed bug with multiple pending bound changes on some variable
8931
8932- Separator:
8933 - fixed bug in integer objective separator with restarts
8934 - fixed bug in integer objective separator with dynamic columns
8935
8936- Cuts:
8937 - fixed bug that cut age was not reset to zero for violated cuts
8938 - fixed bug in SCIPcutpoolAddNewRow() concerning update of minidx and maxidx of added row
8939 - fixed numerical bug in rowScaling of lp.c, which possibly cut off feasible solutions
8940 - significantly improved performance of c-MIR and Gomory cuts by caching closest VLB and VUB info
8941
8942- LP:
8943 - fixed numerical buf with slightly different LP optimum after resolving due to probing/diving
8944 - fixed bug in cmir and flowcover separator with variables which are currently not in the LP
8945 - fixed bug with LP size management in probing if column generation is used
8946 - fixed bug in LP file reader with row names identical to section keywords
8947 - fixed potential bugs due to errors in resolving the LP after diving or probing
8948 - fixed potential bugs in SCIPpriceLoop() and priceAndCutLoop(), st. now all LP solution stati are handled appropriately
8949 - fixed potential bug with non-existent LP in SCIPwrite{LP,MIP}
8950
8951- Constraint handler:
8952 - removed wrong assert in bounddisjunction constraint enforcement
8953 - fixed numerical bug in propagator of varbound constraint handler
8954 - fixed bug in variable bound constraint handler with changing bounds on multi-aggregated variables
8955 - fixed bug in linear constraint handler: only tight cuts are transformed into linear constraints after restart
8956 - fixed bug in bounddisjunction constraint handler with propagation of multi-aggregated variables
8957 - fixed bug with numerics in linear constraint handler due to non-representable `BOUNDSCALETOL`
8958 - fixed bug with almost integral multi-aggregation in dual presolve of linear constraint handler
8959 - fixed bug with numerics in update of min/maxactivity in linear constraint handler
8960
8961- Heuristics:
8962 - fixed bug in intshifting and oneopt heuristic with variables which are currently not in the LP
8963 - fixed bug with primal heuristics reducing the cutoff bound such that the current node is cut off
8964 - fixed bug in oneopt heuristic: must not be called on pseudo nodes if continuous variables are present
8965
8966@page RN0_9 Release notes for SCIP 0.9
8967
8968@section RN090 SCIP 0.9.0
8969*************************
8970
8971Features
8972--------
8973
8974- the EXITSOL callback of the plugins is now called before the LP and the global cut pool are freed
8975
8976- Primal Heuristics:
8977 - new primal heuristics `rens`, `mutation` and `veclendiving`
8978 - primal heuristics that run before the node is solved now know already whether the LP will be solved at the current
8979 node or not
8980
8981- Heuristics:
8982 - new heuristic `intshifting` (ID character `i`)
8983 - in the root node of the very first run, heuristics with timing `AFTERNODELPNODE`, `AFTERLPPLUNGE`, `AFTERPSEUDONODE`, and
8984 `AFTERPSEUDOPLUNGE` are now called before the enforcement of the constraint handlers, in particular before the branching
8985 rules; in this way, the branching rule can already benefit from a tighter primal bound
8986 - if a heuristic found a better solution after the LP loop (and in particular the `AFTERNODE` heuristics in the root node
8987 of the very first run, see above), domain propagation and LP solving is triggered again; this allows for additional
8988 reduced cost tightening and other dual propagations
8989 - slightly modified `crossover` and `rins` heuristics
8990 - improved performance of intdiving heuristic
8991 - improved heuristic `octane` and `shifting`
8992 - slightly modified rens and localbranching heuristics
8993 - modified guided diving heuristic such that it equals the original version of the heuristic (i.e., round in direction of the
8994 current incumbent solution instead of the average of all primal feasible solutions)
8995 - ID character for intdiving heuristic is now `I`
8996
8997- Separation and Cuts:
8998 - c-MIR cuts try now to scale the cut to integral values; however, cuts are still generated if this fails
8999 - hard-coded relative objective gain to consider a separation loop to be stalling is now changed from 1e-3 to 1e-4,
9000 which means that separation is not aborted as early as before
9001 - modified c-MIR cut separator to more closely resemble the original version of Marchand and Wolsey
9002
9003- Constraint:
9004 - possibility of SAT-like restarts after a number of conflict constraints have been found
9005 - improved presolving of and, or and xor constraints
9006 - implemented additional dual presolving in linear constraint handler
9007 - slightly modified presolving of varbound constraint handler
9008
9009Interface changes
9010-----------------
9011
9012### New and changed callbacks
9013
9014- new parameter `solinfeasible` for constraint handler callback methods `ENFOLP` and `ENFOPS`
9015- replaced callback parameter `inlploop` and `inplunging` by `heurtiming` in `SCIP_DECL_HEUREXEC`
9016- slightly changed the meaning of the result codes returned by external relaxators: if they modify the LP or tighten
9017 bounds of variables, they are not automatically be called again (it is assumed that they already made use of these
9018 changes). They are only called again, if they returned `SCIP_SUSPENDED` or if some other plugin modified the LP.
9019
9020### Deleted and changed API functions
9021
9022- new parameter `escapecommand` for SCIPdialoghdlrAddHistory()
9023- removed method SCIPgetVarData(); use SCIPvarGetData() from pub_var.h instead
9024- new calls SCIPgetLPBInvCol() and SCIPgetLPBInvACol() to access the basis inverse and simplex tableau columnwise
9025- new parameter `ndomredsfound` of SCIPpropagateProbing()
9026- new parameters `fixintegralrhs`, `maxfrac`, `mksetcoefs` and `fracnotinrange` in SCIPcalcMIR()
9027- modified SCIPfixVar() such that in problem creation stage it will change the bounds as requested even if the fixing
9028 value is outside of the current bounds
9029- replaced parameters `pseudonodes`, `duringplunging`, `duringlploop` and `afternode` by `timingmask` in
9030 SCIPincludeHeur() and constructor of ObjHeur() class use the following table to translate old settings into the new
9031 timingmask:
9032
9033| PSEUDONODES | DURINGPLUNGING | DURINGLPLOOP | AFTERNODE | timingmask |
9034|-------------|----------------|--------------|-----------|---------------------------------------------------------------|
9035| FALSE | FALSE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
9036| TRUE | FALSE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
9037| FALSE | TRUE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
9038| TRUE | TRUE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
9039| FALSE | FALSE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
9040| TRUE | FALSE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
9041| FALSE | TRUE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
9042| TRUE | TRUE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
9043| FALSE | FALSE | FALSE | TRUE | SCIP_HEURTIMING_AFTERLPPLUNGE |
9044| TRUE | FALSE | FALSE | TRUE | SCIP_HEURTIMING_AFTERPLUNGE |
9045| FALSE | TRUE | FALSE | TRUE | SCIP_HEURTIMING_AFTERLPNODE |
9046| TRUE | TRUE | FALSE | TRUE | SCIP_HEURTIMING_AFTERNODE |
9047| FALSE | FALSE | TRUE | TRUE | SCIP_HEURTIMING_AFTERLPPLUNGE \| SCIP_HEURTIMING_DURINGLPLOOP |
9048| TRUE | FALSE | TRUE | TRUE | SCIP_HEURTIMING_AFTERPLUNGE \| SCIP_HEURTIMING_DURINGLPLOOP |
9049| FALSE | TRUE | TRUE | TRUE | SCIP_HEURTIMING_AFTERLPNODE \| SCIP_HEURTIMING_DURINGLPLOOP |
9050| TRUE | TRUE | TRUE | TRUE | SCIP_HEURTIMING_AFTERNODE \| SCIP_HEURTIMING_DURINGLPLOOP |
9051
9052- Constraints:
9053 - renamed all occurences of `removeable` by the correct English word `removable`: SCIPconsIsRemovable(),
9054 SCIPsetConsRemovable(), SCIPvarIsRemovable(), SCIPcolIsRemovable(), SCIProwIsRemovable()
9055 - new parameter `sticktonode` in SCIPcreateCons(), SCIPcreateConsAnd(), SCIPcreateConsBounddisjunction(),
9056 SCIPcreateConsKnapsack(), SCIPcreateConsLinear(), SCIPcreateConsLogicor(), SCIPcreateConsOr(),
9057 SCIPcreateConsVarbound(), SCIPcreateConsXor(), SCIPcreateConsSetpart(), SCIPcreateConsSetpack(),
9058 SCIPcreateConsSetcover(): usually, you should set this to FALSE; if you want to add constraints as node markers with
9059 node data and, e.g., use the `activate` and `deactivate` callbacks to get informed about the activation and
9060 deactivation of the node, you should set this flag to TRUE in order to make sure, that the constraint will always be
9061 associated to the node and not moved to a more global node if this would be possible
9062 - slightly changed semantics of SCIPaddConsNode() and SCIPaddConsLocal(), such that a constraint which is added to the
9063 root node now enters the global problem (and is still existing after a restart)
9064
9065### New API functions
9066
9067- SCIPgetVerbLevel()
9068- SCIPescapeString()
9069- SCIPgetGlobalCutpool(), SCIPgetPoolCuts(), SCIPcutpoolGetCuts(), SCIPcutGetRow() and SCIPcutGetAge()
9070- SCIPconsGetNLocksPos() and SCIPconsGetNLocksNeg()
9071
9072### Command line interface
9073
9074- command shell now understands escape characters `\``,`'` and `\` which makes it possible to read in files with spaces in the
9075 name
9076
9077### Interfaces to external software
9078
9079- updated XPress interface to XPress-MP 17 (contributed by Michael Perregaard)
9080
9081### Changed parameters
9082
9083- changed default value of `heuristics/octane/usediffray` to FALSE
9084- removed parameter `heuristics/octane/usediffbwray`
9085- renamed parameter `heuristics/octane/useavgray` to `heuristics/octane/useavgnbray`
9086- changed default value of `heuristics/rens/binarybounds` to TRUE
9087- changed default value of `heuristics/octane/freq` to -1 in order to deactivate Octane
9088- parameter `heuristics/feaspump/maxsols` is now strict, i.e., if n solutions were already found, the feasibility pump
9089 starts to work only if `maxsols <= n`, instead of `maxsols < n`
9090
9091### New parameters
9092
9093- `conflict/restartnum` and `conflict/restartfac`
9094- `heuristics/octane/useavgray`
9095- `heuristics/octane/useavgwgtray`
9096- `limits/absgap` to define an absolute gap limit
9097- `separating/cmir/aggrtol`
9098- `separating/cmir/densityscore`
9099- `separating/cmir/fixintegralrhs`
9100- `separating/maxruns`
9101- `presolving/restartminred` which forbids another restart if the last one was not successful enough
9102- `propagating/abortoncutoff`
9103- `reading/zplreader/changedir` to control behavior of path switching of ZIMPL file reader
9104- `reading/zplreader/parameters` to pass additional parameters to ZIMPL
9105
9106Build system
9107------------
9108
9109### Makefile
9110
9111- added ncurses to the readline entries in the `make/make.*` files
9112- added quotes to sed expressions in Makefile (needed under Windows)
9113- modified makefiles for Windows/Intel
9114- added automatic query script in the Makefile for soft-link names
9115
9116Fixed bugs
9117----------
9118
9119- fixed bug with string pointer copy instead of string content duplication in constructors of C++ wrapper classes
9120- fixed bug in CPLEX interface with basis access methods that dualopt has to be called for more error status codes
9121- fixed bug with inserting two variable bounds of the same type on the same variable with the same bounding variable but
9122 with different sign of coefficient (e.g., `x <= 10*z + 5` and `x <= -5*z + 10`); in previous version, one of the two was
9123 removed, although both have a useful meaning; now, we keep both and detect a stronger global bound in the implication graph presolving
9124- objective function is now also checked for integrality after problem transformation (fixed a bug that a solution which
9125 was generated between transformation and presolving for an integral objective function did not reduce the cutoff bound by one)
9126- fixed a bug with cmir cut efficacy calculation (however, on my first tests, the performance reduced slightly!)
9127- fixed bug that SCIPvarGetAvgSol() always returned the upper bound (affected guided diving heuristic)
9128- fixed bug in RENS, RINS, Local Branching, Crossover and Mutation heuristics with wrong variable-subvariable assignments
9129- fixed bug in infeasible/bound-exceeding LP conflict analysis if the bounds were relaxed in diving (happens in intshifting heuristic)
9130
9131- Separation:
9132 - fixed bug with adding constraints with `INITIAL=true` and separating them afterwards, which lead to a second addition of
9133 the constraint's relaxation in the child node
9134 - separation LPs are now immediately resolved after a bound change was generated by a cut separator; before, the
9135 separation round was prematurely aborted, which means that a separation round limit was sometimes reached very quickly
9136 and some of the separators were not even called a single time
9137
9138- Cmir Cut Separator:
9139 - too large deltas are now also rejected in c-MIR cut separation
9140 - fixed bug in cmir cut separator, that 8*delta was not tried
9141 - fixed bug in cmir cut separator with wrong sign of slack in row score function
9142 - fixed bug in cmir cut separator with weights fixed to zero, thus making the current aggregation invalid
9143 - fixed bug in cmir cut separator with wrong calculation of cut efficacies
9144
9145@page RN0_8 Release notes for SCIP 0.8
9146
9147@section RN082 SCIP 0.8.2
9148*************************
9149
9150Features
9151--------
9152
9153- additional flag `delay` for pricers
9154- new propagator `rootredcost` which applies reduced cost fixing at the root node whenever a best new primal solution was found
9155- new separator `redcost` which replaces the internal reduced cost strengthening
9156
9157- LP:
9158 - extensions to the LP are kept even if the LP is not solved at the current node; however, if the LP turned out to be
9159 numerically instable, the extensions of the current node are still discarded
9160 - added removal of bound-redundant rows from the LP during root node LP solving loop
9161 - new display column `lpobj`
9162
9163- Constraints:
9164 - slightly changed priorities of constraint handlers
9165 - now, conflict constraints are also created if they were generated in strong branching or diving with insertion depth
9166 equal to the current depth
9167 - new constraint handler `bounddisjunction`
9168
9169- Readers:
9170 - renamed `sol` file reader to `fix` file reader (reads partial solution files and fixes variables to the given values)
9171 - added `sol` file reader which reads complete solution files and adds the solutions to the solution pool
9172 - LP and MPS file readers are now able to parse lazy constraints and user cuts sections
9173
9174- Presolver:
9175 - knapsack presolver now generates cliques in the clique table (this essentially solves `neos1.mps`)
9176 - new presolver `inttobinary`
9177
9178- Heuristics:
9179 - new primal heuristic `shifting`
9180 - diving heuristics abort earlier (did not come back in reasonable time on `fast0507`)
9181
9182Interface changes
9183-----------------
9184
9185- new solution status code `SCIP_STATUS_STALLNODELIMIT`
9186
9187### New and changed callbacks
9188
9189- slightly modified semantics of the `CONSINITLP` callback in the constraint handlers
9190
9191### Deleted and changed API functions
9192
9193- methods SCIPisLbBetter() and SCIPisUbBetter() have an additional parameter and slightly different meaning (they now
9194 compare the bound improvement *relatively* to the width of the domain and the bound itself)
9195- SCIPgetNSols() now returns an int instead of `SCIP_Longint`
9196- method SCIPreadProb() does not call SCIPfreeTransform() anymore; file readers that want to extend the existing problem
9197 must now call SCIPfreeTransform() themselves before modifying the original problem
9198- method SCIPgetBinvarRepresentative() can now also be called in problem creation stage
9199- additional parameter `maxpricerounds` in method SCIPsolveProbingLPWithPricing()
9200- changed name of method SCIPpresolGetNVarTypes() to SCIPpresolGetNChgVarTypes()
9201- method SCIPsplitFilenames() now treats both versions of slashes, `/` and `\`, as directory delimiters (under MinGW and
9202 CygWin, both are valid; so, we cannot treat file names anymore where the other slash is used as a regular character)
9203
9204- Constraints:
9205 - marking a constraint to be `initial` now means in addition, that if the constraint is added to a local node it will
9206 enter the LP at the time the node is first processed, even if parameters forbid separation at this node
9207 - changed name of method SCIPconshdlrGetNVarTypes() to SCIPconshdlrGetNChgVarTypes()
9208
9209- Conflicts:
9210 - method SCIPgetNConflictClausesFound() renamed to SCIPgetNConflictConssFound()
9211 - method SCIPgetNConflictClausesFoundNode() renamed to SCIPgetNConflictConssFoundNode()
9212 - method SCIPgetNConflictClausesApplied() renamed to SCIPgetNConflictConssApplied()
9213
9214### New API functions
9215
9216- SCIPsolveProbingLPWithPricing()
9217- SCIPchgVarLbRoot() and SCIPchgVarUbRoot()
9218- SCIPinRepropagation()
9219- SCIPaddDialogInputLine() and SCIPaddDialogHistoryLine()
9220- SCIPtransformProb() to create the transformed problem; enables the user, e.g., to add primal solutions before the presolving begins
9221- SCIPcreateSolCopy()
9222- SCIPareSolsEqual()
9223
9224- Getters:
9225 - SCIPgetRowKnapsack(), SCIPgetRowLinear(), SCIPgetRowLogicor(), SCIPgetRowSetppc(), and
9226 SCIPgetRowVarbound() for obtaining the linear relaxation of a corresponding constraint
9227 - SCIPgetLhsVarbound(), SCIPgetRhsVarbound(), SCIPgetVarVarbound(), SCIPgetVbdvarVarbound(), and
9228 SCIPgetVbdcoefVarbound()
9229 - SCIPgetLPRootObjval(), SCIPgetLPRootColumnObjval() and SCIPgetLPRootLooseObjval()
9230 - SCIPcolGetMinPrimsol() and SCIPcolGetMaxPrimsol()
9231 - SCIPgetFocusDepth()
9232
9233- Score:
9234 - SCIPgetAvgPseudocostScore()
9235 - SCIPgetAvgPseudocostScoreCurrentRun()
9236 - SCIPgetAvgConflictScore()
9237 - SCIPgetAvgConflictScoreCurrentRun()
9238 - SCIPgetAvgInferenceScore()
9239 - SCIPgetAvgInferenceScoreCurrentRun()
9240 - SCIPgetAvgCutoffScore()
9241 - SCIPgetAvgCutoffScoreCurrentRun()
9242
9243- Reduced Cost:
9244 - SCIPgetColRedcost()
9245 - SCIPvarGetRootRedcost()
9246
9247- Variables:
9248 - SCIPgetNVarsAnd() and SCIPgetVarsAnd()
9249 - SCIPgetWeightsKnapsack(), SCIPgetNVarsKnapsack(), SCIPgetVarsKnapsack() and SCIPgetWeightsKnapsack()
9250 - SCIPgetNVarsLinear(), SCIPgetVarsLinear() and SCIPgetValsLinear()
9251 - SCIPgetNVarsOr() and SCIPgetVarsOr()
9252 - SCIPgetNVarsXor() and SCIPgetVarsXor()
9253
9254### Command line interface
9255
9256- command line syntax changed to support batch modus without piping stdin with `<` or `|` operators
9257- advanced command line syntax:
9258 - `-l <logfile> `: copy output into log file
9259 - `-q `: suppress screen messages
9260 - `-s <settings> `: load parameter settings (.set) file
9261 - `-f <problem> `: load and solve problem file
9262 - `-b <batchfile>`: load and execute dialog command batch file (can be used multiple times)
9263 - `-c <command> `: execute single line of dialog commands (can be used multiple times)
9264
9265### Interfaces to external software
9266
9267### Changed parameters
9268
9269- removed parameter `propagating/redcostfreq`, because reduced cost strengthening is now an external separator plugin
9270- removed parameter `conflict/maxunfixed`
9271- parameter `conflict/maxclauses` renamed to `conflict/maxconss`
9272- parameter `conflict/interclauses` renamed to `conflict/interconss`
9273- parameter `conflict/reconvclauses` replaced by `conflict/reconvlevels`
9274- parameter `conflict/uselp` replaced by `conflict/useinflp` and `conflict/useboundlp`
9275- changed default value of `constraints/obsoleteage` to -1
9276- changed default value of `branching/relpscost/conflictweight` to 0.01
9277- changed default value of `branching/relpscost/inferenceweight` to 0.0001
9278- changed default value of `branching/relpscost/cutoffweight` to 0.0001
9279- in bfs node selector, parameter `minplungedepth` is now stronger than `maxplungedepth` if they conflict
9280
9281### New parameters
9282
9283- `constraints/linear/separateall`
9284- `conflict/lpiterations`
9285- `conflict/keepreprop`
9286- `branching/relpscost/conflictweight`, `branching/relpscost/inferenceweight`,
9287 `branching/relpscost/cutoffweight` and `branching/relpscost/pscostweight`
9288- `conflict/settlelocal`
9289- `conflict/depthscorefac`
9290- `limits/stallnodes`
9291
9292Build system
9293------------
9294
9295### Makefile
9296
9297- removed ncurses and pthread libraries from the Makefile; pthread is now only linked if CPLEX is used
9298
9299Fixed bugs
9300----------
9301
9302- fixed numerical bug in SCIPrealToRational() [thanks to Anders Schack-Nielsen]
9303- fixed bug in crossover heuristic with negative timelimit
9304- removed bug in conflict analysis with wrong redundancy check
9305- fixed bug that unexpected end of stdin (Ctrl-D or piped-in file without `quit` command) gives a segmentation fault
9306- fixed bug with inconsistent data structures after a global bound was changed at a local subproblem and the local
9307 bounds are not contained anymore in the new global bounds
9308- fixed dependency generation in example Makefiles
9309
9310- Knapsack:
9311 - fixed bug in knapsack presolving with redundancy check after applyFixings() [thanks to Anders Schack-Nielsen]
9312 - fixed bug in knapsack separator with empty initial covers
9313 - fixed bug in knapsack constraint disaggregation that may lead to acceptance of infeasible solutions
9314 - fixed bug in knapsack constraint handler where a modifiable constraint may be declared redundant
9315
9316- LP:
9317 - fixed bug with missing LP size updates after pricing or cut separation in probing [thanks to Marc Nuenkesser]
9318 - fixed bug in CPLEX interface with getting basis information after the LP was modified and restored
9319 - fixed bug with updating LP size in probing
9320 - fixed bug that SCIPgetLPSolstat() returns a valid status code even if the LP was not yet constructed for the current node
9321
9322- Variables:
9323 - fixed bug with invalid lazy updates after a restart where the LP is not solved again (e.g., due to all variables being fixed)
9324 - fixed bugs resulting from inactive general integer variables being member of the variable bounds array of a variable
9325 - fixed bug in updatePseudocost() with wrong lpgain distribution on multiple branching variables [thanks to Anders Schack-Nielsen]
9326 - fixed bug in objconshdlr.h where member variable scip_maxprerounds_ was declared as an `SCIP_Bool` instead of an int
9327 - branching on nearly-integral variables is now avoided in relpscost branching, which lead to a numerical assertion
9328
9329- Implication:
9330 - fixed bug with adding implications that fix the implication variable to the opposite value (due to the bug, it was
9331 returned that the whole problem is infeasible)
9332 - removed wrong assert in varRemoveImplicsVbs()
9333
9334- Cliques:
9335 - fixed bug in SCIPcliqueSearchVar() [thanks to Anders Schack-Nielsen]
9336 - fixed bug in SCIPcliqueAddVar() [thanks to Anders Schack-Nielsen]
9337
9338- Readers:
9339 - fixed bug in MPS file reader with `OBJSENSE`
9340 - fixed bug in LP reader with potentially uninitialized pointers [thanks to Martin Mueller]
9341
9342- Constraints:
9343 - it is now possible to branch on constraints without the risk of going into an infinite loop, because constraints marked as `initial`
9344 will be put to the LP relaxation (of the child nodes) even if separation is prohibited by the parameter settings
9345 - fixed bug that locally valid varbound constraints produce VLB/VUB entries [thanks to Anders Schack-Nielsen]
9346
9347@section RN081 SCIP 0.8.1
9348*************************
9349
9350Features
9351--------
9352
9353- improved performance of the priority queue in conflict analysis
9354- slightly modified restartdfs node selector
9355
9356- Presolving:
9357 - new presolver `implics` to find bound changes and aggregations out of the implication graph
9358 - modified probing order in probing presolver
9359
9360- Constraints:
9361 - changed handling of added constraints in separation calls
9362 - modified bookkeeping of locally added and disabled constraints such that the order of enabling and disabling constraints stays the same
9363 - logic or constraint handler now adds implications on clauses with 2 literals to the implication graph
9364 - and/or constraint handlers now add implications to the implication graph
9365 - xor constraint handler now uses stronger LP relaxation without auxiliary variable for xor constraint with 2 operands
9366
9367- Heuristics:
9368 - added preliminary version of `intdiving` heuristic (disabled in default settings)
9369 - added crossover heuristic
9370
9371- Readers:
9372 - LP file reader now accepts the keyword `Integer` for defining the start of the integer variables section
9373 - new file reader for (partial) solutions
9374
9375Examples and applications
9376-------------------------
9377
9378- added two small pricer examples (for C and C++)
9379- updated example code (s.t. it compiles again)
9380
9381Interface changes
9382-----------------
9383
9384### New and changed callbacks
9385
9386- callback method `CONSSEPA` of constraint handler was split into two methods `CONSSEPALP` and `CONSSEPASOL`
9387- callback method `SEPAEXEC` of separator was split into two methods `SEPAEXECLP` and `SEPAEXECSOL`
9388
9389### Deleted and changed API functions
9390
9391- replaced method SCIPsepaWasDelayed() by SCIPsepaWasLPDelayed() and SCIPsepaWasSolDelayed()
9392- additional parameter `sol` for methods SCIPaddCut(), SCIPgetCutEfficacy() and SCIPisCutEfficacious()
9393- additional parameter `sol` for method SCIPseparateKnapsackCover()
9394- primal solutions may now contain values marked to be unknown (value is `SCIP_UNKNOWN`); unknown values don't contribute
9395 to the objective value of the solution; an unknown solution value should be treated as an arbitrary value in the
9396 variable's bounds, e.g., in the calculation of the feasibility of a constraint, a value inside the variable's bounds
9397 should be selected that makes the constraint as feasible as possible
9398- new parameter `printzeros` for methods SCIPprintSol(), SCIPprintTransSol(), SCIPprintBestSol() and SCIPprintBestTransSol()
9399
9400- Constraints:
9401 - replaced method SCIPconshdlrWasSeparationDelayed() by two methods SCIPconshdlrWasLPSeparationDelayed() and
9402 SCIPconshdlrWasSolSeparationDelayed()
9403 - renamed method SCIPgetNGlobalConss() to SCIPgetNConss()
9404
9405### New API functions
9406
9407- SCIPgetCuts()
9408- SCIPgetVarConflictScore() and SCIPgetVarConflictScoreCurrentRun()
9409- SCIPvarSetData()
9410- SCIPcreateUnknownSol()
9411- SCIPgetNConflictClausesFoundNode()
9412- SCIPvarSetDelorigData(), SCIPvarSetTransData() and SCIPvarSetDeltransData()
9413- SCIPvarHasBinaryImplic()
9414- SCIPgetFixedVars() and SCIPgetNFixedVars()
9415- SCIPgetConss(), SCIPgetNOrigConss() and SCIPgetOrigConss()
9416- SCIPsepaGetNConssFound() and SCIPsepaGetNDomredsFound()
9417- SCIPconstructLP() to force constructing the LP of the current node
9418- SCIPisLPConstructed()
9419
9420### Command line interface
9421
9422- added `write statistics` command to default user dialogs
9423
9424### Changed parameters
9425
9426- modified meaning of parameter `presolving/probing/maxtotaluseless`
9427- heuristics with `freq = 0` and `freqofs > 0` are now called in depth level freqofs instead of being called in the root
9428 node
9429- added some parameters in local branching and RINS heuristic
9430- new parameter values `p`rimal simplex and `d`ual simplex in `lp/initalgorithm` and `lp/resolvealgorithm`
9431
9432### New parameters
9433
9434- `branching/inference/conflictweight`
9435
9436Build system
9437------------
9438
9439### Makefile
9440
9441- included version number in binary file name
9442- tried to make the code Windows compatible
9443
9444Fixed bugs
9445----------
9446
9447- also removed history_length, if `NO_REMOVE_HISTORY` is defined to support older versions of the readline library
9448- hopefully fixed bug with wrong path slash `/` under Windows
9449- fixed bug with aggregating fixed variables
9450
9451- Implications:
9452 - fixed bug in transitive implication addition
9453 - fixed wrong assert with implications that imply a fixed variable
9454 - removed bug in implication addition
9455
9456- Readers:
9457 - fixed bug in ZIMPL model reader with wrong chdir, if .zpl file is in current directory
9458 - fixed bug in LP file reader with signed values without space between sign and value (e.g. `+2x` instead of `+ 2x`)
9459 - fixed various bugs in LP file reader
9460 - fixed bug in LP file reader with explicit zero coefficients
9461
9462- Numerics:
9463 - fixed numerics in probing and linear constraint handler (rentacar was detected to be infeasible in presolving)
9464 - fixed numerics in check method of linear constraint handler
9465 - fixed bug with numerical error in LP resolve after probing or diving
9466
9467- Heuristics:
9468 - fixed bug with calling heuristics in depths smaller than their frequency offset
9469 - fixed bugs in local branching and RINS heuristic
9470
9471Known bugs
9472----------
9473
9474- if one uses column generation and restarts, a solution that contains variables that are only present in the
9475 transformed problem (i.e., variables that were generated by a pricer) is not pulled back into the original space
9476 correctly, since the priced variables have no original counterpart
9477
9478@section RN080 SCIP 0.8.0
9479*************************
9480
9481Features
9482--------
9483
9484- adding variable bounds automatically adds the corresponding implication
9485- changed restart dfs nodeselector to sort leaves by node number instead of node depth to aviod jumping around in the
9486 search tree after a restart was applied and the current dive ended due to infeasibility
9487- new Message Handler plugin
9488- added file reader for LP format
9489- introduced subversion string
9490- replaced all abort() calls by SCIPABORT(); this is defined in def.h to be `assert(FALSE)`
9491- added possibility to disable certain features by using `make USRFLAGS=-DNO_REMOVE_HISTORY`, `make
9492 USRFLAGS=-DNO_SIGACTION`, `make USRFLAGS=-DNO_RAND_R`, or `make USRFLAGS=-DNO_STRTOK_R`
9493- improved preprocessing abort criteria
9494- added zlib support
9495
9496- Conflict Analysis:
9497 - conflict clauses are now collected in a conflict store, redundant clauses are eliminated and only the best `conflict/maxclauses`
9498 clauses are added permanently to the problem; the remaining clauses are only added temporarily, if they can be used for repropagation
9499 - modified the influence of the depth level in conflict analysis
9500 - slightly changed LP resolving loop in conflict analysis
9501 - if CPLEX returns that the LP exceeds the bound and if no additional LP solves are allowed in conflict analysis, we
9502 have to perform one additional simplex iteration to get the dual solution that actually violates the objective limit
9503
9504- Constraints:
9505 - reactivated multiaggregation in cons_linear.c on binary variables again (possible due to bug fix below)
9506 - improved preprocessing of variable bounds constraints
9507 - linear constraint handler now catches events of variables after the problem was completely transformed in order to
9508 avoid the whole bunch of `LOCKSCHANGED` events that are generated at problem transformation stage
9509 - added redundancy detection for pairs of constraints in setppc constraint handler
9510
9511- Presolving and Cliques:
9512 - changed linear constraint presolving s.t. redundant sides are not removed if constraint is an equality
9513 - new event type `SCIP_EVENTTYPE_PRESOLVEROUND`
9514 - modified probing presolver to not add implications that are already included in the implication graph and clique table
9515 - incorporated clique and implication information in knapsack constraint presolving
9516 - removed transitive clique generation, because this produces way too many cliques
9517
9518- Heuristics:
9519 - diving heuristics now apply propagation at each step
9520 - removed `objfeaspump` heuristic, because the functionality can be achieved by using the `feaspump` heuristic
9521 - diving heuristics are now applying propagation after each bound change
9522 - new primal heuristic `octane`
9523 - slightly changed feaspump heuristic, s.t. after finding a new best solution the target integral solution is modified randomly
9524
9525- Separation and Cuts:
9526 - improved debugging for infeasible cuts and propagations, given a primal feasible solution
9527 - improved knapsack cover separation
9528 - improved performance of c-MIR separator
9529 - cut pool is now also separated in root node (to find cuts again that were removed from the LP due to aging)
9530
9531Interface changes
9532-----------------
9533
9534- new event type `SCIP_EVENTTYPE_VARDELETED`
9535- new event `SCIP_EVENTTYPE_IMPLADDED`
9536- new event types `SCIP_EVENTTYPE_GLBCHANGED` and `SCIP_EVENTTYPE_GUBCHANGED`
9537
9538### New and changed callbacks
9539
9540- new callback parameter `validnode` for the `CONFLICTEXEC` method of conflict handlers, which should be passed to
9541 SCIPaddConsNode()
9542
9543### Deleted and changed API functions
9544
9545- additional parameter `validnode` for SCIPaddConsLocal() and SCIPaddConsNode()
9546- SCIPhashtableRemove() can now also be called, if the element does not exist in the table
9547- SCIPhashmapRemove() can now also be called, if the element does not exist in the map
9548- additional parameter `branchdir` for SCIPbranchVar()
9549- replaced method SCIPmessage() by SCIPverbMessage() with additional parameter `file`
9550- put block memory shell and tclique algorithm into separate subdirectories
9551- new parameter `duringlploop` of SCIPincludeHeur(): heuristics can now run during the price-and-cut loop at a node
9552
9553### New API functions
9554
9555- SCIPgetNConflictClausesApplied()
9556- SCIPgetNConflictClausesApplied()
9557- SCIPhashtableExists()
9558- SCIPhashmapExists()
9559- SCIPnodeGetNumber()
9560- SCIPsolveProbingLP() to solve the LP in a probing node (enables mixing of propagation and LP solving for diving heuristics)
9561- SCIProwGetDualfarkas()
9562- SCIPgetCurrentNode()
9563- SCIPinterruptSolve()
9564- SCIPpropagateProbingImplications()
9565- SCIPgetLPI() which makes all methods in scip/lpi.h available to the user
9566- SCIPgetRandomInt() and SCIPgetRandomReal()
9567- SCIPstrtok()
9568- SCIPheurGetNBestSolsFound()
9569
9570- Variables:
9571 - SCIPdelVar()
9572 - SCIPgetVarStrongbranchLPAge()
9573 - SCIPvarIsTransformedOrigvar()
9574 - SCIPvarIsDeleted()
9575
9576- Messages and IO:
9577 - SCIPerrorMessage()
9578 - SCIPwarningMessage()
9579 - SCIPdialogMessage()
9580 - SCIPinfoMessage()
9581 - SCIPsetMessagehdlr()
9582 - SCIPsetDefaultMessagehdlr()
9583 - SCIPgetMessagehdlr()
9584 - new file i/o methods SCIPfopen(), SCIPfclose(), SCIPfprintf(), ... that operate on the data type `SCIPFILE`; these
9585 methods automatically use zlib methods if the zlib is enabled
9586
9587- Cliques:
9588 - SCIPvarGetNCliques()
9589 - SCIPvarGetCliques()
9590 - SCIPvarsHaveCommonClique()
9591 - SCIPvarHasImplic()
9592 - SCIPcliqueGetNVars()
9593 - SCIPcliqueGetVars()
9594 - SCIPcliqueGetValues()
9595 - SCIPcliqueGetId()
9596 - SCIPaddClique()
9597 - SCIPcalcCliquePartition()
9598
9599- Constraint handler:
9600 - SCIPgetDualfarkasLinear() of linear constraint handler
9601 - SCIPgetDualfarkasLogicor() of logicor constraint handler
9602 - SCIPgetDualfarkasSetppc() of setppc constraint handler
9603 - SCIPgetDualsolKnapsack() of knapsack constraint handler
9604 - SCIPgetDualfarkasKnapsack() of knapsack constraint handler
9605 - SCIPgetDualsolVarbound() of varbound constraint handler
9606 - SCIPgetDualfarkasVarbound() of varbound constraint handler
9607 - SCIPconsGetValidDepth()
9608 - SCIPsetConsInitial()
9609 - SCIPsetConsSeparated()
9610 - SCIPsetConsEnforced()
9611 - SCIPsetConsChecked()
9612 - SCIPsetConsPropagated()
9613 - SCIPsetConsLocal()
9614 - SCIPsetConsDynamic()
9615 - SCIPsetConsRemoveable()
9616
9617### Command line interface
9618
9619- added command `write solution` to default dialog
9620- added commands `write problem` and `write transproblem` to default dialog
9621
9622### Changed parameters
9623
9624- additional setting `SCIP_VERBLEVEL_DIALOG` in `display/verblevel` parameter
9625- additional LP pricing setting `partial`
9626- replaced parameter `presolving/restartbdchgs` with parameters `presolving/maxrestarts` and `presolving/restartfac`
9627- replaced parameter `constraints/linear/maxpresolaggrrounds` with `constraints/linear/maxpresolpairrounds`
9628- parameters `constraints/agelimit` and `constraints/obsoleteage` now iterprete the value 0 as a dynamic setting
9629- number of fractional variables included in parameter `separating/maxstallrounds`
9630
9631- Changed default values:
9632 - changed default values of `heuristics/∗/maxdiveavgquot` and `heuristics/∗/maxdiveavgquotnosol` to 0
9633 - changed default values of `constraints/agelimit` and `constraints/obsoleteage` to 0
9634 - changed default values of `heuristics/objpscostdiving/maxsols` and `heuristics/rootsoldiving/maxsols` to -1
9635 - changed default value of `separating/strongcg/maxroundsroot` to 20
9636 - changed default value of `separating/cmir/maxroundsroot` to 10
9637 - changed default value of `constraints/linear/maxaggrnormscale` to 0.0, which means to not apply aggregation
9638 - changed default value of `separating/maxstallrounds` to 5
9639 - changed default value of `presolving/probing/maxfixings` to 50
9640 - changed default parameter values to MIP settings:
9641 + `conflict/useprop` = FALSE
9642 + `conflict/usepseudo` = FALSE
9643 + `display/verblevel` = 4
9644 + `separating/poolfreq` = 0
9645 + `constraints/linear/sepafreq` = 0
9646 + `constraints/and/sepafreq` = 0
9647 + `constraints/conjunction/sepafreq` = 0
9648 + `constraints/knapsack/sepafreq` = 0
9649 + `constraints/knapsack/sepacardfreq` = 0
9650 + `constraints/logicor/sepafreq` = 0
9651 + `constraints/or/sepafreq` = 0
9652 + `constraints/setppc/sepafreq` = 0
9653 + `constraints/varbound/sepafreq` = 0
9654 + `constraints/xor/sepafreq` = 0
9655 + `separating/clique/freq` = 0
9656 + `separating/cmir/freq` = 0
9657 + `separating/gomory/freq` = 0
9658 + `separating/impliedbounds/freq` = 0
9659 + `separating/strongcg/freq` = 0
9660
9661### New parameters
9662
9663- `branching/fullstrong/reevalage`
9664- `conflict/maxclauses`
9665- `conflict/allowlocal`
9666- `constraints/knapsack/disaggregation`
9667- `presolving/probing/maxtotaluseless`
9668- `separating/cmir/maxfails`, `separating/cmir/maxfailsroot` and `separating/cmir/trynegscaling`
9669
9670### Data structures
9671
9672- MAJOR CHANGE: preceeded all data types with `SCIP_`: you may use shell script reptypes_scip.sh to rename the SCIP
9673 data types in your own source code (But use with care! Create a backup copy of your source first!)
9674
9675Build system
9676------------
9677
9678### Makefile
9679
9680- modified the Makefile to accept an additional parameter `VERBOSE={true,false}`
9681- added flags `READLINE=true/false`, `ZLIB=true/false`, `ZIMPL=true/false` to Makefile
9682
9683Fixed bugs
9684----------
9685
9686- fixed minor bugs in debug code of primal.c and sol.c
9687- variables that are being multiaggregated are now automatically removed from all other variables' variable bound and
9688 implication arrays; this fixes bugs with methods, that rely on the fact, that the entries in the variable bound and
9689 implication arrays are active variables only
9690- aggregations are now always performed in a way, such that the variable of more general type is aggregated (with type
9691 generality being cont > implint > int > bin); in this way, a binary variable's representant is always binary (which
9692 was not the case before and resulted in a bug in SCIPgetBinvarRepresentative())
9693- removed bug in presol_probing.c: the vars of the sorted variables array have to be captured
9694- fixed bug in the output of solutions with priced variables
9695- fixed bug in propagation with parameters prop_maxrounds and prop_maxroundsroot
9696- conflict analysis can now handle errors in LP solving calls
9697- removed bug in SCIPvarAddVlb() and SCIPvarAddVub() with fractional vlb/vubcoefs
9698- fixed bug that primal or dual rays might not be available because the wrong solver was used
9699- included message.o in LPI library, s.t. one can link this library indepentent of SCIP
9700- fixed bug that if diving heuristic that changes the objective values finds a solution, the cutoff is reinstalled in
9701 the LP solver (although the objective value has no meaning due to the objective function modification)
9702
9703- Feasibiltiy:
9704 - LP primal feasibility for bounds is now defined as absolute measure (was relative to the bound before); this fixes a bug (see alu8_9.mps),
9705 that an LP with an integral variable fixed to a large value yields an accepted solution with that variable slightly different than the fixed
9706 value; the integrality feasibility condition is measured with absolute differences, which leads to the fixed integer variable being fractional;
9707 this leads to an error if branching is performed on this variable
9708 - fixed bug with redundant self implications that wrongly lead to the detection of infeasibility
9709 - fixed bug with potential infinite loop if a separator is delayed and the LP is infeasible
9710
9711- Asserts:
9712 - removed wrong asserts from lpi_cpx.c
9713 - removed wrong assertion in varAddImplic()
9714
9715- Numerics:
9716 - locally fixed variables are no longer used as branching candidates even if their LP solution value is fractional (due
9717 to numerical reasons, see above)
9718 - fixed numerical bug in pseudo objective propagator with only slightly tightened bounds
9719 - removed bug that an LP might be declared to be solved even if it was marked erroneous due to numerical problems
9720
9721- Constraint Handlers:
9722 - fixed bug in linear constraint handler with variables fixed to infinity
9723 - fixed bug with constraint handlers that can only enforce their constraints by adding cuts, but the maximal number of
9724 cuts to separate is set to 0; now, cuts that are generated in the constraint enforcement are used in any case
9725 - fixed bug in knapsack constraint presolving with tightening coefficients and capacity
9726 - fixed bug with modifiable constraints in linear constraint handler preprocessing
9727 - fixed bug in linear constraint handler that global activities are not updated after global bound changes
9728
9729- Separation and Cuts:
9730 - global bound changes now lead to the removal of redundant implications (such that the asserts in sepa_implbounds.c are now correct)
9731 - due to usage of variable bounds, SCIPcalcMIR() may return LOOSE variables in the cut -> modified sepa_cmir.c, sepa_gomory.c and
9732 sepa_strongcg.c to use SCIPcreateEmptyRow() and SCIPaddVarsToRow() instead of SCIPcreateRow() which only works for COLs
9733 - fixed bug in clique separator that reduced performance
9734 - increased performance of clique separator by allowing only a certain number of zero-weighted fill ins
9735
9736@page RN0_7 Release notes for SCIP 0.7
9737
9738@section RN079 SCIP 0.7.9
9739*************************
9740
9741Features
9742--------
9743
9744- aging and cleanup now only remove non-basic columns and basic rows, s.t. resolving can be applied with 0 simplex iterations
9745- it is now possible to create subnodes in probing and use backtracking to undo probing changes
9746- bounds of variables are included in the feasibility checks for solutions
9747- support for barrier algorithm
9748- changed implementation of automatic minplungedepth and maxplungedepth calculation in bfs node selector
9749
9750- Presolving:
9751 - new plugin: probing presolver
9752 - probing is now also possible in presolving stage
9753 - it is now possible to interrupt and continue presolving
9754
9755- Separation and Cuts:
9756 - new plugin: clique separator for clique cuts with at least 3 elements
9757 - new plugin: implied bound cuts separator
9758 - included debugging module to check whether cutting planes cut off the optimal solution
9759
9760- Branching:
9761 - changed implementation of reliability value calculation in reliability branching; slightly modified influence of
9762 maximal total number of strong branching LP iterations in reliability branching
9763 - changed implementation of maximal strong branching iterations calculation in reliability branching
9764
9765- Constraints:
9766 - if verblevel is at least `NORMAL`, an automatical check of the best solution is performed in the original problem, and
9767 an error message is displayed, if it violates an original constraint
9768 - due to the new constraint handler `cons_cumulative.{c,h}` SCIP can resource-constraint scheduling problem
9769 - during probing, propagation of bounds is now always performed in linear constraint handler, ignoring the parameter `tightenboundsfreq`
9770 - new implementation of the clique graph construction method in clique separator
9771 - new constraint handler `cons_cumulative.{c,h}`
9772
9773- Heuristics:
9774 - new implementation of the feasibility pump heuristic by Timo Berthold (replaces old implementation); old
9775 implementation is now called `objfeaspump`; parameter names have been changed accordingly
9776 - diving heuristics now compare their number of LP iterations with the number of node LP iterations instead of the total
9777 number (including their own) LP iterations
9778 - modified the automatic objfactor setting of feaspump heuristic to let the objective function have stronger influence
9779
9780Examples and applications
9781-------------------------
9782
9783- added TSP example in `examples/TSP`
9784
9785Interface changes
9786-----------------
9787
9788### New and changed callbacks
9789
9790- new callback methods `INITSOL` and `EXITSOL` for variable pricers, primal heuristics, conflict handlers, relaxators,
9791 separators, propagators, event handlers, node selectors and display columns
9792- callback method `CONFLICTEXEC` of conflict handlers receive additional parameters `dynamic` and `removeable`
9793- constraint handler callback methods `CONSLOCK` and `CONSUNLOCK` are replaced by a single method `CONSLOCK` with the number
9794 of locks being positive or negative
9795
9796### Deleted and changed API functions
9797
9798- calling SCIPaddCut() with `forcecut=TRUE` will add the cut to the LP even if it is redundant
9799- SCIPreadProb() does not free the current problem, this is done in SCIPcreateProb() now, which is usually
9800 called by a problem reader; in this way, a reader can generate `extra information` for the current problem, s.t. the
9801 full problem information can be distributed to different files read by different readers
9802- SCIPgetVarStrongbranch() and SCIPgetVarStrongbranchLast() now have two additional parameters that can be used
9803 to check, whether the returned values are correct dual bounds
9804- SCIPgetBinvarRepresentative() now returns the fixed or multi-aggregated variable instead of returning `NULL` or
9805 aborting with an error message
9806- SCIPdispDecimal() is replaced by SCIPdispInt() and SCIPdispLongint()
9807- additional parameter `maxproprounds` in SCIPpropagateProbing()
9808- changed memory interface (see memory.h), `MEMHDR` is now called `BLKMEM`
9809- source code was moved into subdirectories: replace includes `scip.h` by `scip/scip.h` and
9810 `objscip.h` by `objscip/objscip.h`; This should allow a user to have include files of the same name as the ones
9811 of SCIP, e.g. `tree.h` or `var.h`.
9812- event handlers are now available as C++ wrapper class
9813- new flag `afterrelaxation` for primal heuristics
9814
9815- Solution:
9816 - removed method SCIPsolGetObj(), use SCIPgetSolOrigObj() or SCIPgetSolTransObj() instead
9817 - additional parameter `checkbounds` for SCIPtrySol(), SCIPtrySolFree(), SCIPcheckSol()
9818
9819- Variables:
9820 - SCIPvarLock(), SCIPvarLockDown(), SCIPvarLockUp(), SCIPvarLockBoth(), SCIPvarUnlock(), SCIPvarUnlockDown(),
9821 SCIPvarUnlockUp() and SCIPvarUnlockBoth() are replaced by SCIPaddVarLocks() which returns a `RETCODE`
9822 - SCIPvarGetLbGlobal(), SCIPvarGetUbGlobal(), SCIPvarGetLbLocal() and SCIPvarGetUbLocal() now return the
9823 corresponding values of the transformed problem or current subproblem even for original problem variables
9824 - SCIPvarGetProbvar(), SCIPvarGetProbvarBinary() now return the fixed or multi-aggregated variable instead of
9825 returning `NULL` or aborting with an error message; in SCIPvarGetProbvarBinary(), the fixing of a fixed variable does
9826 not influence the negation status anymore
9827 - SCIPvarGetProbvarBound() returns the multi-aggregated variable instead of aborting with an error message
9828 - SCIPvarGetProbvarSum() does not set *var to `NULL` for fixed variables anymore; it may also return a
9829 multi-aggregated variable instead of aborting with an error message
9830 - SCIPaddVarImplication() now also adds variable lower and upper bounds, if the implied variable is non-binary
9831 - additional parameter `aggregated` in SCIPmultiaggregateVars()
9832
9833- Constraints:
9834 - SCIPvarLockDownCons(), SCIPvarLockUpCons(), SCIPvarUnlockDownCons() and SCIPvarUnlockUpCons() are replaced by
9835 SCIPlockVarCons() and SCIPunlockVarCons() which return a `RETCODE`
9836 - SCIPlockConsVars() and SCIPunlockConsVars() replaced with method SCIPaddConsLocks()
9837 - SCIPconshdlrGetNConss() is replaced by SCIPconshdlrGetNActiveConss() (returning the number of active
9838 constraints); method SCIPconshdlrGetNConss() does now return the total number of existing constraints, active and inactive
9839 - SCIPconshdlrGetStartNConss() is now called SCIPconshdlrGetStartNActiveConss()
9840 - SCIPconshdlrGetMaxNConss() is now called SCIPconshdlrGetMaxNActiveConss()
9841 - SCIPdisableConsNode() is replaced by SCIPdelConsNode()
9842 - SCIPdisableConsLocal() is replaced by SCIPdelConsLocal()
9843 - added new parameter `dynamic` to SCIPcreateCons() and all plugin methods SCIPcreateCons...()
9844
9845### New API functions
9846
9847- SCIPgetObjNorm()
9848- SCIPcreateOrigSol()
9849- SCIPwriteImplicationConflictGraph()
9850- SCIPinProbing()
9851- SCIPgetProbName()
9852- SCIPgetVarNStrongbranchs()
9853- SCIPcolGetNStrongbranchs()
9854- SCIPfindSimpleRational()
9855- SCIPselectSimpleValue()
9856
9857- Variables:
9858 - SCIPvarGetLbOriginal()
9859 - SCIPvarGetUbOriginal()
9860 - SCIPvarGetImplIds()
9861 - SCIPvarGetOrigvarSum()
9862
9863- Constraints:
9864 - SCIPenableCons()
9865 - SCIPdisableCons()
9866 - SCIPenableConsSeparation()
9867 - SCIPdisableConsSeparation()
9868 - SCIPconsIsSeparationEnabled()
9869
9870- Averages:
9871 - SCIPgetAvgPseudocost()
9872 - SCIPgetAvgPseudocostCurrentRun()
9873 - SCIPgetAvgPseudocostCount()
9874 - SCIPgetAvgPseudocostCountCurrentRun()
9875 - SCIPgetAvgInferences()
9876 - SCIPgetAvgInferencesCurrentRun()
9877 - SCIPgetAvgCutoffs()
9878 - SCIPgetAvgCutoffsCurrentRun()
9879
9880- LPs:
9881 - SCIPisLPSolBasic() to check, whether the current LP solution is basic (i.e. due to a simplex algorithm or barrier with crossover)
9882 - SCIPgetNPrimalLPs()
9883 - SCIPgetNPrimalLPIterations()
9884 - SCIPgetNDualLPs()
9885 - SCIPgetNDualLPIterations()
9886 - SCIPgetNBarrierLPs()
9887 - SCIPgetNBarrierLPIterations()
9888 - SCIPgetNPrimalResolveLPs()
9889 - SCIPgetNPrimalResolveLPIterations()
9890 - SCIPgetNDualResolveLPs()
9891 - SCIPgetNDualResolveLPIterations()
9892
9893- Delayed:
9894 - SCIPsepaIsDelayed()
9895 - SCIPsepaWasDelayed()
9896 - SCIPpropIsDelayed()
9897 - SCIPpropWasDelayed()
9898 - SCIPpresolIsDelayed()
9899 - SCIPpresolWasDelayed()
9900 - SCIPconshdlrIsSeparationDelayed()
9901 - SCIPconshdlrIsPropagationDelayed()
9902 - SCIPconshdlrIsPresolvingDelayed()
9903 - SCIPconshdlrWasSeparationDelayed()
9904 - SCIPconshdlrWasPropagationDelayed()
9905 - SCIPconshdlrWasPresolvingDelayed()
9906
9907### Command line interface
9908
9909- command line history in interactive shell now only stores useful commands
9910
9911### Interfaces to external software
9912
9913- removed storing of dual norms in LPI state of CPLEX interface (too memory consuming)
9914
9915### Changed parameters
9916
9917- default frequency offset of fracdiving heuristic changed to 3
9918- default frequency offset of (new) feaspump heuristic changed to 0
9919- default frequency offset of objfeaspump heuristic changed to 8
9920- changed default priority of primal heuristics
9921- renamed parameter `limits/sol` to `limits/solutions`
9922- changed default check priority of knapsack constraint handler to -600000
9923- changed default priority of Gomory cut separator to -1000 (will now be called after constraint handlers!)
9924- changed default priority of strong CG cut separator to -2000
9925- changed default priority of cmir cut separator to -3000
9926- changed default of parameter `lp/pricing` to `s`teepest edge pricing
9927- default parameter `branching/relpscost/minreliable` changed to 1.0
9928- default parameter `branching/relpscost/maxlookahead` changed to 8
9929- default parameter `branching/relpscost/sbiterofs` changed to 100000
9930- default parameter `heuristics/coefdiving/maxlpiterquot` changed to 0.05
9931- default parameter `heuristics/fracdiving/maxlpiterquot` changed to 0.05
9932- default parameter `heuristics/guideddiving/maxlpiterquot` changed to 0.05
9933- default parameter `heuristics/linesearchdiving/maxlpiterquot` changed to 0.05
9934- default parameter `heuristics/pscostdiving/maxlpiterquot` changed to 0.05
9935- default parameter `heuristics/feaspump/freq` changed to 20
9936- default parameter `heuristics/objfeaspump/freq` changed to 20
9937- default parameter `heuristics/objpscostdiving/freq` changed to 20
9938- default parameter `heuristics/rootsoldiving/freq` changed to 20
9939- default parameter `separating/clique/maxtreenodes` changed to -1
9940
9941### New parameters
9942
9943- new parameter delay for presolvers
9944- new parameter delaypresol for constraint handlers
9945- `branching/scorefunc`
9946- `constraints/.../delaypresol`
9947- `constraints/.../delayprop`
9948- `constraints/.../delaysepa`
9949- `conflict/dynamic`
9950- `conflict/removeable`
9951- `heuristics/coefdiving/maxlpiterofs`
9952- `heuristics/feaspump/maxlpiterofs`
9953- `heuristics/feaspump/maxsols`
9954- `heuristics/fracdiving/maxlpiterofs`
9955- `heuristics/guideddiving/maxlpiterofs`
9956- `heuristics/linesearchdiving/maxlpiterofs`
9957- `heuristics/objfeaspump/maxlpiterofs`
9958- `heuristics/objfeaspump/maxsols`
9959- `heuristics/objpscostdiving/maxlpiterofs`
9960- `heuristics/objpscostdiving/maxsols`
9961- `heuristics/pscostdiving/maxlpiterofs`
9962- `heuristics/rootsoldiving/maxlpiterofs`
9963- `heuristics/rootsoldiving/maxsols`
9964- `heuristics/fixandinfer/proprounds` and `heuristics/fixandinfer/minfixings`
9965- `lp/cleanupcolsroot` and `lp/cleanuprowsroot` to distinguish cleanup settings between root node and other nodes
9966- `lp/checkstability` to disable stability check of LP solver's result code
9967- `lp/initalgorithm` and `lp/resolvealgorithm` for switching between simplex and barrier algorithm
9968- `lp/pricing` to set the pricing strategy used in the LP solver
9969- `numerics/barrierconvtol` to set the convergence tolerance in the barrier algorithm
9970- `presolving/.../delay`
9971- `propagating/.../delay`
9972- `reading/cnfreader/dynamicconss`
9973- `reading/mpsreader/dynamicconss`
9974- `separating/.../delay`
9975
9976### Data structures
9977
9978- new possible result `SCIP_DELAYED` for `EXEC` method of separators, presolvers and propagators and `SEPA`, `PROP` and
9979 `PRESOL` methods of constraint handlers
9980
9981Fixed bugs
9982----------
9983
9984- fixed bug in MPS file reader
9985- removed bug with applying reduced cost strengthening before pricing in all necessary variables
9986- negated variables must also be reset in SCIPvarInitSolve()
9987- fixed documentation of `CONSLOCK`-method (missing parameter `scip` in SCIPaddVarLocks())
9988- included missing `objrelax.h` in includes of objscip.h
9989- fixed bug that after a resolve and further preprocessing, existing primal solutions may get corrupted due to
9990 aggregations or fixings that are possible due to the primal bound (given by the best solution)
9991- fixed bug with primal bound becoming wrong, if in a prior run the optimal solution was found and the cutoff bound was
9992 thereby reduced due to further domain propagation w.r.t. the objective function
9993- fixed bug in SCIPisObjIntegral()
9994- fixed bug in SCIPprintError() with `file == NULL`
9995- heuristic's display character is now only shown the first time, the new solution was found
9996- fixed bug that SCIPreadProb() doesn't discard the transformed problem
9997- fixed bug with wrong euclidean norm calculation of row, if multiple coefficients for the same variable are added and
9998 the sorting of the row was delayed with SCIProwDelaySort()
9999- fixed bug with adding implications: wrong insertion position, if only the lower bound change was present but not the
10000 upper bound change
10001- fixed bug in SCIPvarAddImplics() with wrong variable used in varAdjustBd()
10002- fixed bug in method reduced() of tclique_branch.c with sorting nodes in V
10003
10004- LP:
10005 - removed bug with objective norm calculation and column variables not in the LP (pricing)
10006 - LP error on forced LP resolve (due to 0 unfixed integers) now leads to an error (instead of accepting the pseudo
10007 solution as feasible)
10008 - fixed bug in CPLEX LP interface with dual norms
10009
10010- Presolving:
10011 - fixed bug that presolving time is not counted to solving time, if presolving is called explicitly with SCIPpresolve()
10012 - fixed bug where presolving fixings are counted even if the variable was already fixed
10013 - removed bug with dual presolver, that declared a problem to be unbounded or infeasible, if it could fix a variable to
10014 infinity even if its objective value is zero
10015 - fixed bug in knapsack constraint handler that fixed variables are sometimes not removed in presolving
10016
10017- Numerics:
10018 - fixed bug with unresolved numerical troubles in LP that don't render the LP useless at the current node
10019 - fixed numerical bugs in rounding heuristic and rootsoldiving heuristic
10020
10021- Separator:
10022 - fixed bugs in separation store with single coefficient cuts that are converted into bound changes
10023 - at least one cut per separation round is added to the LP to avoid cycling, even if the cut is redundant
10024 - fixed bug in SCIProwCalcIntegralScalar() with rows consisting of only continuous variables (appeared in gomory cut
10025 separator on miplib/dcmulti.mps)
10026 - fixed bug in linear constraint handler's knapsack relaxation separator
10027 - fixed bugs in intobj separator
10028 - fixed bug in cmir separator with empty rows
10029 - fixed bug in implied bound cut separator: only implications between binary variables were generated before
10030
10031- Constraint Handlers:
10032 - removed bug in knapsack constraint handler with merging multiple items if more than two items of the same variable
10033 appear in the constraint
10034 - removed bug in knapsack constraint handler with merging negated variables of equal weight at the end of the variables' array
10035 - fixed bug in linear constraint handler with eventdatas, if the original constraint has no variables
10036 - fixed bug that `CONSLOCK` method of constraint handlers that don't need constraints is not called
10037 - fixeg bug in setppc constraint handler with pairs of aggregated variables in the same constraint
10038 - fixed bug with globally deleting constraints, that have attached rows which are therefore not released in exitsol methods
10039
10040- Conflict analysis:
10041 - removed conflict analysis of infeasible diving LP if pricing is activated
10042 - made conflict analysis available in presolving stage (for probing conflicts)
10043
10044@section RN078 SCIP 0.7.8
10045*************************
10046
10047Features
10048--------
10049
10050- changed SCIProwCalcIntegralScalar() to a slightly different algorithm
10051- improved knapsack relaxation in linear constraint handler separator to scale the constraint in order to get integral
10052 coefficients instead of just rounding down all coefficients
10053- improved presolving of linear constraint handler: aggregation of two constraints with equal coefficient vector into
10054 single constraint
10055- improved presolving of knapsack constraint handler: aggregation of equal or negated variables in same constraint
10056
10057- Plugins:
10058 + priority of separators, propagators and presolvers decide whether the plugin is called before the corresponding
10059 constraint handler methods or after: plugins with nonnegative priorities are called before, plugins with negative
10060 priorities are called after the constraint handlers
10061 + new plugin class for relaxators (external relaxations, that can be used in parallel with LP relaxations)
10062 + if more than one result code applies to a plugin's execution, it should return the one that is higher in the call's
10063 documentation list
10064
10065Interface changes
10066-----------------
10067
10068- even in optimized mode, the simple functions that are implemented as defines in the include files exist in the
10069 library, s.t. one can include the include files without `NDEBUG` and use the optimized library
10070
10071### New and changed callbacks
10072
10073- new branching rule plugin methods `INITSOL` and `EXITSOL`
10074
10075### Deleted and changed API functions
10076
10077- removed SCIPisFeasible(); use !SCIPisFeasNegative() instead
10078- SCIPisIntegral(), SCIPisFracIntegral(), SCIPfloor(), SCIPceil() and SCIPfrac() don't use the feasibility
10079 tolerance anymore (default: 1e-06); instead, they are using epsilon (default: 1e-09); instead, for handling
10080 integrality of a variable `in feasibility tolerances`, new methods SCIPisFeasIntegral(), SCIPisFeasFracIntegral(),
10081 SCIPfeasFloor(), SCIPfeasCeil() and SCIPfeasFrac() should be used
10082- in LPI, the semantics of SCIPlpiHasPrimalRay() and SCIPlpiHasDualRay() changed: methods return TRUE, if a ray exists
10083 and the solver can return it; new methods SCIPlpiExistsPrimalRay() and SCIPlpiExistsDualRay() check whether a ray
10084 exists without checking, if the solver knows and can return the ray
10085
10086### New API functions
10087
10088- SCIPvarIsInLP()
10089- SCIPgetLPColumnObjval() and SCIPgetLPLooseObjval()
10090- SCIPcalcIntegralScalar() with arbitrary array of Real values
10091- SCIPaddCoefKnapsack() in knapsack constraint handler
10092- SCIPisScalingIntegral() to check, whether the scaling of a value would lead to an integral value, measured
10093 against epsilon which is also scaled by the same scalar
10094- SCIPgetRealarrayMinIdx(), SCIPgetRealarrayMaxIdx(), SCIPgetIntarrayMinIdx(), SCIPgetIntarrayMaxIdx(),
10095 SCIPgetBoolarrayMinIdx(), SCIPgetBoolarrayMaxIdx(), SCIPgetPtrarrayMinIdx() and SCIPgetPtrarrayMaxIdx()
10096- SCIPbsortPtrInt() and SCIPbsortPtrIntInt()
10097- SCIPvarWasFixedAtIndex()
10098- SCIPaddConflictBd()
10099- SCIPprintMemoryDiagnostic()
10100- SCIPfindObj...() and SCIPgetObj...() in C++ wrapper interface to get the corresponding plugin object
10101
10102### Changed parameters
10103
10104- slightly changed the meaning of parameter `presolving/abortfac` a value of 0 now means to abort presolving only after
10105 no more change has been found
10106
10107Fixed bugs
10108----------
10109
10110- assigning a value to a fixed variable in a solution with SCIPsetSolVal() does not return an error anymore, if the
10111 value is equal to the fixed value of the variable
10112- removed bug in SCIPisScalingIntegral()
10113- removed bugs with calling SCIPtightenVarLb(), SCIPtightenVarUb(), SCIPinferVarLbCons(), SCIPinferVarUbCons(),
10114 SCIPinferVarLbProp() and SCIPinferVarUbProp() in `PROBLEM` stage
10115
10116- (Re)solving:
10117 - solving loop is now immediately aborted, if a node on the active path is marked to be cut off
10118 - removed bug in resolving an interrupted problem, after the last solved node was cut off
10119 - removed bug with infinite solving loop if LP solving is turned off
10120 - removed bug with aborted solving in root node (e.g. due to time limit) that is tagged to be restarted
10121
10122- Branching:
10123 - fixed bug in all-fullstrong branching with getting strong branching information for columns not in current LP
10124 - implemented missing case in solve.c with branching rules that add constraints
10125
10126- Numerics:
10127 - changed numerics for integrality check of coefficients (fixed bug with accumulated errors in rows s.t. the row's
10128 activity is no longer integral although the row is marked being integer)
10129 - slightly changed numerics in linear constraint handler presolving to fix a bug with coefficients detected to be scaled
10130 to an integral value, that are not integral after scaling due to a large scalar that increased the integrality gap to
10131 a value larger than epsilon
10132
10133- Constraint handlers:
10134 - fixed bugs in consdataSwitchWatchedVars() of `or` and `and` constraint handlers
10135 - fixed wrong assertion in xor constraint handler with switching both watched variables to unwatched
10136 - fixed bugs in constraint handlers (and, logicor, or, setppc, xor) with calling conflict analysis during presolving
10137 - removed bug in knapsack constraint handler that appears if a variable is fixed to zero in knapsack presolving, which
10138 triggers a variable of the same knapsack to be fixed to one due to aggregation
10139
10140- Presolving:
10141 - removed bug in knapsack presolver
10142 - fixed bug in presolving with wrong number of newly fixed/aggregated/... variables/bounds/... after a restart
10143
10144@section RN077 SCIP 0.7.7
10145*************************
10146
10147Features
10148--------
10149
10150- infeasible LPs in diving now produce conflict clauses (if LP conflict analysis is enabled)
10151- conflict analysis was slightly modified
10152- slightly changed aging strategy of logic or constraint handler
10153
10154Interface changes
10155-----------------
10156
10157### Deleted and changed API functions
10158
10159- method SCIPgetGap() and SCIPgetTransGap() now return infinity, if primal and dual bound have opposite sign (this
10160 removes the oddness with the gap increasing while the dual bound approaches zero)
10161
10162### New API functions
10163
10164- added methods SCIPgetVarsLogicor() and SCIPgetNVarsLogicor() in logic or constraint handler
10165
10166### Changed parameters
10167
10168- `lp/colagelimit` and `lp/rowagelimit` may now be set to -1 to disable deletion of columns/rows due to aging
10169
10170Build system
10171------------
10172
10173### Makefile
10174
10175- the file names in the archive file are now preceeded with a directory `scip-<version>/`
10176- the compiler is now also represented in the LP solver library names (e.g. you have to rename the softlink
10177 `libcplex.linux.x86.a` to `libcplex.linux.x86.gnu.a`)
10178
10179Fixed bugs
10180----------
10181
10182- removed bug in conflict analysis that appears if the conflict is only active at the current depth level
10183- missing SCIPlpiIsPrimalFeasible() and SCIPlpiIsDualFeasible() implemented in lpi_spx.cpp and lpi_spx121.cpp
10184- removed preprocessing of linear constraint pairs with modifiable constraints
10185
10186- Asserts:
10187 - removed wrong assert `assert(eventfilter->len == 0 || eventfilter->eventmask != 0x00000000)` from event.c
10188 - removed wrong assert in conflict analysis (appeared on analyzing diving LP conflicts with both bounds of a non-binary variable changed)
10189
10190@section RN076 SCIP 0.7.6
10191*************************
10192
10193Features
10194--------
10195
10196- creation of reconvergence clauses in conflict analysis
10197- first node of each plunging is not treated as plunging node w.r.t. calling primal heuristics
10198- improved performance of logic or constraint handler due to better watched variables handling
10199
10200Interface changes
10201-----------------
10202
10203### Deleted and changed API functions
10204
10205- changed SCIPcatchVarEvent() and SCIPdropVarEvent()
10206- SCIPstage() is now called SCIPgetStage()
10207- SCIPprintStatus() is now called SCIPprintStage()
10208
10209### New API functions
10210
10211- SCIPgetActivityLinear() in linear constraint handler
10212- SCIPgetFeasibilityLinear() in linear constraint handler
10213- SCIPchgVarBranchDirection()
10214- SCIPvarGetBranchDirection()
10215- SCIPgetStatus() returns the solution status
10216- SCIPprintStatus() outputs the solution status (beware, that the old SCIPprintStatus() method is now called SCIPprintStage())
10217
10218### Changed parameters
10219
10220- changed default frequency offset of pscostdiving `heuristics/pscostdiving/freqofs` to 2 and frequency offset of fracdiving
10221 `heuristics/feaspump/freqofs` to 0 in order to not call pscostdiving in root node, where nearly all pseudo costs are uninitialized.
10222
10223### New parameters
10224
10225- new parameter `separating/efficacynorm` to choose between Euclidean, maximum, sum and discrete norm in efficacy
10226 calculation
10227
10228### Data structures
10229
10230- new possible result code `SCIP_DELAYED` for primal heuristics
10231
10232Fixed bugs
10233----------
10234
10235- removed bugs in CLP Solver interface
10236- SCIP returned `gap limit reached` even if the problem was solved to optimality, if the optimal solution was found at a
10237 node with lower bound equal to the global lower bound
10238- after conversion of the focus node into a junction (e.g. in case of numerical troubles while solving the node's LP), the child
10239 nodes got the wrong LP fork attached (the common LP fork of the old and new focus node instead of the old focus node's LP fork)
10240
10241- Variables:
10242 - bug reconvergence clauses in conflict analysis if bounds on non-binary variables were the reason for the fixing of the
10243 uip to create a reconvergence clause for
10244 - wrong sub calls in SCIPvarGet...CurrentRun() for aggregated variables
10245 - variables' conflict set counter was not reset when the problem was resolved again
10246
10247Known bugs
10248----------
10249
10250- unbounded models lead to an error
10251- air04 and air05 return wrong optimal value (1 too large): possibly due to strong branching or setppc propagation?
10252
10253@section RN075 SCIP 0.7.5
10254*************************
10255
10256Miscellaneous
10257-------------
10258
10259- started change log*/