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 RN1001 SCIP 10.0.1
4***************************
5
6Fixed bugs
7----------
8
9- fixed that parameters passed on as variadic arguments to SCIPsolveNLP() and SCIPsolveNlpi() were ignored when compiling with MS compilers without -Zc:preprocessor
10- make more CONOPT output available when verbosity level is set to 2
11- turn off detection of definitional constraints in CONOPT for now, to work around a related issue in CONOPT 4.39.0
12- fixed call of SCIPcreateConsBasicSOCNonlinear() with coefs being NULL, and fixed check for offsets being finite
13- avoid crash when initial IIS solve fails while reporting errors explicitly
14- fixed that variable removal in IIS cleanup tried to delete variables that were marked as not deletable
15- fixed that some IIS info messages were not using a user's message handler
16- fixed use of interactive option (-i) of AMPL interface
17- fixed failure in nl writing on big endian machines
18- correct memory reallocation in storeSubproblemMasterVar() of benders.c to avoid errors when freeing memory
19- also set real solution in SCIPsolSetValExact() to maintain approximation
20- handle exact solutions in SCIPsolCheckOrig(), SCIPcheckSolOrig(), and SCIPrecomputeSolObj() to correctly check exact initial solutions in SCIPtransformProb()
21- fixed calculation of Euclidean norm in calcEfficacyDenseStorage() for use in exact solving
22- removed unnecessary explicit linking of GMP library for exact solving mode unittests
23- fixed bug with changing the type of the slack variable in indicator constraints while copying
24- signal extreme estimations in timeSeriesEstimate() and skip pruning estimations in eventExecEstim() to avoid unstable restarting
25- fixed parallelism computation of dynamic cut selector to use Euclidean norm instead of unsupported argument
26- fixed that non-efficacious cuts were not filtered out before checking dynamic parallelism in dynamic cut selector
27- fixes in nauty.h for 32bit systems
28- fixed SCIPgetDualSolVal() for a linear constraint with a single variable
29- adjust conflictAnalyzeLP() to inability of row aggregation to handle a change in the number of variables
30- propagate child lower bounds back to focus node to ensure consistent lower bound tracking
31
32Miscellaneous
33-------------
34
35- updated ampl/mp to version 4.0.4
36- switch from GetTempPath2A to GetTempPathA in nl writer for Windows for broader compatibility
37
38@section RN1000 SCIP 10.0.0
39***************************
40
41Features and Performance Improvements
42-------------------------------------
43
44### Exact Solving
45- added numerically exact solving mode for mixed-integer linear programs to the core framework including certification of branch-and-bound phase
46- core extensions:
47 - new wrapper struct SCIP_RATIONAL for rational arithmetic currently based on Boost, GMP, and MPFR
48 - new data structure SCIP_LPEXACT for handling rational LP relaxation and computing safe dual bounds
49 - new interfaces to exact LP solvers SoPlex and QSopt_ex
50 - safe dualproof version of conflict analysis
51 - new data structure SCIP_CERTIFICATE for certificate printing/proof logging
52- new plugins:
53 - new constraint handler "exactlinear" for handling linear constraints with rational data
54 - new constraint handler "exactsol" to post-process and repair solutions from floating-point heuristics
55- plugins revised for numerically exact solving mode:
56 - adjusted readers for MPS, LP, CIP, OPB/WBO, and ZIMPL files
57 - extended presolver "milp" to perform rational presolving with PaPILO
58 - adjusted constraint handler "integral" and default reliability pseudo-cost branching rule "relpscost"
59 - extended Gomory cut separator to separate and certify numerically safe MIR cuts
60 - adjusted all primal heuristics (except for five dedicated MINLP heuristics)
61- new interfaces to exact LP solvers SoPlex and QSopt_ex
62
63### Symmetry Handling
64- 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
65- Dejavu can be used to compute symmetries; the source code is shipped with SCIP and incorporates sassy
66- implemented symmetry detection callbacks for disjunction and superindicator constraint handlers
67- detailed information about applied symmetry handling techniques can be printed to the terminal
68- improve memory usage by introducing different constraint handlers for full orbitopes and packing/partitioning orbitopes
69- symmetry detection no longer treats implicit integer variables separately, but computes symmetries based on the variable type inferred from variable bounds and implied integrality
70- extended the statistics to also include information about the number of variables (per type) affected by symmetry
71- implemented method to compute new permutations from a given list of symmetry group generators
72- 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;
73 this should reduce the size of copies of the presolved problem
74- simplified symmetry detection graphs in case all edges have the same color
75
76### Presolve
77- 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
78- 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
79- added support for (transposed) network matrix detection
80- allow multi-aggregation of unbounded slack variables, which may enable more bound tightening due to a reduction in the number of unbounded variables
81- resolve all fixings in xor constraints also for an available integer variable
82
83### Conflict Analysis
84- added generalized resolution conflict analysis that operates directly on linear constraints instead of conflict graphs
85- disabled dualsol and dualray conflict upgrades to maintain conflict store
86- apply general conflict upgrades in conflict store
87
88### Cutting Planes
89- added a new separator "flower" to generate flower cuts from AND constraints and nonlinear product expressions
90- added functionality to deal with hypergraphs by means of efficient access to vertices, edges, and intersections edges
91
92### Primal Heuristics
93- added decomposition kernel search (DKS) heuristic (disabled by default), which implements a kernel search framework;
94 it can be used both as a construction heuristic as well as an improvement heuristic; existing decomposition information can be utilized
95- reduced maximal fraction of diving LP iterations relative to total node LP iterations
96
97### Branching
98- added a dynamic max-lookahead criterion for strong branching; a probability distribution is fitted to the observed candidate gains and
99 evaluating further candidates stops when the expected tree-size reduction no longer justifies the LP evaluation cost
100- added new fields in history to store ancestral pseudo cost updates, used in the pseudo costs branching rule to compute discounted pseudo costs
101
102### Nonlinearity
103- added an interface to the NLP solver CONOPT
104- implemented columnwise Jacobian sparsity computation in the NLP oracle
105- extended SOC detection to simple bilinear constraints, e.g., x*y >= 1
106
107### Infeasibility Analysis
108- added the possibility to search for irreducible infeasible subsystems (IIS)
109- added new plugin type for finding irreducible infeasible subsystems (IIS)
110- new iisfinder plugin "greedy", which implements a greedy addition and deletion based algorithm with dynamic batch sizing
111
112### Benders' Decomposition
113- when solving a problem with additional decomposition information (for example, when reading a DEC file) and enabling decomposition/applybenders,
114 the problem is now solved in a Benders' decomposition relaxator; instead of decomposing the original SCIP instance, the relaxator builds the decomposed problem in
115 sub-SCIPs and solves it via default Benders' Decomposition; a solution to the original (undecomposed) problem is now made available by the relaxator;
116 the SCIP shell dialog "display statistics" now also prints the statistics from solving the Benders' decomposition in the relaxator
117- 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
118- 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
119
120### Reading and Writing
121- added a new data structure SCIP_DATATREE that holds serializable data and a function to export to a JSON file
122- added ability to collect statistics from tables in a SCIP_DATATREE and write out as JSON file;
123 dialog write statistics now writes a JSON file if name of file to write ends with .json
124- added writing support for AMPL NL writer: currently only general and specialized linear and nonlinear constraints can be written
125- added support for AND-constraints to GAMS writer
126- simplify expressions of nonlinear constraints in MPS and LP writing to increase chance that they are recognized as quadratic
127
128### Applications
129- New application "PBSolver" to solve pseudoboolean instances in OPB and WBO format while complying with PB competition rules
130- Coloring: new parameter branching/coloring/strategy to choose the least/most fractional variable for branching
131
132### Miscellaneous
133- do not allow non-root restarts when no global fixings were found
134- reimplemented SCIPvarGetActiveRepresentatives() by using dense arrays to avoid repeated resorting
135- avoid unnecessary calls of constraint handlers components, benders, benderslp, propagator genvbounds, and heuristics ofins, subnlp, nlpdiving, indicator
136- inlined SCIPgetStatus() to reduce computational overhead
137- variable data pointer are now copied if no copy routine was supplied
138- add check that parameter value pointers are unique, i.e., no two are the same
139
140Interface changes
141-----------------
142
143### Deprecations
144
145- The variable type \ref SCIP_VARTYPE_IMPLINT is deprecated in favor of a new enum \ref SCIP_IMPLINTTYPE that indicates if a
146 variable is implied integral, independent of the variable type.
147 The problem variable arrays is still sorted as:
148 ```
149 (0) | binary | integer | implied integral | continuous | (nvars),
150 ```
151 where the implied integral subsection is now subdivided into 3 parts (left to right):
152 ```
153 | binary implied integral | integer implied integral | continuous implied integral |
154 ```
155 SCIP 10 still supports using `SCIP_VARTYPE_IMPLINT` for backward compatibility, see SCIPcreateVar() and SCIPchgVarType() for more details.
156 SCIP 11 will remove `SCIP_VARTYPE_IMPLINT`.
157- SCIPsubversion() is deprecated and will be removed
158
159### New and changed callbacks
160
161- added SCIP_DECL_IISFINDERCOPY(), SCIP_DECL_IISFINDERFREE(), and SCIP_DECL_IISFINDEREXEC() for iisfinder implementations
162- 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
163- 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;
164 if SCIP_DECL_TABLEOUTPUT() is omitted, then SCIP tries to print a table from the data given by SCIP_DECL_TABLECOLLECT()
165- 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,
166 that is, an implied integral type of an auxiliary variable if the expression were assigned to it
167- added argument `filename` to the SCIP_DECL_READERWRITE() callback in the 4th position
168- 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
169
170### Deleted and changed API functions
171
172- SCIPgetProbvarLinearSum(): remove parameter `mergemultiples`, which is now automatically true with the new implementation of SCIPvarGetActiveRepresentatives()
173- `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
174- SCIPcreateConsPseudobooleanWithConss(), SCIPcreateConsPseudoboolean(), and SCIPcreateConsBasicPseudoboolean(): removed `intvar` from arguments because the non-linear objective reformulation with pseudoboolean constraints did not work
175- SCIPcleanupConssLinear() and SCIPcleanupConssKnapsack(): added argument `ndelconss` to directly delete empty redundant constraints before creating problem matrix
176- SCIPcopyPlugins(): added argument `copyiisfinders` (16th position)
177- SCIPcreateConsOrbitope(): deleted two arguments and changed position of another argument
178- SCIPvarCalcDistributionParameters(): argument `impltype` added (5th position)
179- SCIPpermuteProb(): argument `permuteimplvars` has been replaced by new arguments `permutebinimplvars`, `permuteintimplvars`, and `permutecontimplvars`
180- SCIPgetLPBranchCands(): implied integral variables with integrality constraints are included in `nlpcands` count and stored at the end of `lpcands`
181- SCIPgetNLPBranchCands(): implied integral variables with integrality constraints are included
182- SCIPgetSolVarsData(): argument `nimplvars` has been replaced by new arguments `nbinimplvars`, `nintimplvars`, and `ncontimplvars`
183- SCIPexprSetIntegrality(): replaced argument `SCIP_Bool integral` by `SCIP_IMPLINTTYPE integrality` (4th position)
184- 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
185- 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
186- `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
187- SCIPcalcMIR(), SCIPcutGenerationHeuristicCMIR(), SCIPcalcStrongCG(): replaced boolean argument `usevbds` by an integer argument `vartypeusevbds`, which indicates for which variables variable bound substitution should be performed
188- `SCIPchgAndConsCheckFlagWhenUpgr()`, `SCIPchgAndConsRemovableFlagWhenUpgr()`: removed to keep upgrade flags consistent; use SCIPconsAddUpgradeLocks() to control upgrades instead
189- SCIPaddConflict(): argument `cons` changed to type `SCIP_CONS**` to release the conflict constraint in a clean way
190- SCIPprintOrigProblem() and SCIPprintTransProblem(): moved declaration moved from scip_solvingstats.h to scip_prob.h
191- `SCIPnlpiOracleGetJacobianSparsity()`: renamed to SCIPnlpiOracleGetJacobianRowSparsity() and added arguments `colnlflags` and `nnlnz`
192- SCIPnlpiOracleGetHessianLagSparsity(), SCIPnlpiOracleEvalHessianLag(): added argument `colwise`
193- 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
194- `SCIPhashtableClear()`, `SCIPcomputeArraysIntersection()`, `SCIPcomputeArraysSetminus()`,
195 `SCIPgetRandomInt()`, `SCIPgetRandomReal()`, `SCIPgetRandomSubset()`, `SCIPpermuteIntArray()`, `SCIPpermuteArray()`,
196 `SCIPvarGetLbAtIndex()`, `SCIPvarGetUbAtIndex()`, `SCIPvarGetBdAtIndex()`, `SCIPvarWasFixedAtIndex()`,
197 `SCIPaddCut()`, `SCIPcreateRow()`, `SCIPcreateEmptyRow()`, `SCIPlpfeastol()`, `SCIPchgLpfeastol()`,
198 `SCIPsolveParallel()`, `SCIPwriteImplicationConflictGraph()`, `SCIPallowDualReds()`, `SCIPallowObjProp()`,
199 `SCIPcreateConsQuadratic()`, `SCIPcreateConsBasicQuadratic()`, `SCIPaddConstantQuadratic()`, `SCIPaddLinearVarQuadratic()`, `SCIPaddQuadVarQuadratic()`, `SCIPaddQuadVarLinearCoefQuadratic()`, `SCIPaddSquareCoefQuadratic()`, `SCIPaddBilinTermQuadratic()`, `SCIPgetNlRowQuadratic()`, `SCIPchgLhsQuadratic()`, `SCIPchgRhsQuadratic()`,
200 `SCIPcreateConsAbspower()`, `SCIPcreateConsBasicAbspower()`, `SCIPgetNlRowAbspower()`,
201 `SCIPcreateConsSOC()`, `SCIPcreateConsBasicSOC()`, `SCIPgetNlRowSOC()`: removed, previously deprecated
202- `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
203- `SCIPselectPtrRealReal()`, `SCIPselectWeightedPtrRealReal()`, `SCIPsortPtrRealReal()`, `SCIPreoptAddGlbCons()`, `SCIPreoptnodeGetSplitCons()`, `SCIPcomprInitsol()`, `SCIPcomprExitsol()`,
204 `SCIPcertificatePrintSolExact()`, `SCIPincludeExLinconsUpgrade()`, `SCIPupgradeConsExactLinear()`, `SCIPgetRunningErrorStatsExactLinear()`, `SCIPcolExactGetMinPrimsol()`, `SCIPrationalarrayClear()`, `SCIPgetRowActivityExact()`, `SCIPgetRowFeasibilityExact()`, `SCIPvalsExactFree()`,
205 `SCIPbendersApplyDecomposition()`, `SCIPgetExprsdataBilinear()`, `SCIPgetVarCoefChg()`, `SCIPvarGetOrigIndex()`, `SCIPallocateSymgraphConsnodeperm()`, `SCIPwriteSto()`: removed the declaration because there was no implementation
206
207### New API functions
208
209Exact Solving:
210- SCIPenableExactSolving(): enable and disable exact solving mode; see below for a list of many new API functions added to support exact solving
211- `SCIPrational*()`: create and compute with rational numbers
212- SCIPintervalSetRational(): compute interval of rational number
213- SCIPstrToRationalValue(), SCIPrationalStrLen(), SCIPrationalToString(): handle string conversion of a rational number
214- SCIPrationalChgInfinity(), SCIPrationalGetInfinity(): handle infinity threshold of rational numbers
215- `SCIPrationalarray*()`: create and handle rational arrays
216- SCIPisExact(): query whether exact solving is enabled
217- SCIPisCertified(): query whether certification is enabled
218- `SCIPcertify*()`, `SCIP*Certificate()`: support proof logging/certificate generation
219- `SCIP*MarkExact()`: mark plugins as safe to use in exact solving mode
220- `SCIP*IsExact()` : query whether objects are ready for exact solving
221- SCIPincludeConshdlrExactLinear(): include the constraint handler for exact linear constraints
222- `SCIP*ExactLinear()`: create, query, and modify an exact linear constraint
223- SCIPconsGetLhsExact()`, SCIPconsGetRhsExact(), SCIPgetConsValsExact(): query exact sides and coefficients of a linear constraint
224- `SCIPmatrix*Exact()`: query matrix information in rational arithmetic
225- SCIPaddVarExactData(): add exact data to an existing variable
226- `SCIPvarGet*Exact()`: query variable information in rational arithmetic
227- `SCIP*Var*Exact*()`: handle variables exactly
228- SCIPchgVarLbExactDive(), SCIPchgVarUbExactDive(), SCIPisExactDivePossible(), SCIPinExactDive(), SCIPstartExactDive(), SCIPendExactDive(), SCIPsolveExactDiveLP(): handle exact LP diving
229- SCIPlpExactDiving(): query whether exact LP is in diving mode
230- SCIPlpExactIsSolved(): query whether the exact LP is solved
231- SCIPwriteLPexact(): write the exact LP
232- `SCIPcolExact*()`, `SCIProwExact*()`: handle the exact LP columns and rows
233- `SCIPlpiExact*()`: handle the exact LP interface
234- SCIPgetNExactLPs(): query the number of exact LP solves
235- SCIPgetLPExactSolstat(), SCIPgetLPExactObjval(): query solution status and objective value of the exact LP
236- SCIPaddOrigObjoffsetExact(), SCIPgetOrigObjoffsetExact(): add and query exact objective offset of the original problem
237- `SCIP*Sol*Exact()`: create and handle exact solutions
238- SCIPsolOrigAddObjvalExact(): add to exact objective of original solution
239- SCIPincludeConshdlrExactSol(): include the exact post-processing for solutions
240- `SCIP*Row*Exact*()`: create and handle exact LP rows
241- `SCIPaggrRow*Safely()`: compute safe real row aggregation
242- SCIPallowNegSlack(): query whether negative slacks are allowed
243- SCIPbranchLPExact(): branch exactly on the LP solution
244- SCIPeventGetOldboundExact(): query exact old bound for a bound change event
245- SCIPcalcIntegralScalarExact(): compute a scalar so that all given values become exactly integral
246- SCIPnodeGetLowerboundExact(): query the exact lower bound of a node
247- SCIPgetCutoffboundExact(), SCIPgetLowerboundExact(), SCIPgetUpperboundExact(), SCIPgetDualboundExact(), SCIPgetPrimalboundExact(): query exact best bounds on optimal value
248- SCIPvalidateSolveExact(): validate the exact solve
249
250Implicit Integrality:
251- SCIPincludePresolImplint(): include the new implied integral presolver
252- SCIPcreateVarImpl(), SCIPcreateObjVarImpl(): behave identically to SCIPcreateVar() and SCIPcreateObjVar(), respectively, but have an additional argument for the new implied integral type flag (8th position)
253- SCIPchgVarImplType(), SCIPvarGetImplType(), SCIPvarIsImpliedIntegral(), SCIPcolIsImpliedIntegral(): control and query implied integrality
254- SCIPvarIsNonimpliedIntegral(): query whether a variable is integral but not implied integral
255- SCIPgetNOrigBinImplVars(), SCIPgetNOrigIntImplVars(), SCIPgetNOrigContImplVars(): query the number of implied integral variables of each type in original problem;
256 note that SCIPgetNOrigBinVars(), SCIPgetNOrigIntVars(), and SCIPgetNOrigContVars() no longer include the implied integral variables in their counts
257- SCIPgetNBinImplVars(), SCIPgetNIntImplVars(), SCIPgetNContImplVars(): query the number of implied integral variables of each type in current problem;
258 note that SCIPgetNBinVars(), SCIPgetNIntVars(), and SCIPgetNContVars() no longer include the implied integral variables in their counts
259- SCIProwGetNumImpliedIntCols(): query number of implied integer columns in a row
260- SCIPvarsCountTypes(): determine the variable type count distribution for an array of variables
261- SCIPeventGetOldImplType(), SCIPeventGetNewImplType(): query implication type change for the new event \ref SCIP_EVENTTYPE_IMPLTYPECHANGED
262- SCIPexprGetIntegrality(): provides information about the presence of weakly implied integral variables, in addition to the existing function SCIPexprIsIntegral()
263
264Symmetry Handling:
265- SCIPincludeConshdlrOrbitopePP(), SCIPcreateConsOrbitopePP(), SCIPcreateConsBasicOrbitopePP(), SCIPincludeConshdlrOrbitopeFull(), SCIPcreateConsOrbitopeFull(), SCIPcreateConsBasicOrbitopeFull()
266- SCIPdisplaySymmetryGenerators(), SCIPdialogExecDisplaySymmetry(): display generators of symmetry group
267- SCIPclearSymgraph(), SCIPcopySymgraphAsSubgraph(): clear and copy a symmetry detection graph, respectively
268
269Conflict Analysis:
270- SCIPgetNResConflictConssApplied(): return the number of generalized resolution conflict constraints added to the problem
271- SCIPaddConsUpgrade(): add constraint upgrades while informing the conflict store
272
273Branching:
274- SCIPhistoryUpdateAncPseudocost(), SCIPvarUpdateAncPseudocost(): update the ancestral pseudo cost fields in variable history
275- SCIPhistoryGetAncPseudocost(), SCIPhistoryGetAncPseudocostCount(), SCIPhistoryIsAncPseudocostEmpty(), SCIPgetVarAncPseudocostVal(), SCIPvarGetAncPseudocost(): retrieve values related to ancestral pseudo cost fields in variable history
276- SCIPgetAvgDPseudocostScore(), SCIPgetVarDPseudocostScore(): compute discounted pseudo cost scores using ancestral pseudo costs
277- SCIPboundchgGetLPSolVal(): access LP solution value in the branching data of a bound change
278
279Cutting Planes:
280- SCIPincludeSepaFlower(): include the new flower cut separator
281- SCIPconsCreateRow(): to create and return the row of a linearly representable constraint
282- SCIPcreateRowKnapsack(), SCIPcreateRowLinear(), SCIPcreateRowLogicor(), SCIPcreateRowSetppc(), SCIPcreateRowVarbound(): create and get the row of linearly representable constraints
283
284Benders' Decomposition:
285- SCIPincludeRelaxBenders(): include the Benders' decomposition relaxator
286- SCIPgetMasterProblemRelaxBenders(): retrieve master problem SCIP instance from the Benders' decomposition relaxator
287- SCIPbendersGetSubproblemMasterVars(), SCIPbendersGetNSubproblemMasterVars(), SCIPbendersGetSubproblemMasterVarsData(): get the linking master variables for each subproblem and details about the number of binary and integer variables
288- SCIPsetBendersObjectiveType(), SCIPbendersGetObjectiveType(): set and get the objective type for the aggregation of the Benders' decompostion subproblems
289- SCIPbenderGetMasterAuxiliaryVar(): get master auxiliary variable
290- SCIPfreeReaderdataCor(), SCIPfreeReaderdataTim(), SCIPfreeReaderdataSto(): free the data for the COR, TIM, and STO readers, respectively; these readers are all used when reading an SMPS instance
291
292IIS:
293- SCIPincludeIISfinder(), SCIPincludeIISfinderBasic(), SCIPsetIISfinderCopy(), SCIPsetIISfinderFree(), SCIPgenerateIIS(), SCIPfindIISfinder(), SCIPgetIISfinders(), SCIPgetNIISfinders(), SCIPsetIISfinderPriority(), SCIPgetIIS()
294- SCIPiisfinderGetName(), SCIPiisfinderGetData(), SCIPiisfinderGetDesc(), SCIPiisfinderGetPriority(), SCIPiisfinderSetData(), SCIPiisfinderGetTime(), SCIPiisfinderInfoMessage(), SCIPiisGetTime(), SCIPiisIsSubscipInfeasible(), SCIPiisIsSubscipIrreducible(), SCIPiisGetNNodes(), SCIPiisSetSubscipInfeasible(), SCIPiisSetSubscipIrreducible(), SCIPiisAddNNodes(), SCIPiisGetRandnumgen(), SCIPiisGetSubscip(), SCIPiisGreedyMakeIrreducible()
295
296Hypergraphs:
297- SCIPhypergraphCreate(), SCIPhypergraphClear(), SCIPhypergraphFree(), SCIPhypergraphAddVertex(), SCIPhypergraphAddEdge(), SCIPhypergraphIsValid(), SCIPhypergraphComputeVerticesEdges(): build and delete hypergraphs
298- SCIPhypergraphComputeOverlaps(), SCIPhypergraphOverlapFind(), SCIPhypergraphIntersectEdges(), SCIPhypergraphComputeOverlapsEdges(), SCIPhypergraphComputeVerticesOverlaps(), SCIPhypergraphOverlapsDisjoint(): handle pair-wise intersections of hyperedges
299- SCIPhypergraphIterInit(), SCIPhypergraphIterClear(), SCIPhypergraphIterStart(), SCIPhypergraphIterValid(), SCIPhypergraphIterNext(), SCIPhypergraphIterBase(), SCIPhypergraphIterAdjacent(), SCIPhypergraphIterMinVertex(), SCIPhypergraphIterOverlap(): iterate over adjacent edges
300- SCIPhypergraphHasVertexEdges(), SCIPhypergraphHasOverlaps(), SCIPhypergraphHasOverlapsEdges(), SCIPhypergraphHasVertexOverlaps(), SCIPhypergraphGetNVertices(), SCIPhypergraphGetNEdges(), SCIPhypergraphBlkmem(), SCIPhypergraphGetNOverlaps(),
301 SCIPhypergraphVertexData(), SCIPhypergraphEdgeData(), SCIPhypergraphEdgeSize(), SCIPhypergraphEdgeVertices(), SCIPhypergraphVertexEdgesFirst(), SCIPhypergraphVertexEdgesBeyond(), SCIPhypergraphVertexEdgesGetAtIndex(), SCIPhypergraphOverlapData(),
302 SCIPhypergraphOverlapSize(), SCIPhypergraphOverlapVertices(), SCIPhypergraphEdgesOverlapsFirst(), SCIPhypergraphEdgesOverlapsBeyond(), SCIPhypergraphEdgesOverlapsGetAtIndex(), SCIPhypergraphOverlapsEdgesFirst(), SCIPhypergraphOverlapsEdgesBeyond(),
303 SCIPhypergraphOverlapsEdgesGetAtIndex(), SCIPhypergraphVertexOverlapsFirst(), SCIPhypergraphVertexOverlapsBeyond(), SCIPhypergraphVertexOverlapsGetAtIndex(): query information about vertices, edges, and overlaps as well as their incidences
304
305Network Matrix:
306- SCIPnetmatdecCreate(), SCIPnetmatdecFree(): create and delete a network matrix decomposition
307- SCIPnetmatdecTryAddCol(), SCIPnetmatdecTryAddRow(): add columns and rows to a matrix decomposition
308- SCIPnetmatdecContainsRow(), SCIPnetmatdecContainsColumn(): check if a matrix decomposition contains the given row or columns
309- SCIPnetmatdecRemoveComponent(): remove connected components from a matrix decomposition
310- SCIPnetmatdecCreateDiGraph(): expose underlying digraph of matrix decomposition
311- SCIPnetmatdecIsMinimal(), SCIPnetmatdecVerifyCycle(): check whether certain invariants of a matrix decomposition are satisfied and used in tests
312
313Solve Statistics:
314- functions to create, modify, and free SCIP_DATATREE objects and to print as JSON or table (see pub_datatree.h and scip_datatree.h)
315- `SCIPcollect*Statistics()`: for every `SCIPprint*Statistics()` in scip_solvingstats.h
316- SCIPprintStatisticsJson(): output a JSON string of the table statistics data
317
318Nonlinearity:
319- SCIPincludeNlpSolverConopt(), SCIPsetLicenseConopt(), SCIPgetSolverNameConopt(), SCIPgetSolverDescConopt(), SCIPisConoptAvailableConopt(): interact with the new CONOPT interface
320- SCIPnlpiOracleGetConstraintLinearCoef(): get a linear coefficient of a variable in a given constraint in the NLP oracle
321- SCIPnlpiOracleGetJacobianColSparsity(): get the column-wise sparsity pattern of the Jacobian from the NLP oracle
322- SCIPnlpiOracleGetObjGradientNnz(): get indices of nonzeroes in the objective gradient
323- `src/objscip/objexprhdlr.h`: C++ interface for expression handlers
324
325Miscellaneous:
326- SCIPsortRealPtrPtr(), ..., SCIPsortDownIntIntIntReal(): new sorting functions
327- `SCIPdebugClearSol()`: clear the debug solution
328- SCIPdialogIsHidden(), SCIPdialogSetHidden(): determine whether a dialog should be hidden in help list
329- SCIPstatusName() to get a string representation of SCIP_STATUS
330- SCIPconshdlrSetNeedsCons(): set whether constraint handler callbacks should also be called if there are no constraints
331- SCIPpropSetTimingmask(): set timing mask of a propagator
332- SCIPhashmapInsertLong(), SCIPhashmapGetImageLong()
333- SCIPvarGetMinAggrCoef(), SCIPvarGetMaxAggrCoef(): get bounds on absolute aggregation coefficients for a loose variable
334- SCIPisVarAggrCoefAcceptable(): check whether bounds on aggregation coefficients would exceed thresholds when using a loose variable in another aggregation
335- SCIPgetNRootIntFixings(): retrieve the number of integer fixings at the root node
336- SCIPcollectMemoryGarbage(): explicitly trigger garbage collection on block memory; before SCIP 10, this was done in SCIPtransformProb()
337
338### Data Structures
339
340- added struct \ref SCIP_RATIONAL for rational number arithmetic
341- added struct \ref SCIP_LPEXACT and many further data structures to support exact solving mode
342- added structs \ref SCIP_IISFINDER, \ref SCIP_IISFINDERDATA, \ref SCIP_IIS
343- added struct \ref SCIP_DATATREE to model generic serializable data; new enum \ref SCIP_DATATREE_VALUETYPE
344
345### Changes in Preprocessor Macros
346
347- `SCIP_EVENTTYPE_TYPECHANGED`: no longer generated if a variable becomes implied integral
348- `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
349- `SCIP_EVENTTYPE_DUALBOUNDIMPROVED`: new event that is generated whenever the global dual bound is improved
350- `SCIP_EVENTTYPE_GAPUPDATED`: new event mask for catching updates in primal or dual bound
351- `SCIP_PROPTIMING_NONE`: new propagator timing for never calling a propagator
352- `SCIP_HEURTIMING_NONE`: new heuristic timing for never call a primal heuristic
353- `strcasecmp`, `strncasecmp` (Windows builds): removed `#define` from scip/def.h; use SCIPstrcasecmp() and SCIPstrncasecmp() instead
354- \ref SCIP_VERSION_SUB, `SCIP_SUBVERSION`: deprecated
355- `SCIP_VARTYPE_IMPLINT_CHAR`: removed
356- `NO_RAND_R`: removed its use
357
358### SCIP Shell
359
360- `help <command>` now allows to display information on specific command
361- allow to hide certain commands in the help list
362- added the (hidden) command "exit" to exit the shell
363- added command `iis` to create an infeasible subsystem
364- added `write/iis` dialog to write out the infeasible subsystem to file
365- added `display/iis` dialog to write out the infeasible subsystem to console
366
367### Changed parameters
368
369- `heuristics/scheduler/heurtimelimit` removed to avoid indeterministic behavior of scheduler heuristic, uses main time limit instead
370- removed parameters `constraints/orbitope/checkpporbitope`, `constraints/orbitope/sepafullorbitope`, `constraints/orbitope/forceconscopy`, which became superfluous
371- removed `reading/gmsreader/signpower`
372- removed `benders/default/numthreads`: multi-threading support for Benders' decomposition has been temporarily disabled
373- restricted range of parameter `propagating/symmetry/sstleadervartype` to [1,7]; its new default value is 6
374- `propagating/∗/timingmask` extended by setting 0 to disable propagators completely
375- changed defaults of `constraints/components/propfreq` and `constraints/components/maxdepth` to -1 and 2147483647, respectively, to avoid unnecessary calls of components propagator by default
376- changed frequencies for the following heuristics: shifting, gins, crossover, rins, randrounding
377- changed default `maxlpiterquot` to 0.05 for all LP diving heuristics and feaspump, whereas adaptivediving uses 0.15 and rootsoldiving remains at 0.01
378- changed default of `presolving/restartminred` to 0.05
379- changed default of `presolving/immrestartfac` to 0.05
380- removed parameters `propagating/symmetry/{nautymaxncells,nautymaxnnodes}`
381- updated description of parameter `misc/usesymmetry`
382
383### New parameters
384
385- `exact/enable`: enable exact solving mode
386- `exact/improvingsols`: whether only improving exact solutions should be considered
387- `exact/safedbmethod`: method of safe dual bounding
388- `exact/interleavedbstrat`: interleaving strategy between safe dual bounding and exact LP solving
389- `exact/psdualcolselection`: project-and-shift strategy of dual column selection
390- `exact/cutapproxmaxboundval`: maximal absolute bound for which coefficients in exact cuts should be approximated
391- `exact/cutmaxdenom`: maximal denominator of coefficients in approximating exact cuts
392- `exact/allownegslack`: whether negative slack variables in exact Gomory cuts should be used
393- `exact/lpinfo`: whether the exact LP solver should display status messages
394- `constraints/exact{linear,sol}/{sepafreq,propfreq,proptiming,eagerfreq,maxprerounds,delaysepa,delayprop,presoltiming}`: functionality of constraint handlers exactlinear and exactsol
395- `constraints/exactlinear/sortvars`: whether binary variable coefficients should be sorted with decreasing absolute value in exactlinear constraints
396- `constraints/exactlinear/{tightenboundsfreq,propcont,limitdenom,boundmaxdenom}`: propagation of exactlinear constraints
397- `constraints/exactlinear/{maxrounds,maxroundsroot,maxsepacuts,maxsepacutsroot}`: separation of exactlinear constraints
398- `constraints/exactsol/solbufsize`: size of solution buffer in exactsol handler
399- `constraints/exactsol/{minimprove,checkfpfeasibility,checkcontimplint,abortfrac,unfixfrac}`: solution processing in exactsol handler
400- `constraints/exactsol/maxstalls`: maximal number of consecutive unsuccessful reparations in exactsol handler
401- `certificate/filename`, `certificate/maxfilesize`: certificate file
402- `branching/pscost/discountfactor`, `branching/relpscost/discountfactor`: discount factor for ancestral pseudo costs in pscost and relpscost branching rules
403- `branching/collectancpscost`: enable/disable recording of ancestral pseudo costs
404- `branching/relpscost/dynamiclookahead`, `branching/relpscost/dynamiclookaheadquot`, `branching/relpscost/dynamiclookdistribution`, `branching/relpscost/minsamplesize`:
405 configure the dynamic max-lookahead criterion for strong branching: enable flag, fraction threshold, distribution choice, and minimum sample size
406- `constraints/cumulative/maxtime`: limit the time horizon and avoid integer overflow for unbounded variables
407- `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
408- `propagating/symmetry/handlesignedorbitopes`: whether to apply special symmetry handling techniques for orbitopes whose columns can be (partially) reflected
409- `propagating/symmetry/usesimplesgncomp:` whether symmetry components all of whose variables are simultaneously reflected by a symmetry shall be handled by a special inequality
410- `propagating/symmetry/dispsyminfo`: whether to print information about applied symmetry handling methods
411- `propagating/symmetry/nautymaxlevel`: limit on depth level of Nauty's search tree
412- `presolving/implint/convertintegers`: whether implied integrality should also be detected for enforced integral variables
413- `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
414- `presolving/implint/numericslimit`: limit for absolute integral coefficients beyond which the corresponding rows and variables are excluded from implied integrality detection
415- `write/implintlevel`: whether integrality constraints should be written for implied integral variables (regarded by cip, mps, lp, rlp, pip, fzn, and gms writers)
416- `iis/∗`
417- `presolving/milp/enablecliquemerging`: whether to enable clique merging in PaPILO
418- `presolving/milp/maxedgesparallel`: maximal number of edges in the parallel clique merging graph
419- `presolving/milp/maxedgessequential`: maximal number of edges in the sequential clique merging graph
420- `presolving/milp/maxcliquesize`: maximal size of cliques considered for clique merging
421- `presolving/milp/maxgreedycalls`: maximal number of greedy max clique calls in a single thread
422- `heuristics/dks/∗`: heuristic decomposition kernel search
423- `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
424- `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
425- `conflict/usegenres`, `conflict/reduction`, `conflict/mbreduction`, `conflict/maxvarsfracres`, `conflict/resfuiplevels`, `conflict/fixandcontinue`, `conflict/maxcoefquot`: control generalized resolution conflict analysis
426- `lp/minsolvedepth`: lower bound on the depth at which LPs are solved
427- `reading/opbreader/maxintsize`: maximal intsize above which an OPB instance is rejected
428- `reading/nlreader/binary`, `reading/nlreader/comments`: adjust writing of `nl` files
429- `nlpi/conopt/priority`: priority of the CONOPT NLP solver
430- `randomization/randomseedshiftmultiplier`: multiplier for the shift set by `randomization/randomseedshift`;
431 the shift is multiplied by (6*`randomseedshiftmultiplier`+1), with the default value for `randomseedshiftmultiplier` set to 10 now;
432 this default value is expected to change with every major release; setting the parameter to 0 restores SCIP 9 behavior
433
434### Other Changes
435
436- removed LP solver interface `lpi_spx1`, which used the old SoPlex interface; renamed `lpi_spx2` to `lpi_spx`
437- removed `cons_abspower.{h,c}`, `cons_quadratic.{h,c}`, and `cons_soc.{h,c}`
438
439Build system
440------------
441
442- new option `SYM=dejavu` to choose Dejavu for computing symmetries
443- changed the default for `TPI` to `tny`
444- added build flag `CHECKSTAGE=auto` to control stage checks in API function calls
445- removed `LPS` options `spx1` and `spx2`, only `LPS=spx` is available to select SoPlex now
446- removed previously deprecated `PARASCIP` option, use `THREADSAFE=false` instead to disable thread-safety
447
448### Makefile
449
450- added build flag `EXACTSOLVE=<true|false|auto>` to turn exact solving mode on, off, or turn it on if all necessary dependencies are available
451- 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
452- added build flag `CONOPT` (default: false) to link to the CONOPT NLP solver
453- link-time-optimization can be enabled on Linux and macOS with gcc and clang by setting `LTO=true`, default is false
454- 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;
455 changed default to `SANITIZE=false`
456- default settings for makefile variables in `make.project` are now only used if variable hasn't been set already
457- 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
458- 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)
459- `LPS=spx` is no longer mapped to `LPS=spx2`, which changes the name of the generated LPI libraries and binaries when using SoPlex
460- removed `OPENSOURCE` flag
461
462### Cmake
463
464- added build flag `EXACTSOLVE=<on|off|auto>` to turn exact solving mode on, off, or turn it on if all necessary dependencies are available
465- added build flag CONOPT (default: off) to link to the CONOPT NLP solver and variable `CONOPT_DIR` to specify the path to CONOPT
466- link-time-optimization can be enabled if supported by compiler by using `-DLTO=on`, default is `off`
467- replaced `SANITIZE_XYZ=(on|off)` options by `SANITIZE=(on|off|thread|address|memory)`;
468 undefined behavior sanitizer is always enabled if not `SANITIZE=off` (the default)
469- increased minimal required cmake version to 3.11
470- scip-config.cmake now defines a variable `SCIP_COMPILE_FLAGS`, which could be used to compile code that builds against SCIP via cmake;
471 currently, this only passes on the sanitizer flags that were used to build `libscip`
472- removed automatic download and build of Bliss during cmake configuration when `-DSYM=(s)bliss`;
473 a Bliss installation from https://github.com/scipopt/bliss can be specified with `-DBLISS_DIR`
474- removed option `LEGACY`
475
476Fixed bugs
477----------
478
479- fixed bug related to unreleased data for the Benders' decomposition framework; when reading an SMPS file and applying
480 Benders' decomposition, data is created that was not correctly released; also, data within the Benders' decomposition
481 framework was not appropriately reset; the data is now released/reset as expected
482- to fix a bug where duplicate cuts from different constraint handlers were not recognized, `SCIPrealHash()` was changed
483 to be stable around shortly representable numbers, and a numerical tolerance for comparing cutting plane efficacy for the aggregation
484 separator is introduced
485- accept fractional continuous implied integral variables in heuristic "completesol"
486- invalidate activity with contradicting infinity contributions
487- avoid integer overflow in cumulative constraints triggered by unbounded variables, see new parameter `constraints/cumulative/maxtime`
488- allow negative update in SCIPconsAddUpgradeLocks() to unlock constraint upgrade
489- fixed memory leaks when LP, MPS, and OPB/WBO readers abort unsuccessfully
490- removed erroneous catching of objective-changed events in intobj separator; instead, the separator no longer executes within probing with changed objective function
491- propagator dualfix no longer fixes variables to infinity to avoid issues when transferring the solution to the original problem
492- track and check bounds on the coefficients that is used for a variable in aggregations of other variables to improve numerical stability
493- 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
494- aggregate integer variable to not in clique variable in cliquePresolve() of xor constraints to avoid infeasible solutions
495- fixed memory leak in dynamic partition search primal heuristic
496- fixed issue with file existence check in XML parser when SCIP was build with ZLIB support on Windows
497- fixed thread-safety issue when using CppAD and user-defined expression handler
498- fixed typo in `#pragma` directive of redistributed nauty.h
499
500Miscellaneous
501-------------
502
503- removed 4th number in SCIP version; the new format is major.minor.patch
504- changed sassy to the version included in Dejavu
505- updated ampl/mp to v4.0.3
506- the CIP reader now sets an objective offset instead of adding a variable fixed to the objective offset
507- the solchecker tool has been extended for rational values
508- SCIPclassifyConstraintTypesLinear() classify a varbound only when a binary variable is present
509- the internal limit `MAXGENNUMERATOR` has been increased to allow more generators of symmetry groups, especially for problems with many variables
510
511@page RN9 Release notes for SCIP 9
512
513@section RN924 SCIP 9.2.4
514*************************
515
516Fixed bugs
517----------
518
519- fixed bugs with counting changes in presolving of nonlinear and setppc constraints, which resulted in negative values
520- cut off dead end node to correctly track dual bound update during solving
521- no longer construct and flush the LP in SCIPwriteLP() and SCIPwriteMIP() to avoid unexpected side effects
522- apply multi-aggregations before detecting redundancy in propagation of varbound constraints to keep bound implications
523- skip bound changes when cutting off a branch-and-bound subtree
524- correct detection of doublelex matrices and their handling via orbitope constraints
525- skip attempting to free transformed problem if SCIPtransformProb() failed with an error in SCIPpresolve(), since freeing
526 the transformed problem is likely to fail as well
527- fixed memory leak in primal heuristic "scheduler" when there is a restart
528- fixed stopping when there is a candidate with a change in the LP bound for both children in strong branching of branch_fullstrong
529- fixed detection of sinks in varbound detection from cumulative constraints
530- fixed memory allocation when adding strong SBCs for enclosing orbit of symmetric subgroups (disabled by default)
531- free paths of branch-and-bound tree iteratively instead of recursively to avoid stack overflow
532- fixed rare invalid memory access when collecting symmetry information for indicator constraints
533- recompute activity bounds before checking infeasibility and redundancy in linear constraint presolving
534- skip integer variables with fractional value in reference solution when finding additional variable fixings in ALNS heuristic
535- fix call of SCIPaddExprsViolScoreNonlinear() with constant expressions (no variables)
536- fixed bug with concurrent solve w.r.t. variable indices that led to segmentation faults and fix termination test
537- adjust further bounds before checking feasibility in SCIPvarAddVlb() and SCIPvarAddVub() to detect integrality cutoff
538- fixed that the last fixed binary variable was not set after binary variables were created for linking constraints
539- fixed that when a linking constraint with only one binary variable was added during solving, it was not disabled
540- fixed set_search_limits call when using SYM=sbliss with an old patched Bliss version
541
542Build system
543------------
544
545### CMake
546
547- added workaround for recent ctest versions rejecting -R -default as arguments
548
549### Makefile
550
551- added experimental target to run cppcheck
552
553
554@section RN923 SCIP 9.2.3
555*************************
556
557Fixed bugs
558----------
559
560- avoid hashmap key error in removal of doubletons and singletons in dual presolve of setppc constraints by skipping tripleton locks
561- when upgrading to xor constraint require parity variable to be enforced integral
562- provide the depth of the applied effective root with SCIPtreeGetEffectiveRootDepth() to avert invalid globalization of constraint set changes
563- disable objective limit during lexicographic dual minimization to preserve feasibility status
564- declare infinite bound inference infeasible in SCIPinferVarLbCons() and SCIPinferVarUbCons() to maintain correct loose LP values
565- fixed update of consssorted flags in a variable expressions data when adding an additional constraint using this variable
566- corrected computation of number of variables affected by symmetry
567- fixed computation of symmetry group size
568- correct comparison conditions in checkRedundancySide() of cons_varbound.c to ensure pair redundancy
569- 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
570- avoid overwriting the cutoff flag in tightenCoefs(), preprocessConstraintPairs(), and applyFixings() of cons_varbound.c to reject infeasible solutions
571- fix memory leak in CppAD interface w.r.t. user expressions
572- adjust bound before checking feasibility in SCIPvarAddVlb() and SCIPvarAddVub() to detect integrality cutoff
573- choose incumbent solution as reference in varFixingsRins() and varFixingsDins() of ALNS heuristic to ensure integrality
574- consider variable type in selectInitialVariableRandomly() of GINS heuristic to count integral variables
575- correct fractionality sign when standardizing bounds in simplifyInequalities() of cons_linear.c
576
577Build system
578------------
579
580### CMake
581
582- disable setting the boolean variable MACOSX_RPATH to a string value to actually enable @rpath usage
583- define SOPLEX_NEEDED and ZIMPL_NEEDED to avoid syntax error in configuration file
584
585Miscellaneous
586-------------
587
588- when writing a problem with non-generic names, warnings are printed if variable or constraint names are not unique
589
590@section RN922 SCIP 9.2.2
591*************************
592
593Fixed bugs
594----------
595
596- fixed definition of slack variables of >= constraints and ranged rows in LP interface to Gurobi
597- free memory leaking singleton arrays for ignored variables in SCIPapplyHeurDualval()
598- use epsilon tolerance for bound implications of dual substitutions in dualPresolve() of cons_linear
599- fixed timeouts due to race conditions when using TPI=omp
600- 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
601- respect fixing if variable is declared binary in bounds section of mps file
602- fixed reading mps files with short row and column names and some fixed-form mps files with spaces in row names
603- force local bounds to adjusted value when fixing variable
604- adds missing NULL check for Benders' subproblems in feasalt cut
605- apply objective scale to pseudoboolean non-linear terms
606- impose pseudoboolean cost bound without intermediate casting
607- flatten aggregation graph before finishing presolve to accelerate evaluating an empty solution
608- respect fixed resultants in binvarGetActiveProbindex() of branch_relpscost
609- drop fixed resultants when copying pseudoboolean constraint
610- correct matrix entry when resolving aggregated variables in checkSystemGF2() of cons_xor
611- corrected symmetry detection graph of cons_and, cons_or, cons_xor, and cons_indicator
612- correct redundancy filter in consdataCreateRedundant() of cons_bounddisjunction
613- replaced unreliable comparison of node pointers by node numbers in prop_genvbounds
614- allocate memory for all integral variables in applyCliqueFixings() of heur_clique
615- fix conflict resolution for one particular case in cons_indicator
616- make interface to nauty thread safe
617- use relative epsilon tolerance to check Farkas row in SCIPlpGetDualfarkas() to avoid invalid cutoff
618- fixed bug with SOS2 constraints of size that avoided a correct enforcing
619
620Build system
621------------
622
623### Cmake
624
625- allow to set HIGHS_DIR via -D flag as well
626- reenable building and testing of SCFLP example
627- fixed that compiler flags for sanitizers were not used for compiling objects of SCIP library
628- prioritize local includes for unittests, examples, and applications to link the intended SCIP version
629- fix detection of Gurobi 11 and 12 libs on Linux
630
631### Makefile
632
633- fix use of SANITIZE=full for debug builds with GCC on Linux: removed -fsanitize=leak because it cannot be used together with -fsanitize=address
634- fix that make install SHARED=true missed to install libscipbase
635
636@section RN921 SCIP 9.2.1
637*************************
638
639Fixed bugs
640----------
641
642- apply same feasibility definition in PaPILO as in SCIP to avoid numerical inconsistencies
643- check variable cancellation in SCIPvarAddVlb() and SCIPvarAddVub() to avert wrong infeasibility
644- SCIPfreeReoptSolve() now also clears partial solutions
645- fixed bug in calculation of "fractionality score" for spatial branching candidates in cons_nonlinear
646- fixed bug with installing symmetry dialog in sub-SCIPs
647- 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
648- respect maximal separation rounds setting by running remaining delayed separators in last round
649- replace terms consistently in applyFixings() of cons_linear to handle infinite aggregations
650
651Build system
652------------
653
654### Cmake
655
656- fix SCIP Optimization Suite build with -DSYM=(s)bliss and bliss being downloaded and built during configuration by cmake
657- fix use of a bliss cmake installation (from https://github.com/scipopt/bliss) specified via BLISS_DIR if -DSYM=(s)bliss
658
659### Makefile
660
661- the check/solchecker build can now use also GMP installations by Homebrew on macOS/arm64
662
663Miscellaneous
664-------------
665
666- the output precision for writing CIP/OPB files has been increased at several places for nonlinear constraints
667- the solchecker tool now also supports SCIP solutions without unknown or infinite values
668- generate an error if the same linear constraint is used by several indicator constraints
669
670@section RN920 SCIP 9.2.0
671*************************
672
673Features
674--------
675
676- added check for absolute and relative gap limits at end of synchronization in concurrent solving mode, in order to terminate earlier;
677 note that if the concurrent solve is stopped due to a gap limit, the "winner" solver will have an interrupted solution status and
678 its primal and dual bounds may not be the best possible ones (use SCIPgetConcurrentPrimalbound() and SCIPgetConcurrentDualbound() instead)
679- parse pseudoboolean constraint from CIP format (and add linear-"and"-reformulation)
680
681
682Performance improvements
683------------------------
684
685- reoptimization now also stores propagations from propagators if reoptimization/saveconsprop is enabled;
686 the parameter will be renamed to reoptimization/saveprop in a next major release
687- imposed stricter limits on the size of disconnected components which may be solved separately during presolve
688- use individual slack variables also for constraints indicated by a common binary variable to use tighter formulation by default
689- when computing symmetries using Nauty, iteration limits are now available to terminate Nauty early
690
691Fixed bugs
692----------
693
694- Benders' decomposition subproblems that are always infeasible are correctly handled and the complete problem is declared infeasible
695- skip linear constraint propagation if the residual activity bound cancels the side precision
696- correct bound tracking to make the evaluation of primal-dual-integrals work
697- skip aggregations on fixed variables in milp presolver to avoid errors for earlier versions of PaPILO
698- use indices of negation counterparts and accept fixings when ordering and-resultants of pseudoboolean constraints
699- update locks on model variables before removing pseudoboolean constraints in presolve
700- reformulate soft pseudoboolean constraints with linear constraints if the indicator decomposition is disabled
701- add workaround for recent HiGHS versions resetting the model status when changing the presolve option after a solve
702- 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
703
704Interface changes
705-----------------
706
707### New API functions
708
709- added SCIPtpiIsAvailable() to check whether a working task processing interface is available (TPI != none)
710- added SCIPtpiGetLibraryName() and SCIPtpiGetLibraryDesc()
711- SCIPdelCons() can now also be called in SCIP_STAGE_TRANSFORMED
712- added SCIPstrcasecmp() and SCIPstrncasecmp() for case-insensitive string comparison
713- added SCIPbendersSubproblemsAreInfeasible() to return if at least one subproblem has been identified as being
714 infeasible prior to performing any variable fixing
715
716### New parameters
717
718- presolving/milp/abortfacexhaustive to control the abort threshold for exhaustive presolving in PAPILO
719- presolving/milp/abortfacmedium to control the abort threshold for medium presolving in PAPILO
720- presolving/milp/abortfacfast to control the abort threshold for fast presolving in PAPILO
721- constraints/components/maxcompweight to determine the maximum weight for a disconnected component that is solved during presolve
722- constraints/components/contfactor counts the contributing factor of a single continuous variables with respect to the weight limit specified by constraints/components/maxcompweight
723- constraints/indicator/usesameslackvar to decide whether the same slack variable should be used for indicators constraints with common binary variable
724- propagating/symmetry/nautymaxncells and propagating/symmetry/nautymaxnnodes to set iteration limits in Nauty (only available if build with SYM=nauty or SYM=snauty)
725
726### Changed parameters
727
728- presolving/milp/threads is now only available if PaPILO is built with TBB
729- changed default of numerics/recomputefac to 1e+6 to aim at relative epsilon precision
730
731Build system
732------------
733
734### Cmake
735
736- attempted to fix detection of CPLEX library on macOS and Windows systems
737
738Testing
739-------
740
741- added parameter FILTER for tests/Makefile to run only tests with a specific pattern (ctest with -R FILTER)
742
743Miscellaneous
744-------------
745
746- adjusted Gurobi interface for Gurobi 12
747- reordered events: BESTSOLFOUND/NODE_FEASIBLE are now processed before the nodes are cut off and before NODE_DELETE events are processed
748- removed `#define` of `getcwd` (in case of Windows builds) in scip/def.h
749- the `#define` of `strcasecmp` and `strncasecmp` (in case of Windows builds) in scip/def.h will be removed with SCIP 10;
750 use `SCIPstr(n)casecmp()` (scip/pub_misc.h) instead
751
752@section RN911 SCIP 9.1.1
753*************************
754
755Fixed bugs
756----------
757
758- fix bug in separator aggregation that caused incorrect terminations when for an integral objective the objective limit was set to a fractional value
759- fix bug in memory management of doublelex matrices where indices were set beyond array bounds
760- store relevance flags in consdataTightenCoefs() of cons_linear.c to avoid dropping variables unintentionally due to numerical changes
761- fix possible segmentation fault when resetting local and global bounds of original variables after abnormal termination
762- compare coefficient scales to detect parallelism to avoid integral relaxations in detectRedundantConstraints() of cons_linear.c
763- remove coefficient information from linear constraint hashes in order to compare keys with tolerances
764- fixed NULL pointer dereference in SCIPtpiGetNumThreads() of TinyCThread interface if called before SCIPtpiInit(); now returns 0 in this case
765- calling SCIPsolveConcurrent() when SCIP was compiled without a TPI now results in a plugin-not-found error
766- fixed LPI status functions of lpi_cpx if the barrier is called
767- check cuts for redundancy after scaling in cutTightenCoefs() and cutTightenCoefsQuad() of cuts.c
768- maintain definition of artificial integral variables in xor constraints to avoid invalidation of conflict constraints
769- free childless nodes only after the deactivation of the old focus path in treeSwitchPath() of tree.c
770- only normalize rows for column norm evaluations in shift-and-propagate heuristic to avoid unscaled violations
771- 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
772- check for more data to be freed before modifying nonlinear constraints in SCIPaddExprNonlinear()
773- allow for terms with zero coefficients when checking sum in SCIPexprCheckQuadratic()
774- do not abort writing of constraints to lp/pip files (and forget to free buffer memory) when encountering unsupported nonlinear constraint
775- fixed that strings with names and descriptions of the LPI's were not null-terminated
776- fixed decision on when to enforce nonlinear constraints on relaxation solutions if integer variables are present
777- fixed reading of very long lines (>78000 characters) in FlatZinc reader
778- 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)
779- keep epsilon coefficients in applyFixings() of cons_linear.c until multiples are merged to avoid loss of relevant contributions
780- fixed that some variable type changes were not accounted correctly in presolve of linear constraints
781- fix constraint sorting in setpp-orbitope upgrade in symmetry code
782- fixed that SCIPnodeGetConsProps() also counted bound changes from propagators
783- use original and-constraints of an untransformed pseudoboolean constraint when copying original problems to avert segmentation faults
784- sort and-constraints of a pseudoboolean constraint with respect to the resultant problem indices to avoid shuffled copies
785- treat pseudoboolean constraints as nonlinear constraints in OPB reader to prevent duplication mistakes
786
787Examples and applications
788-------------------------
789
790- in example Binpacking implement Farkas pricing for packings because branching can actually lead to infeasible restricted master LPs
791
792Testing
793-------
794
795- allow unknown parameters to let tests pass if only optional dependencies are missing
796
797Build system
798------------
799
800### Cmake
801
802- 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`
803- extended identification of Ipopt library on Windows to also look for ipopt.dll.lib, as this is used since Ipopt 3.13.0 (2019)
804
805
806@section RN910 SCIP 9.1.0
807*************************
808
809Features
810--------
811
812- added constraint handler that checks and enforces bounds on original variables which have been fixed or aggregated in the transformed problem
813- allow for implicit integer variables in xor constraints
814- implemented symmetry detection callbacks for pseudoboolean constraints
815- added option to consider enforcement of nonlinear constraints (including spatial branching) before integrality has been enforced
816
817Fixed bugs
818----------
819
820- make sure that, in dual proof analysis, upgraded constraints can report their number of variables
821- check knapsack constraints as linear constraints to avoid violations based on implicit integrality
822- make sure that symmetry detection callbacks report success
823- make arithmetics in cuts.c more robust to avoid invalid scg cuts due to numerical rounding sensitivity
824- allow to copy pseudoboolean constraints even if no AND constraints are present in order to avoid a warning
825- set value for variable that is introduced to reformulate nonlinear objective function when reading .nl files with initial solution
826- fixed that multi-aggregations from PaPILO were accepted without ensuring that their bounds hold
827
828Examples and applications
829-------------------------
830
831- TSP: removed `gzstream.h/hpp` and parse gzipped files differently
832
833Interface changes
834-----------------
835
836### New callbacks
837
838- SCIP_DECL_NLHDLRENFO takes additional parameter branchcandonly to indicate whether only branching candidates should be registered,
839 without looking for cuts or boundchanges
840
841### New API functions
842
843- new function SCIPgetExprActivityNonlinear() to get activity of nonlinear constraint
844- new function SCIPincludeConshdlrFixedvar() to include new constraint handler that checks bounds on fixed original variables
845
846### New parameters
847
848- 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)
849- limits/dual to terminate the solve as soon as the dual bound is at least as good as this value
850- presolving/milp/internalmaxrounds to control the maximal rounds for each call of the milp presolver (PaPILO)
851- constraints/fixedvar/∗ to control the new constraint handler that checks bounds on fixed original variables
852- constraints/nonlinear/branching/mixfractional to specify minimal average pseudo cost count for discrete variables
853 at which to start considering spatial branching before branching on fractional integer variables
854 (default infinity means that integrality is always enforced before nonlinear constraints)
855- constraints/nonlinear/branching/fracweight to specify weight of fractionality of integer variables in spatial branching
856
857### New data structures
858
859- enum SCIP_Status has been extended by SCIP_STATUS_PRIMALLIMIT and SCIP_STATUS_DUALLIMIT to indicate termination at limits/primal and limits/dual respectively
860
861Build system
862------------
863- changed the default symmetry computation package from sassy+bliss to sassy+nauty
864- bliss source is no longer included in the source tree, but can be linked as external library (https://github.com/ds4dm/Bliss)
865- cmake now automatically downloads and installs the latest release version of SoPlex from GitHub if it is not found directly
866
867Miscellaneous
868-------------
869
870- updated nauty to version 2.8.8
871
872
873@section RN901 SCIP 9.0.1
874*************************
875
876Fixed bugs
877----------
878
879- fixed bug in detection of double lex matrices due to wrong memory allocation
880- fixed bug where parameter `limits/objectivestop` was copied to subscips in plugins which have different objectives
881- in count mode respect empty solution when problem is solved in presolving
882- fixed that SCIP may have tried to pass a negative random seed to an LP solver
883- fixed bug where conflict analysis in strong branching tried to analyze an unsuccessful LP solve
884- enable parameter limits/restarts by allowing to reach the restart limit in restartAllowed()
885- handle normalizing linear constraints in presolving with more caution to avoid numerical difficulties for integer variables with large coefficients
886- use quad precision to calculate residual activity bounds to reduce numerical errors for large variable bounds in cons_linear.c
887- in SCIPsolveProbingLP() when objective has been changed do not return cutoff due to exceeding the cutoff bound
888- set probing LP to be a relaxation only when objective has not been changed
889- declare contradicting infinities in getMinActivity() and getMaxActivity() as non-tight
890- reject farkas solution with large values to bound magnification of errors in SCIPgetFarkasProof()
891- if all variables are fixed, apply relative feasibility tolerance to avoid invalid infeasibility in applyFixings() of cons_linear.c
892- delete empty redundant knapsack and linear constraints after cleanup in SCIPmatrixCreate()
893- cleanup first constraints in SCIPcleanupConssVarbound(), SCIPcleanupConssSetppc(), and SCIPcleanupConssLogicor()
894- symmetry handling methods have not been added immediately after computing symmetries, which has been fixed
895- delay checking node limits after presolving to correctly continue up to the exceeding main node
896- simplified the objective sense assumption for the subproblems in the Lagromory separator
897- update effective root depth iteratively to avoid trapping it at a single child node
898- fixed that dualsparsify presolver did not always check do-not-multiaggregate variable flag
899- fixed bug in computing elements of orbits in orbital reduction
900
901Miscellaneous
902-------------
903
904- redefine isrelax to istight in cons_linear.c
905
906Build system
907------------
908
909### Cmake
910
911- A file cmake.log containing the changed options is written to the cmake build directory.
912- removed replacement of the settings of RelWithDebInfo
913- add compile option -ffp-contract=off or /fp:precise to enhance reproducibility across different systems
914
915### Makefile
916
917- add flags -ffp-contract=off and /fp:precise to enhance reproducibility across different systems
918
919Interface changes
920-----------------
921
922### New parameters
923
924- added parameter "propagating/symmetry/symtiming" to determine when symmetries are computed and handled
925
926### Changed parameters
927
928- Disabled "propagating/symmetry/addconsstiming" since it is not used anymore.
929- Disabled "propagating/symmetry/ofsymcomptiming" since it is not used anymore.
930
931@section RN900 SCIP 9.0.0
932*************************
933
934Features
935--------
936
937- added simplification of abs(x)^n to x^n when n is even (simplify rule POW12)
938- in expression simplification, added possibility to expand power of sum with exponents larger than 2 (simplify rule POW7)
939- in expression simplification, added possibility to expand products with sums as factor when there are more than two factors (simplify rule SP12b)
940- in expression simplification, added possibility to allow expanding power of products with fractional exponent (simplify rule POW5a)
941- can now build with Lapack (used for solving nonlinear problems) explicitly; if IPOPT is used, then Lapack is accessed through it;
942 an interface to Lapack is available in lapack_calls.h
943- added support for logical constraints in binary variables and basic logical operators (and, or, not, equal) to AMPL .nl reader
944- indicator constraints now use the same slack variable for the linear constraints if binary variables are used multiple times
945 for indicator constraints
946- new diving heuristic indicatordiving that focuses on indicator variables which control semicontinuous variables
947- updated statistics on NLP relaxation; information on convexity of NLP has been added
948- added new bandit method (EXP.3-IX) that is the new default of the ALNS heuristic
949- added dialog to display recognized permutation symmetries ("display symmetry")
950- The symmetry detection code has been completely restructured. Instead of completely encoding symmetry information in
951 prop_symmetry.c, there is a new callback for constraint handlers, which returns symmetry relevant information by
952 encoding a constraint as a node and edge colored graph. This way, also custom constraint handlers can provide
953 symmetry information.
954- added special presolving step for logicor and set covering/packing for constraints with two variables and one independent variable
955- 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
956- added new cut selector plugin called cutsel_ensemble. Performs a superset of hybrid cutsel. Implements new filtering methods and scoring options.
957- added new branching rule based on Gomory mixed-integer cuts
958- added new branching score to the reliability pseudo-cost branching rule
959- added new cut selector plugin called cutsel_dynamic. Performs a superset of hybrid cutsel. Implements new filtering methods and scoring options.
960- added monoidal strengthening to intersection cut generation of nlhdlr_quadratic
961- extended heuristic dps to run after processing the node and to use strict limits for the reoptimization step
962- extended obbt propagator to handle variables of the linear constraints corresponding to indicator constraints
963- added new heuristic heur_scheduler that models the selection of LNS and diving heuristics as a multi-armed bandit problem
964- added nonlinear handler for signomial expressions: adds cuts based on a difference of convex functions representation
965- 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.
966- added a new separator sepa_lagromory to generate Lagromory cuts in a relax-and-cut framework, i.e., GMI cuts generated
967 at different bases that are explored in the process of solving the Lagrangian dual problem at a node. This separator
968 is OFF by default.
969- when parsing nonlinear constraints from CIP files, the * after the number in a term is now optional if followed by a variable,
970 i.e., instead of 3*<x>*<y>, now also 3<x>*<y> can be read, but 3<x><y> is not supported;
971 this allows to read some CIP files that were written with SCIP < 8
972- when running bliss, we now limit the number of actually created generators and not the ones considered by bliss
973
974Performance improvements
975------------------------
976
977- Variable conflict-based addition of Schreier-Sims cuts for symmetry handling in prop_symmetry.c does no longer use
978 an expensive explicit conflict graph construction.
979- Only run propagation of indicator constraints if relevant variables have changed.
980- Propagation of indicator constraints propagates maximal activity of linear constraint to upper bound of slack variable.
981- Added initialization of LP relaxation for SOC constraints.
982- Avoided some numerical issues when separating SOC constraints.
983- If differentation of convex expression fails in convex nlhdlr, then a perturbed point is tried.
984- Use sassy/bliss as default symmetry computation package.
985- No longer linearize indicator constraints in undercover heuristic by default.
986- Deactivate pre-root heuristic zeroobj in undercover heuristic.
987- Added new branching score tiebreaker for reliability pseudo-cost branching rule
988- Try nearest bound if zero solution value is out of bounds in heuristic trivial.
989
990Interface changes
991-----------------
992
993### New and changed callbacks
994
995- Added solution linearization callback for nonlinear handlers.
996 The nonlinear handler may use this callback to add tight cuts that use the given solution as reference point to the cutpool.
997 The callback is called if option constraints/nonlinear/linearizeheursol is enabled.
998- The callback for copying problem data SCIP_DECL_PROBCOPY() now has a parameter "original" indicating whether the original
999 or transformed problem should be copied. Similarly, SCIPprobCopy() in prob.h/c has such a parameter.
1000- Added CONSGETPERMSYMGRAPH and CONSGETSIGNEDPERMSYMGRAPH callback for constraint handlers, which provides symmetry information about constraints to SCIP.
1001
1002### Deleted and changed API functions
1003
1004- SCIPtpiInitLock(), SCIPtpiDestroyLock(), SCIPtpiInitCondition(), SCIPtpiDestroyCondition() now take a double
1005 pointer to SCIP_LOCK/SCIP_CONDITION, respectively.
1006- Renamed SCIPtpiSumbitJob() to SCIPtpiSubmitJob().
1007- SCIPcreateConsIndicatorLinCons(), SCIPcreateConsIndicatorGenericLinCons() do not allow binvar to be NULL anymore
1008- Replaced SCIPnlrowSetCurvature() by SCIPsetNlRowCurvature().
1009- SCIPsnprintf() now returns the required string length in case reallocation is necessary.
1010- SCIPcomputeCoverUndercover() receives three more arguments which nonlinearities to cover
1011- removed definition of SQRT
1012- SCIPincludeObjConshdlr(), SCIPincludeConshdlr(), SCIPconshdlrCreate() receive two more arguments for the
1013 conshdlr callbacks CONSGETPERMSYMGRAPH and CONSGETSIGNEDPERMSYMGRAPH
1014- removed SYM_VARTYPE, SYM_OPTYPE, SYM_CONSTTYPE, SYM_RHSTYPE, SYM_MATRIXDATA
1015- new parameter issigned for SCIPcomputeOrbitsSym()
1016- new parameter symtype for SCIPcomputeComponentsSym()
1017- new parameter symtype and permvardomaincenter for SCIPlexicographicReductionAddPermutation()
1018- replaced parameters matrixdata and exprdata of SYMcomputeSymmetryGenerators() by graph
1019
1020### New API functions
1021
1022- new functions for interfacing with Lapack: SCIPlapackIsAvailable(), SCIPlapackIsAvailable(), SCIPlapackComputeEigenvalues(), and SCIPlapackSolveLinearEquations
1023 These functions should be used instead of SCIPisIpoptAvailableIpopt(), SCIPcallLapackDsyevIpopt(), and
1024 SCIPsolveLinearEquationsIpopt() in the context of computing eigenvalues or solving linear equations.
1025 If IPOPT is available, the calls will be passed on to Ipopt's interface to Lapack.
1026- SCIPmultiplyBySumExprSum(), SCIPpowerExprSum()
1027- SCIPsetParam()
1028- SCIPgetPrimalDualIntegral() returns the primal dual integral stored in the statistics
1029- new functions SCIPcreateConsIndicatorLinConsPure() and SCIPcreateConsIndicatorGenericLinConsPure() that
1030 create indicator constraints from a linear constraint without a slack variable
1031- SCIPgetNLPNlRowsStat() to retrieve counts on linear, convex, and nonconvex rows in NLP
1032- SCIPnlhdlrSetSollinearize(), SCIPnlhdlrHasSollinearize()
1033- SCIPbendersGetNLPParam()
1034- new API functions SCIPlexicographicReductionGetStatistics(), SCIPlexicographicReductionPrintStatistics(),
1035 SCIPlexicographicReductionPropagate(), SCIPlexicographicReductionAddPermutation(), SCIPlexicographicReductionReset(),
1036 SCIPlexicographicReductionFree(), SCIPincludeLexicographicReduction(), for lexicographic reduction.
1037- new API functions SCIPorbitopalReductionGetStatistics(), SCIPorbitopalReductionPrintStatistics(),
1038 SCIPorbitopalReductionPropagate(), SCIPorbitopalReductionAddOrbitope(), SCIPorbitopalReductionReset(),
1039 SCIPorbitopalReductionFree(), SCIPincludeOrbitopalReduction(), SCIPorbitopalReductionGetDefaultColumnOrdering(),
1040 for orbitopal fixing.
1041- new API functions SCIPorbitalReductionGetStatistics(), SCIPorbitalReductionPrintStatistics(),
1042 SCIPorbitalReductionPropagate(), SCIPorbitalReductionAddComponent(), SCIPorbitalReductionReset(),
1043 SCIPorbitalReductionFree(), SCIPincludeOrbitalReduction(), for orbital fixing.
1044- new API functions SCIPgetShadowTreeEventHandlerExecutionTime(), SCIPshadowTreeGetShadowNodeFromNodeNumber(),
1045 SCIPshadowTreeGetShadowNode(), SCIPgetShadowTree(), SCIPactivateShadowTree(), SCIPincludeEventHdlrShadowTree(),
1046 for managing a copy of the branch-and-bound tree for symmetry handling purposes.
1047- SCIPdotWriteOpening(), SCIPdotWriteNode(), SCIPdotWriteArc(), SCIPdotWriteClosing()
1048- SCIPincludeCutselEnsemble(), SCIPselectCutsEnsemble() to include cutsel_ensemble or use the selection algorithm
1049- SCIPincludeBranchruleGomory() includes new gomory cut based branching rule
1050- SCIPgetVarAvgGMIScore(), SCIPincVarGMISumScore(), SCIPgetVarLastGMIScore(), SCIPsetVarLastGMIScore() set historical values used by SCIP's default branching rule
1051- SCIPincludeNlhdlrSignomial() includes the signomial nonlinear handler
1052- SCIPgetExprMonomialData() returns a monomial representation of a product expression
1053- SCIPestimateRoot() computes estimators for roots with exponent in [0,1]
1054- SCIPincludeCutselDynamic(), SCIPselectCutsDynamic() to include cutsel_dynamic or use the selection algorithm
1055- SCIPincludeSepaLagromory() to include the new Lagromory separator
1056- SCIPconsCompCheck() to compare two constraints based on their check priority
1057- SCIPgetConsPermsymGraph() and SCIPgetConsSignedPermsymGraph() to access the (signed) permutation symmetry detection graph of a constraint
1058- SCIPsetConshdlrGetPermsymGraph() and SCIPsetConshdlrGetSignedPermsymGraph() to set the (signed) permutation symmetry detection graph of a constraint
1059- SCIPconshdlrSupportsPermsymDetection() and SCIPconshdlrSupportsSignedPermsymDetection() to access whether a conshdlr supports detection of (signed) permutation symmetries
1060- new API functions for creating and manipulating a symmetry detection graph: SCIPcreateSymgraph(), SCIPfreeSymgraph(), SCIPcopySymgraph(), SCIPextendPermsymDetectionGraphLinear(),
1061 SCIPaddSymgraphVarAggregation(), SCIPaddSymgraphOpnode(), SCIPaddSymgraphValnode(), SCIPaddSymgraphConsnode(), SCIPgetSymgraphVarnodeidx(), SCIPgetSymgraphNegatedVarnodeidx(),
1062 SCIPupdateSymgraphLhs(), SCIPupdateSymgraphRhs(), SCIPfixSymgraphVarnode(), SCIPaddSymgraphEdge(), SCIPcomputeSymgraphColors(), SCIPgetSymgraphSymtype(), SCIPgetSymgraphVars(),
1063 SCIPgetSymgraphNVars(), SCIPgetSymgraphNConsnodes(), SCIPgetSymgraphNNodes(), SCIPgetSymgraphNEdges(), SCIPgetSymgraphEdgeFirst(), SCIPgetSymgraphEdgeSecond(),
1064 SCIPgetSymgraphVarnodeColor(), SCIPgetSymgraphNodeType(), SCIPgetSymgraphNodeColor(), SCIPisSymgraphEdgeColored(), SCIPgetSymgraphEdgeColor(), SCIPgetSymgraphNVarcolors(),
1065 SCIPhasGraphUniqueEdgetype(), SCIPcreateSymgraphConsnodeperm(), SCIPgetSymgraphConsnodeperm(), SCIPfreeSymgraphConsnodeperm(),
1066 SCIPgetSymActiveVariables(), SCIPfreeSymDataExpr(), SCIPgetSymExprdataNConstants(), SCIPgetSymExprdataConstants(), SCIPgetCoefSymData(),
1067 SCIPcreateSymOpNodeType(), SCIPgetSymOpNodeType()
1068- SCIPexprhdlrSetGetSymdata(), SCIPexprhdlrHasGetSymData(), SCIPgetSymDataExpr(), SCIPcallExprGetSymData() to access symmetry data of expressions
1069- SYMcheckGraphsAreIdentical() to check whether two symmetry detection graphs are identical
1070- new functions SYMbuildSassyGraph(), SYMbuildSassyGraphCheck()
1071- new type SYM_GRAPH
1072- new definitions SCIP_DECL_CONSGETPERMSYMGRAPH, SCIP_DECL_EXPRGETSYMDATA
1073- new member SYM_NODETYPE_CONS in SYM_NODETYPE enum
1074- new members SYM_CONSOPTYPE_SUM, SYM_CONSOPTYPE_SLACK, SYM_CONSOPTYPE_COEF, SYM_CONSOPTYPE_RHS, SYM_CONSOPTYPE_LAST in SYM_CONSOPTYPE enum
1075- new defintion SCIP_DECL_EXPRGETSYMDATA
1076- new function SCIPdetectSingleOrDoubleLexMatrices()
1077
1078### Command line interface
1079
1080- Added optional parameter -i when calling SCIP in AMPL-mode (-AMPL parameter).
1081 If -i is specified, a SCIP shell is started where normally SCIPsolve() would be called.
1082
1083### Interfaces to external software
1084
1085- added interface to nauty/traces for symmetry computation
1086- added interface to sassy, a preprocessor for symmetry computation
1087- The directory src/sassy contains the source code of sassy.
1088- Added interface to Lapack (used for solving nonlinear problems).
1089- The AMPL interface now supports parameters specified in AMPL command scripts via option scip_options.
1090 The value of scip_options is expected to be a sequence of parameter names and values, separated by a space, e.g.,
1091 `option scip_options 'limits/time 10 display/verblevel 1';`.
1092 String values should not be quoted and spaces in string values are not supported.
1093- sassy can be used now as preprocessor for nauty/traces
1094- The solution status codes written to AMPL solution files now match those from https://mp.ampl.com/details.html#_CPPv4N2mp3sol6StatusE.
1095
1096### Changed parameters
1097
1098- change default value of parameter separating/filtercutpoolrel to FALSE
1099- Shrunk range of parameter "propagating/symmetry/sstleaderrule" from [0,3] to [0,2], removed "MAXCONFLICTS"-option.
1100- 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).
1101- Disabled "propagating/symmetry/symfixnonbinaryvars" since it is not used in the new symmetry code.
1102- Replaced "propagating/symmetry/onlybinarysymmetry" with "propagating/symmetry/enforcecomputesymmetry" and set to FALSE by default.
1103- Disabled "propagating/symmetry/performpresolving" since running orbital reduction during presolving is not effective.
1104- Repurposed "propagating/symmetry/usedynamicprop" since it now also applies to lexicographic reduction.
1105- Changed default value of parameter "propagating/symmetry/addsymresacks" from FALSE to TRUE.
1106
1107### New parameters
1108
1109- separating/maxcutsgenfactor and separating/maxcutsrootgenfactor as factors (w.r.t. separating/maxcuts and
1110 separating/maxcutsroot) for limits on the number of cuts generated (which used to be constants '2')
1111- expr/pow/expandmaxexponent to specify limit on exponent when to expand power of sum
1112- expr/pow/distribfracexponent to enable expanding power of products with fractional exponents
1113- expr/product/expandalways to enable expanding any product with sums as factor (that is, also when more than two factors)
1114- nlhdlr/convex/maxperturb to specify maximal perturbation of non-differential reference points
1115- benders/default/nlpiterlimit to adjust iteration limit for NLP solver for Benders' decomposition NLP subproblems
1116- limits/objectivestop to interrupt the solve as soon as a primal solution is found
1117 that is at least as good as the given value
1118- heuristics/undercover/{coverand,coverind,covernl} to control which nonlinearities to consider (by default only "and" and nonlinear constraints)
1119- cutselection/ensemble/∗ all parameters for new ensemble cut selector
1120- cutselection/dynamic/∗ all parameters for new dynamic cut selector
1121- branching/relpscost/gmiavgeffweight specifies the weight in the relpscost branching score of the normalized efficacy of all generated GMI cuts (for a variable)
1122 branching/relpscost/gmilasteffweight specifies the weight in the elpscost branching score of the normalized efficacy of the last generated GMI cut (for a variable)
1123- nlhdlr/quadratic/usemonoidal to enable monoidal strengthening when separating quadratics with intersection cuts
1124- nlhdlr/quadratic/trackmore to collect more statistics for monoidal strengthening when separating quadratics with intersection cuts
1125- nlhdlr/quadratic/useminrep to use the minimal representation to compute cut coefficients when separating quadratics with intersection cuts
1126- nlhdlr/quadratic/sparsifycuts to enable sparsification of intersection cuts for quadratics
1127- heuristics/dps/reoptlimits to set strict limits for the reoptimization step in dps
1128- heuristics/dps/timing to run dps after processing the node
1129- heuristics/scheduler/∗ all parameters for new scheduler heuristic
1130- nlhdlr/signomial/enabled, nlhdlr/signomial/maxnundervars, nlhdlr/signomial/mincutscale: parameters for the signomial nonlinear handler
1131- separating/lagromory/freq to denote the frequency for calling Lagromory separator
1132- separating/lagromory/away to denote the minimal integrality violation of a basis variable to try separation
1133- separating/lagromory/dynamiccuts to denote whether the generated cuts be removed from LP if they are no longer tight
1134- separating/lagromory/maxroundsroot to denote the maximal number of separation rounds in the root node
1135- separating/lagromory/maxrounds to denote the maximal number of separation rounds in a non-root node
1136- separating/lagromory/nmaxcutsperlproot to denote, in the root node, the maximal number of Lagromory cuts that can be
1137 separated per explored basis of the Lagrangian dual
1138- separating/lagromory/nmaxcutsperlp to denote, in a non-root node, the maximal number of Lagromory cuts that can be
1139 separated per explored basis of the Lagrangian dual
1140- separating/lagromory/perroundnmaxlpiters to denote the maximal number of separating LP iterations that are allowed per
1141 separation round
1142- separating/lagromory/dualdegeneracyratethreshold to denote the minimum dual degeneracy rate for the separator execution
1143- separating/lagromory/varconsratiothreshold to denote the minimum variable-constraint ratio on the optimal face for the
1144 separator execution
1145- many other advanced parameters for the Lagromory separator, which are also mentioned under separating/lagromory/∗
1146
1147### Data structures
1148
1149- new data structure SYM_GRAPH to encode symmetry information from a constraint
1150- new data structure SYM_EXPRDATA to encode symmetry information from expressions
1151- replaced enum SYM_SYMTYPE by a complete new one; removed SYM_RHSSENSE, added SYM_NODETYPE and SYM_CONSOPTYPE
1152
1153Deleted files
1154-------------
1155
1156- 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
1157
1158Unit tests
1159----------
1160
1161- new unittests for nlhdlr_quadratic that test monoidal strengthening and the use of the minimal representation to compute cut coefficients
1162- unittests for nlhdlr_signomial
1163
1164Testing
1165-------
1166
1167- changed `set lim obj` to `set lim objective` in ctest since `obj` is no longer unambiguous
1168
1169Build system
1170------------
1171
1172### Cmake
1173
1174- New flag -DLAPACK=on for linking with Lapack (must be available in the system)
1175- added flag option "SYM=sbliss" for using sassy/bliss as a graph automorphism package
1176- use SYM=sbliss by default, since sassy and bliss are now shipped with SCIP.
1177- added flag option "SYM=snauty" for using sassy/nauty as a graph automorphism package
1178
1179### Makefile
1180
1181- added flag option "nauty" for SYM variable to specify which graph automorphism package should be used
1182- added flag option "sbliss" (sassy/bliss) for SYM variable to specify which graph automorphism package should be used
1183- added flag option "snauty" (sassy/nauty) for SYM variable to specify which graph automorphism package should be used
1184- use SYM=sbliss by default, since sassy and bliss are now shipped with SCIP
1185- New flag LAPACK for linking with Lapack (must be available in the system)
1186- A file scip/config.h is created in the build directory ($(OBJDIR)/include) now.
1187 Defining NO_CONFIG_HEADER is no longer necessary and has no effect anymore.
1188
1189Fixed bugs
1190----------
1191
1192- Number of runs in which separation is enabled will now be correct as per "separating/maxruns" parameter. Earlier,
1193 separation was enabled for "maxruns + 1" number of runs, i.e., separation was enabled even when "maxruns = 0" was set.
1194- add safeguard for number of selected cuts
1195- use double double precision for delta in activity updates of cons_linear.c
1196- sort constraints in checkSolOrig() to keep the logic of constraint handlers intact
1197- fixed make install when SHARED=no and make uninstall
1198- check absolute coefficients relative to extremal average to avoid invalid unifications in normalizeCons()
1199- enforce and check symmetry-based constraints to take their locks (in dual reductions) into account
1200- flush changes at the end of SCIPlpiSetBase() in lpi_grb.c to apply the newly set basis correctly
1201
1202Miscellaneous
1203-------------
1204
1205- The TPI has been changed to become mostly independent from the actual parallel interface during compile time.
1206 For this, the locks and conditions are now pointers to abstract structs.
1207- fixed that scip/def.h, the header for C preprocessor definition (`#define`'s), included headers for some SCIP type and function definitions
1208 (scip/type_retcode.h, scip/type_message.h, scip/pub_message.h)
1209
1210
1211@page RN8 Release notes for SCIP 8
1212
1213@section RN810 SCIP 8.1.0
1214*************************
1215
1216Fixed bugs
1217----------
1218
1219- fixed that scaling of rows in Gurobi interface (SCIPlpiScaleRow()) changed infinite sides to large finite ones (1e20) when scale factor is negative
1220- check whether objective limit is truly reached in SCIPlpiIsStable()
1221- if an objective limit is set and Mosek claims that it is exceeded, check that this is indeed the case in SCIPlpiIsStable()
1222- the .mps file reader was extended to additionally accept .mps files with the objective sense section on one line
1223- ensure that delayed cutpool separation does not happen if enough cuts have been found already
1224- 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
1225- 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
1226- fixed memory leak in branching rule "distribution"
1227- 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
1228- fixed two bugs in cons_varbound: avoid adding variable bounds if vbdcoef is infinite and unlock/lock variables if lhs/rhs/vbdcoef are changed
1229- 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
1230- fixed error when attempting to copy SCIP with activated pricers
1231- 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
1232- updated and, or, and pseudoboolean constraint handlers to better handle fractional implicit integer variables in enforcement
1233- 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
1234- add missing row links to columns in SCIPflushRowExtensions() required to maintain correct row norms
1235- restrict separator intobj to solutions for which there can be no better feasible integral objective values to avoid cutting them off
1236- delay removal of clique lists from SCIPvarRemoveCliquesImplicsVbs() into cliqueCleanup() to avoid segmentation faults by incomplete cleanups after variable conversions
1237- reject sub-solutions with invalid objectives in SCIPtranslateSubSols() due to contradicting infinite contributions
1238- correct column index in getMinMaxActivityResiduals() to make presolver dualinfer work
1239- copy quiet flag from main scip's message handler to the one of solverscip in concurrent optimization
1240- avoid bound tightening cycles towards huge redundancy bounds in fullDualPresolve() to avert fatal numerical trouble in representing vertices of linear relaxations with unbounded domains
1241- fix problem where debug solution did not work if branching constraints are present
1242- update index of dominating variable on coefficient deletion in dualPresolving() of constraint handler logicor
1243- pass on flags from a redundant to the implying varbound constraint in preprocessConstraintPairs() to avoid suboptimal fixings by model relaxations
1244- apply reductions of dualinfer only if a dual solution exists (primal is bounded)
1245- before presolving is finished check solutions before retransforming them including tiny values to keep check flags consistent
1246- 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
1247- correct local flag of singleton conflict constraints in tightenSingleVar() against invalid bound globalization
1248- respect unboundedness in the computation of activity bounds in conflict.c to avoid invalid huge bounds due to small coefficients on unbounded variables
1249- ensure positive sides of a linear constraint when recognizing a set partition in rangedRowSimplify() to account for redundancy issues
1250- relax numerical conditions for variable aggregations to avert invalid variable fixings
1251- fixed harmless read of uninitialized data when creating parameters
1252- fix call of SCIPnlpiOraclePrintProblem in nlpi_worhp
1253
1254Performance improvements
1255------------------------
1256
1257- Use sassy/bliss as default symmetry computation package.
1258
1259Interface changes
1260-----------------
1261
1262### Interfaces to external software
1263
1264- added interface to nauty/traces for symmetry computation
1265- added interface to sassy, a preprocessor for symmetry computation
1266- The directory src/sassy contains the source code of sassy.
1267
1268Build system
1269------------
1270
1271### Cmake
1272
1273- added flag option "SYM=sbliss" for using sassy/bliss as a graph automorphism package
1274
1275### Makefile
1276
1277- added flag option "nauty" for SYM variable to specify which graph automorphism package should be used
1278- added flag option "sbliss" for SYM variable to specify which graph automorphism package should be used
1279- use SYM=sbliss by default, since sassy and bliss are now shipped with SCIP
1280
1281Miscellaneous
1282-------------
1283
1284- the parameter change callback is no longer called at the moment a parameter is created
1285
1286@section RN804 SCIP 8.0.4
1287*************************
1288
1289Features
1290--------
1291
1292- use quad precision in cutsSubstituteMIR() for substituting slack variables into CMIR cuts
1293- use quad precision for activity computations in cons_linear.c
1294
1295### Deleted and changed API functions
1296
1297- SCIPshrinkDisjunctiveVarSet() no longer attempts to cutoff the current node if it finds the
1298 given disjunction to be infeasible; it is now in the responsibility of the caller to act accordingly
1299
1300### New API functions
1301
1302- added SCIPskipSpace
1303- added XML parser routines from src/xml/xml.h
1304
1305### Interfaces to external software
1306
1307- updated XPRESS interface to work with XPRESS 41 as well
1308- new interface to LP solver HiGHS (lpi_highs.cpp)
1309
1310### Changed parameters
1311
1312- changed integer parameter "propagating/symmetry/recomputrestart" from range {0, 1, 2} to being fixed at value 0
1313
1314Unit tests
1315----------
1316
1317- added new checks for objective, bounds and sides inside the scaling tests in lpi/change.c
1318
1319Fixed bugs
1320----------
1321
1322- relax condition of assert in lpSolve to hold only if lp/checkstability is true
1323- OPB reader: dynamically increase the size of the line buffer for reading in getMaxAndConsDim()
1324- Enabled the solution limit checks in SCIPsolveIsStopped in solve.c when in SCIP_STAGE_PRESOLVING
1325- fix quad precision comparison for the calculation of knapsackcover constraints.
1326- force copying of symmetry constraints for concurrent solve
1327- increase the precision of double multiplications in quad precision environments
1328- corrected handling of different variable types in symmetry
1329- orbitope detection: refine computation of overlap structure and fixed bug in finding orbitope generators
1330- ensure that winner is always determined in concurrent mode
1331- when a row with invalid index range is added to the global cutpool, update the indices instead of failing with an assert
1332- update of watched literals in cons_xor.c and ensure that fixed variables are counted in propacateCons()
1333- avoid some numerical issue in check for redundant variables in linear constraints (introduced with version 8.0.2)
1334- more rows are treated as being integral in cutsSubstituteMIR() for CMIR cuts
1335- fixed several relaxations of the rhs of cuts to 0 in cuts.c
1336- avoid aggregation into a single linear constraint if they should not be upgraded (needed for indicator constraints)
1337- apply effective root changes before fork is repropagated during treeSwitchPath() in tree.c
1338- avoid invalid objective value for solutions generated from an unbounded LP relaxation in case of a nonlinear objective function
1339- disable recomputing symmetries after a restart (constraint removal is not permitted)
1340- avoid cutting off optimal solutions for small feasibility tolerances in conflict analysis
1341- initialize variable in presol_dualsparsify.c
1342- fix in presolving of variable bound constraints to use absolute instead of relative difference
1343- free variable histories in reoptimization mode
1344- handle whitespaces in interactive shell history consistently
1345- check and enforce equalities on which the objective is projected in cons_linear.c
1346- ensure row feasibilities of solution shiftings in heur_oneopt.c and heur_twoopt.c
1347- remove rounded row check blocking tolerable primal solutions in cons_varbound.c
1348- fixed that presolve of logicor-constraints may have attempted to cutoff a root of the not yet existing branch-and-bound tree
1349- only consider positive slack variables as active in benders.c
1350- in the feasibility check of and/or constraints, allow for fractional values in operands
1351- fixed linear outer-approximation for some composite absolute-value expressions
1352
1353Miscellaneous
1354-------------
1355
1356- Extended documentation of the parameter limits/solutions to point out that the limit is first checked in presolving
1357- Added more information about using SCIPcache- and SCIPflushRowExtensions() to documentation and comments
1358- Extended the `how to add' sections of the documentation by adding information on how to include default plugins into SCIP
1359
1360@section RN803 SCIP 8.0.3
1361*************************
1362
1363Examples and applications
1364-------------------------
1365
1366- Externalize STP and PolySCIP applications
1367
1368Interface changes
1369-----------------
1370
1371### Command line interface
1372
1373- When running the AMPL interface, the .nl filename extension does not need to be omitted for the input file anymore.
1374
1375Build system
1376------------
1377
1378### Cmake
1379
1380- Forbid CMAKE_BUILD_TYPE nonstandard values
1381- Move -I/path/to/src/amplmp/include to front of compiler flags for include directories
1382
1383### Makefile
1384
1385Fixed bugs
1386----------
1387
1388- fixed an incorrect handling of xor constraints
1389- the feasibility checker for integrality constraints now uses checkintegrality even for implied integers
1390- skip integrality check in cons_integral for relaxation-only implicit-integer variables
1391- fixed an issue caused by aggregated variables not added to a hashmap in the xor constraint handler
1392- changed function solveRowEchelonGF2 in cons_xor.c to avoid errors if rank is 0
1393- fixed that the implication presolver tried to aggregate or tighten bounds of multiaggregated variables
1394- fixed a sign check in detection of linear constraints that are parallel to the objective
1395- fixed bug in Clp and lpi_clp with missing basis information when calling the barrier with crossover; needs new Clp version
1396- do not assume aggregation is successful in cons_setppc.c
1397
1398Miscellaneous
1399-------------
1400
1401- Changed license to Apache 2.0, see https://www.apache.org/licenses/LICENSE-2.0.
1402- When an LP could not be solved accurately, scaling is now turned off as a last fall-back method.
1403- Functions for using the debug solution mechanism SCIPdebugAddSolVal, SCIPdebugGetSol, SCIPdebugGetSolVal,
1404 SCIPdebugSolIsValidInSubtree, SCIPdebugIsMainscip, SCIPdebugSolEnable, SCIPdebugSolDisable, SCIPdebugSolIsEnabled,
1405 SCIPwithDebugSol are now exported
1406
1407@section RN802 SCIP 8.0.2
1408*************************
1409
1410Interface changes
1411-----------------
1412
1413### Deleted and changed API functions
1414
1415- added input parameter SCIP_Bool initiallp to SCIPcutselsSelect
1416- changed function type int to SCIP_Longint for SCIPcutpoolGetMaxNCuts
1417- replaced SCIPsepastoreGetNCutsFound with SCIPsepastoreGetNCutsAdded following the naming convention for the new statistics
1418- replaced SCIPsepaIncNAppliedCuts with SCIPsepaIncNCutsApplied
1419
1420### New API functions
1421
1422- added SCIPsepastoreGetNCutsAdded, SCIPsepastoreGetNCutsAddedViaPool, SCIPsepastoreGetNCutsAddedDirect
1423- added SCIPsepaIncNCutsAdded, SCIPsepaDecNCutsAdded, SCIPsepaIncNCutsApplied, SCIPsepaGetNRootCalls, SCIPsepaGetNCutsAdded, SCIPsepaGetNCutsAddedViaPool, SCIPsepaGetNCutsAddedDirect, SCIPsepaGetNCutsAppliedViaPool, SCIPsepaGetNCutsAppliedDirect
1424- added SCIPcutpoolGetNRootCalls, SCIPcutpoolGetNCutsAdded, SCIPcutpoolAddMaxNCuts, SCIPcutpoolSetTime, SCIPcutpoolAddNCalls, SCIPcutpoolAddNRootCalls, SCIPcutpoolAddNCutsFound, SCIPcutpoolAddNCutsAdded,
1425- added SCIPcutselGetNCalls, SCIPcutselGetNRootCalls, SCIPcutselGetNRootCuts, SCIPcutselGetNRootForcedCuts, SCIPcutselGetNRootCutsFiltered, SCIPcutselGetNLocalCuts, SCIPcutselGetNLocalForcedCuts, SCIPcutselGetNLocalCutsFiltered,
1426
1427### Interfaces to external software
1428
1429- Added compatibility with Mosek 10.0.18.
1430
1431### New parameters
1432
1433- new parameters to turn on more statistics: misc/showdivingstats (diving heuristics), heuristics/alns/shownbstats (ALNS), estimation/showstats (tree size estimation)
1434
1435### Data structures
1436
1437- added nrootcalls and ncutsadded to SCIP_Cutpool
1438- added fromcutpool flag to SCIP_Row and fixed 33 bit allocation
1439- added ncalls, nrootcalls, nrootcutsselected, nrootcutsforced, nrootcutsfiltered, nlocalcutsselected, nlocalcutsforced, nlocalcutsfiltered to SCIP_Cutsel
1440- added ncutsadded, ncutsaddedviapool, ncutsaddeddirect, ncutsappliedviapool, ncutsapplieddirect, nrootcalls to SCIP_Sepa
1441- added ncutsadded, ncutsaddedviapool, ncutsaddeddirect to SCIP_Sepastore
1442- fixed statistics of relaxators w.r.t. number of times conss/cuts were added
1443
1444Build system
1445------------
1446
1447### Cmake
1448
1449- new option `-DAUTOBUILD` that configures scip with dependencies on availability.
1450 Packages like Ipopt, PaPILO, Readline, Zimpl, ZLIB, GMP, Worhp are automatically found and linked, otherwise ignored.
1451 The individual flags for these packages are ignored. This makes a quick build easier. It is by default set to off.
1452
1453Fixed bugs
1454----------
1455
1456- read objective offset from ZIMPL files
1457- Make sure that objective limit is disabled if not all variables are in the LP. If we would run into
1458 an objective limit in this case, the results of the LP solver are unclear.
1459- fixed bug in reopt.c, which occured for bounds outside of current valid bounds
1460- fixed problem with recomputing symmetries after a restart
1461- fixed bug in SCIPcalcMIR() with wrong order of arguments for removeZerosQuad()
1462- fixed segmentation fault in update of cut statistic
1463- fixed bug in presolving of and constraints by merging variables with multiple occurrences before cliquePresolve()
1464- fixed bug in dual presolving of linear constraints by setting implicit integers to integers in multi-aggregation
1465- fixed update of presolve statistics on added constraints and changed coefficients in constraint handler for nonlinear constraints
1466- fixed bug with reading CIP files with large constraints split over several lines
1467- fixed bug with infinite bounds in the computation of conflict cuts
1468- fixed check for unbounded solution constructed by SCIPlpGetUnboundedSol(): The constructed solution is very likely infeasible
1469 since scaling increases small numerical feasibility violations. Therefore, the solution is now always accepted. However, the
1470 feasibility of the ray is now checked. This fix now might lead to several rounds of separation in order to resolve unbounded solutions,
1471 whereas previously SCIP started to branch immediately.
1472- changed to absolute tolerances in all redundancy checks for linear constraints
1473
1474Miscellaneous
1475-------------
1476
1477- Added extended cutselector statistics splitting between root node specific and general statistics
1478- Added extended and refined cutpool statistics showing the number of cuts added from the cutpool to the sepastore
1479- Added extended and refined separator statistics to get a better view of the individual generators performance
1480- turned off output of statistics for the following information by default:
1481 diving heuristics, ALNS neighborhood information and tree size estimation statistics;
1482 they can be turned on using the following new parameters:
1483 misc/showdivingstats (diving heuristics), heuristics/alns/shownbstats (ALNS), estimation/showstats (tree size estimation)
1484
1485@section RN801 SCIP 8.0.1
1486*************************
1487
1488Features
1489--------
1490
1491- clique lifting in cons_setppc (parameter enablecliquelifting) is only disabled if it has been applied
1492- avoid warning if Mosek has reached/exceeded the objective limit
1493- improved curvature check for quadratic expressions when extended formulations are disabled
1494
1495Examples and applications
1496-------------------------
1497
1498- Fixed handling of enforcing in the TSP example.
1499
1500Interface changes
1501-----------------
1502
1503### Interfaces to external software
1504
1505- Added compatibility with Mosek 10.0.13.
1506
1507Build system
1508------------
1509
1510- BLISS is now built from the vendored version from https://github.com/ds4dm/Bliss
1511
1512### Cmake
1513
1514- avoid warnings about unrecognized compiler warning silencing options when compilation with GCC fails
1515- adjust mosek find module to version 9.3
1516- added cmake compatibility for ipopt versions 3.14.x
1517
1518### Makefile
1519
1520- avoid warnings about unrecognized compiler warning silencing options when compilation with GCC fails
1521- fixed that compilation with MS/Intel compilers on Windows and Cray compilers was broken when enabling PAPILO
1522
1523Fixed bugs
1524----------
1525
1526- fixed uninitialized array in detection of suborbitopes
1527- Fixed problem with reading long lines in LP/FZN/OPB/Diff-files. The buffer is now reallocated,
1528 which also should be much faster.
1529- fixed that recursive products in expressions were sometimes not flattened
1530- fixed that expressions in original variables could not be simplified
1531- fixed handling of objective limit with Mosek
1532- made SCIPlpiGetSolverName()/SCIPlpiGetSolverDesc() thread-safe for LP Solvers (Cplex,Gurobi,Glop,Mosek,SoPlex,Xpress)
1533- made SYMsymmetryGetName() thread-safe for Bliss
1534- fixed memory allocation issue in detection of SOC nlhdlr
1535- fixed that reaching the walltime limit in Ipopt was not handled properly
1536- Deactivated dual fixing of unlocked variables with zero objective in presol_milp that SCIP is unable to postsolve.
1537- set the column flag kImplInt for implicit integers in the papilo problem
1538- fixed bug in propagation of indicator constraints (one case always reported a change through propagation)
1539
1540@section RN800 SCIP 8.0.0
1541*************************
1542
1543Features
1544--------
1545
1546- Variables that were marked as relaxation-only and that were not used in any solution (SCIP_SOL)
1547 are now deleted when during a restart.
1548- New symmetry handling method, symmetry handling inequalities based on the Schreier Sims table,
1549 which is able to handle symmetries of arbitrary kinds of variables.
1550- Revise way in which external memory (e.g., of LP-solver) is estimated.
1551- The symmetry code can now heuristically search for orbitopes that do not completely handle
1552 a symmetry component and add certain Schreier Sims cuts to such components.
1553- The LPIs for Gurobi and Mosek are thread-safe now.
1554- The complete code is now thread-safe by default.
1555- New separator to generate mixing cuts (works well for stochastic programming with probabilistic constraint).
1556- New parsing routines for cons_orbisack and cons_symresack.
1557- Variables can now be marked to forbid aggregation.
1558- Heuristic PADM can now reoptimize found solution with original objective function.
1559- Added code to support debugging of catching or releasing of variables to var.c (prints backtrace
1560 when catching and releasing).
1561- SCIPintervalSin() and SCIPintervalCos() are now rounding-safe.
1562- Removed special handling of second-order cones in undercover heuristic for now.
1563- Removed use of Hessian sparsity pattern for nonquadratic nonlinear constraints in undercover heuristic.
1564- Added reader for AMPL .nl files.
1565- New separator sepa_rlt to compute cuts via the reformulation-linearization technique (RLT).
1566- New separator sepa_minor to compute cuts from 2x2 minors of a violated semidefiniteness constraint that is
1567 implied by the extended formulation for bilinear products.
1568- New separator sepa_interminor to compute intersection cuts from 2x2 (not only principle) minors of a violated
1569 rank-one constraint that is implied by the extended formulation for bilinear products.
1570- Symmetry handling has been extended to detect also symmetries between variables that also appear in nonlinear constraints.
1571- Improved OBBT propagator by only considering variables that are contained in at least one nonconvex expression that has an auxiliary variable.
1572- Default parameter settings for NLP solves are now defined independently of the NLP solver.
1573- Added table to print statistics on NLP solvers.
1574- Knapsack, linear, logicor, setppc, and varbound constraints now add themselves to the NLP relaxation, if enabled.
1575 And, linking constraints and bounddisjunctions in one variable are added to the NLP relaxation now.
1576- Ipopt interface now supports warmstarts from a full primal/dual solution pair.
1577- Extended data structure SCIP_ROWPREP and routines to assemble a linear inequality before it is turned into a SCIP row and
1578 made it available via the API.
1579- MIR procedure is now available for strengthening the Benders' optimality cut
1580- SCIPbranchcandCalcLPCands() now also returns fractional variables in unbounded solutions.
1581- New emphasis "benchmark" to avoid different solving paths that may come from checking remaining memory.
1582- New plugin type for cut selection: users can now include their own cut selection rules, default rule moved to cutsel_hybrid.
1583- New construction heuristic DPS which additionally needs a user-provided decomposition and splits the problem into several sub-SCIPs
1584 according to this decomposition. The sub-SCIPs are solved and updated repeatedly until a feasible solution of the original problem is found.
1585
1586Expressions:
1587- Removed support for expression types min and max for now. Removed support for expression type sign.
1588 Removed complex expression types sum, product, linear, quadratic, polynomial.
1589 Removed support for parameterized expressions.
1590- Added support for expression types sin, cos, and entropy. Added an expression type that stores a SCIP variable.
1591- Added handling of sin and cos expressions in OSiL reader.
1592- Added handling of sin, cos, and tan expressions in ZIMPL reader.
1593- Added expression handler plugin type, removed user expression type.
1594- Replaced expressions, expression trees, and expression graphs by a new implementation of expressions.
1595- Added differentiation methods (Gradients and Hessian directions) to expressions.
1596- Added integrality information to expressions.
1597- Added comparison and hashing of expressions.
1598- Improved simplification of expressions and identification of common subexpressions, in particular terms that appear
1599 equally in several quadratic functions are now identified.
1600- Expression simplification now expands powers also when the resulting exponents will be larger than 2.
1601- Added table to print statistics on expression handlers.
1602- Removed interval-arithmetic evaluation from expression interpreter (interfaces to automatic differentiation codes).
1603- Hessians for user-provided expression handlers are not available in the NLP solver interfaces for now.
1604- Sparse Hessians are now returned by expression interpreter. Removed dense Hessians.
1605
1606Constraint handlers for NLP:
1607- cons_nonlinear has been completely rewritten and now handles constraints of the form lhs <= expr <= rhs, where
1608 expr is an expression using the new expression type. A linear part of a nonlinear constraint is no longer distinguished.
1609- Methods that work on a particular nonlinear structure are now implemented via nonlinear handlers (nlhdlr).
1610 These handlers are plugins of cons_nonlinear and interact with cons_nonlinear by detecting structures in expressions and
1611 providing propagation and separation mechanisms.
1612- Added nlhdlr "default" as a mandatory nlhdlr: this is a nlhdlr that gets active on expressions that no other nlhdlr handles.
1613 It then uses the callbacks implemented in expression handlers to provide domain propagation and linear under/overestimates.
1614- Added nlhdlr for quadratic expressions: domain propagation that was previously part of cons_quadratic; separation via intersection cuts (currently disabled).
1615- Added nlhdlr for bilinear expressions: collects bilinear products and provides under/overestimation of a product over a 2D-projection of the LP.
1616- Added nlhdlr for convex and concave expressions: detection of convex/concave subexpressions and linear under/overestimation.
1617- Added nlhdlr for quotients: detects quotients, provides specialized linear under/overestimation and domain propagation for univariate quotients.
1618- Added nlhdlr for perspective reformulations: detects expressions in semi-continuous variables and tightens linear
1619 under/overestimates of these expressions by applying a perspective transformation.
1620- Added nlhdlr for second-order cones: detects second-order cone constraints (as ||x|| <= t or a quadratic that can written like that) and
1621 separates on a disaggregated reformulation (similar to cons_soc previously).
1622- Removed constraint handlers abspower, bivariate, quadratic, and soc.
1623- Removed simplification of duplicate abspower constraints for now.
1624 Removed simplification of abspower constraints with loose variables.
1625 Removed resolving of domain propagation (ConsResProp callback) and conflict analysis for abspower constraints.
1626 Removed propagation of varbounds for variables of abspower constraints.
1627 Removed reformulation of abs(x)^p * x into signpower expression for now.
1628- Removed reformulation of SOC constraints when adding to the NLP.
1629 Removed possibility to add linearizations a la Glineur or BenTal&Nemirovski for SOC constraints.
1630- Removed possibility to disaggregate quadratic constraints.
1631 Removed lifted tangent inequalities for bilinear terms in quadratic constraints.
1632 Removed option to project LP solution onto feasible region of a quadratic constraint via interior point or gauge function.
1633 Removed handling of unbounded LPs when enforcing quadratic constraints.
1634- Removed construction of cuts from interval gradients for nonlinear constraints.
1635 Removed possibility to pretend that all nonlinear constraints are convex.
1636 Removed possibility to create local or non-initial nonlinear constraints for now.
1637- Removed explicit reformulation of nonlinear constraints in presolve.
1638 An extended formulation is now generated implicitly and used to construct the LP relaxation,
1639 but the original formulation is used to check feasibility, propagate variable domains, etc.
1640 Variables that are added for the extended formulation are now marked as relaxation-only.
1641- Improved locking of nonlinear variables in nonlinear constraints by taking monotonicity into account.
1642- Improved mechanisms to detect and handle structures in nonlinear constraints, which allows for several algorithms
1643 to work simultaneously on equal or overlapping expressions.
1644- Improved linearization of (sums of) products of binary variables, e.g., clique information is now taken into account.
1645 Removed option to linearize products between a binary and a non-binary variable.
1646- Nonlinear constraints with the same function (but possibly different left- or right-hand-side) are now merged.
1647- 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.
1648- New branching rule for variables in nonlinear constraints (implemented in cons_nonlinear) that scores candidates
1649 based on constraint violation, variable type, and pseudo-costs simultaneously.
1650- Added tables to print statistics of nonlinear constraint handler and nonlinear handlers.
1651
1652Performance improvements
1653------------------------
1654
1655- Use the objective cutoff row as base row for separation in sepa_aggregation.c.
1656- Separate lifted cover cuts based on newer lifting function of Letchford and Souli (2019) in sepa_aggregation.c.
1657- In-tree restarts due to tree size estimation have been made compatible with orbital fixing.
1658- Improved upgrade of orbisacks to packing/partitioning orbitopes.
1659- Improved running time of symresack cover separation.
1660- Improved propagation algorithm for orbisack and symresack.
1661- Improved handling for expressions of type signpower in CppAD interface by making use of CppADs conditional expressions.
1662- Faster reevaluation of Hessian for quadratic expressions in CppAD interface.
1663- Enabled optimization of taped expressions in the CppAD interface.
1664- Sparse Hessian evaluation for expressions with sparse Hessian in the CppAD interface.
1665- Disabled branching on variables that are added for the extended formulation of a nonlinear constraint.
1666- 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.
1667- 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.
1668- Improved under/overestimation of multidimensional vertex-polyhedral (e.g., multilinear or concave) functions by use of scaling and keeping the cut-generating LP around.
1669- Products in nonlinear constraints are no longer disaggregated for the extended formulation.
1670- No longer relax bounds of integral variables when computing bounds on activity in nonlinear constraints.
1671- Revised and improved Ipopt interface.
1672- Revised and improved subNLP primal heuristic, in particular choice of iteration limit and starting condition and reuse of subSCIP.
1673- Merge strongcg into the gomory separator to avoid computing the same base equality twice. The files
1674 sepa_strongcg.{h|c} have been removed.
1675- The RENS neighborhood in ALNS now fixes fractional variables if necessary for reaching its target fixing rate.
1676- Use cpsolver emphasis in sepa_rapidlearning.
1677- If decomposition/maxgraphedge = 0, the computation of the block graph is completely turned off.
1678- Fixed a performance bug in cons_integral.c where rounding information was passed incorrectly to the generic diving algorithm.
1679
1680Examples and applications
1681-------------------------
1682
1683- Add c++ Sudoku example
1684- Removed circle.c and renamed string.c to spring.c in CallableLibrary example.
1685- SCIP-Jack (Steiner tree application):
1686 Most files have been modified and many new ones have been added (code base more than doubled).
1687 Two new problem classes are supported: maximum-weight connected subgraph problem with budget constraints, partial-terminal node-weighted Steiner tree problem.
1688 Major performance improvements accross all problem classes that are supported.
1689
1690Interface changes
1691-----------------
1692
1693### New and changed callbacks
1694
1695- extend SEPAEXEC{LP,SOL} callbacks by parameter "depth", which should be used within separation instead of SCIPgetCurrentDepth()
1696- extend SCIPseparateSolCutpool() by parameter "pretendroot", which is passed to SCIPcutpoolSeparate() instead of SCIPtreeGetCurrentDepth(scip->tree) == 0
1697- removed SCIP_DECL_EXPRGRAPHVARADDED, SCIP_DECL_EXPRGRAPHVARREMOVE, SCIP_DECL_EXPRGRAPHVARCHGIDX
1698- 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
1699- added SCIP_DECL_EXPR_OWNERFREE, SCIP_DECL_EXPR_OWNERPRINT, SCIP_DECL_EXPR_OWNEREVALACTIVITY, SCIP_DECL_EXPR_OWNERCREATE
1700- added SCIP_DECL_EXPR_INTEVALVAR, SCIP_DECL_EXPR_MAPEXPR
1701- 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
1702- removed SCIP_DECL_QUADCONSUPGD
1703- added SCIP_DECL_VERTEXPOLYFUN
1704- added argument nvarexprs to SCIP_DECL_NONLINCONSUPGD to inform upgrade method about number of variables in constraint
1705- removed SCIP_DECL_EXPRGRAPHNODEREFORM
1706- 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
1707- replaced BMS_BLKMEM* blkmem argument of SCIP_DECL_NLPICOPY by SCIP* scip, removed targetnlpi argument
1708- added SCIP* scip and SCIP_NLPIDATA** nlpidata arguments to SCIP_DECL_NLPIFREE
1709- 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
1710- replaced SCIP_DECL_NLPICHGEXPRTREE by SCIP_DECL_NLPICHGEXPR
1711- removed nquadelems, quadelems, exprvaridxs arguments from SCIP_DECL_NLPIADDCONSTRAINTS, changed exprtrees argument to exprs
1712- removed nquadelems, quadelems, exprvaridxs arguments from SCIP_DECL_NLPISETOBJECTIVE, changed exprtree argument to expr
1713- removed SCIP_DECL_NLPICHGQUADCOEFS, SCIP_DECL_NLPICHGNONLINCOEF, SCIP_DECL_NLPISETMESSAGEHDLR
1714- added SCIP_NLPIPROBLEM* problem to SCIP_DECL_NLPIGETSOLVERPOINTER
1715
1716### Deleted and changed API functions
1717
1718- When calling SCIPdelVar() in the SCIP_STAGE_PROBLEM stage, it is now documented as the user's responsibility to ensure
1719 the variable is not present in any constraints. Otherwise, SCIPsolve() now returns SCIP_INVALIDDATA.
1720- removed SCIPselectCuts(), replaced by SCIPselectCutsHybrid() of the hybrid cut selector plugin
1721- If SCIPvarMarkRelaxationOnly() is called for a variable, then this now need to happen before the
1722 variable is added to the transformed problem (SCIPaddVar()).
1723 SCIPvarMarkRelaxationOnly() will automatically call SCIPvarMarkDeletable().
1724- SCIPcomputeOrbitsFilterSym() and SCIPcomputeComponentsSym(): Type of argument componentblocked
1725 changed from SCIP_Shortbool* to unsigned*.
1726- removed SCIPsetParam()
1727- SCIPcreateConsOrbitope() and SCIPcreateConsBasicOrbitope() have two new arguments "usedynamicprop"
1728 and "mayinteract" to encode whether a dynamic reordering of the orbitope rows shall be used in
1729 full orbitope propagation and whether the orbitope might interact with other symmetry handling
1730 methods, respectively.
1731- internal function SCIPgetPropertiesPerm() has been replaced by SCIPisInvolutionPerm()
1732- internal function SCIPgenerateOrbitopeVarsMatrix() has new arguments "storelexorder", "lexorder",
1733 "nvarsorder", "maxnvarsorder" to compute and store the lexicographic order defined by an orbitope
1734- renamed SCIPcomputeArraysIntersection() and SCIPcomputeArraysSetminus() to
1735 SCIPcomputeArraysIntersectionInt() and SCIPcomputeArraysSetminusInt(), respectively, and changed
1736 their return type from SCIP_RETCODE (which _always_ was SCIP_OKAY) to void
1737- removed SCIPincludeDialogDefault(), use SCIPincludeDialogDefaultBasic() instead and check whether you also need SCIPincludeDialogDefaultSet() and SCIPincludeDialogDefaultFix()
1738- removed exprint argument from SCIPaddNlRowGradientBenderscutOpt()
1739- added copyexprhdlrs argument to SCIPcopyPlugins() (19th position)
1740- added copycutselectors argument to SCIPcopyPlugins() (10th position)
1741- removed refpoint argument from SCIPaddSquareSecant()
1742- added argument exprdata to SYMcomputeSymmetryGenerators()
1743- removed SCIPconsNonlinearGetRhs(), SCIPconsNonlinearGetLhs(), SCIPconsNonlinearAddLinearCoef()
1744- removed arguments timelimit, minimprove, itercontingent, and iterused from SCIPapplyHeurSubNlp()
1745- removed SCIPresolveSolHeurSubNlp(), SCIPgetSubScipHeurSubNlp(), SCIPgetVarMappingScip2SubScipHeurSubNlp(), SCIPgetVarMappingSubScip2ScipHeurSubNlp()
1746- SCIPlockVarCons() and SCIPunlockVarCons() are now allowed in stage TRANSFORMED as well
1747- Added functions SCIPsetSepaIsParentsepa(), SCIPsetSepaParentsepa() [in scip_sepa.h], SCIPsepaSetIsParentsepa(), SCIPsepaSetParentsepa() [in sepa.h],
1748 SCIPsepaIsParentsepa(), SCIPsepaGetParentsepa() [in pub_sepa.h]
1749- Added function SCIPpruneTree() to immediately delete nodes that were marked to be deleted with SCIPcutoffNode
1750
1751NLP:
1752- SCIPhasNLPContinuousNonlinearity() now returns SCIP_RETCODE and has additional argument result
1753- removed SCIPnlrowGetNQuadVars(), SCIPnlrowGetQuadVars(), SCIPnlrowSearchQuadVar(), SCIPnlrowGetNQuadElems(), SCIPnlrowGetQuadElems(), SCIPnlrowGetQuadData()
1754- renamed SCIPnlrowGetExprtree() to SCIPnlrowGetExpr() and changed return type to SCIP_EXPR*
1755- removed arguments nquadvars, quadvars, nquadelems, quadelems from SCIPcreateNlRow(); argument expr(ession) is now of type SCIP_EXPR*
1756- removed SCIPaddQuadVarToNlRow(), SCIPaddQuadVarsToNlRow(), SCIPaddQuadElementToNlRow(), SCIPaddQuadElementsToNlRow(), SCIPchgNlRowQuadElement(), SCIPsetNlRowExprtreeParam(), SCIPsetNlRowExprtreeParams()
1757- renamed SCIPsetNlRowExprtree() to SCIPsetNlRowExpr() and changed type of expr(tree) argument to SCIP_EXPR*
1758- SCIPenableNLP() is no longer allowed in stages INITSOLVE and SOLVING
1759- removed SCIPaddLinearConsToNlpHeurSubNlp()
1760- 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
1761- renamed SCIPsolveNLP() to SCIPsolveNLPParam() and added parameter SCIP_NLPPARAM param
1762- removed SCIPsolveDiveNLP(), use SCIPsolveNLPParam() instead
1763
1764NLPI:
1765- removed SCIPnlpiCopy(), SCIPnlpiFree(), SCIPnlpiChgQuadCoefs(), SCIPnlpiChgNonlinCoef(), SCIPnlpiSetMessageHdlr()
1766- removed SCIPnlpiCreate() from public API, use SCIPincludeNlpi() instead
1767- removed SCIPnlpiGetSolverPointer() from public API, use SCIPgetNlpiSolverPointer() instead
1768- removed SCIPnlpiCreateProblem() from public API, use SCIPcreateNlpiProblem() instead
1769- removed SCIPnlpiFreeProblem() from public API, use SCIPfreeNlpiProblem() instead
1770- removed SCIPnlpiGetProblemPointer() from public API, use SCIPgetNlpiProblemPointer() instead
1771- removed SCIPnlpiAddVars() from public API, use SCIPaddNlpiVars() instead
1772- removed SCIPnlpiAddConstraints() from public API, use SCIPaddNlpiConstraints() instead
1773- removed SCIPnlpiSetObjective() from public API, use SCIPsetNlpiObjective() instead
1774- removed SCIPnlpiChgVarBounds() from public API, use SCIPchgNlpiVarBounds() instead
1775- removed SCIPnlpiChgConsSides() from public API, use SCIPchgNlpiConsSides() instead
1776- removed SCIPnlpiDelVarSet() from public API, use SCIPdelNlpiVarSet() instead
1777- removed SCIPnlpiDelConsSet() from public API, use SCIPdelNlpiConsSet() instead
1778- removed SCIPnlpiChgLinearCoefs() from public API, use SCIPchgNlpiLinearCoefs() instead
1779- removed SCIPnlpiChgExprtree() from public API, use SCIPchgNlpiExpr() instead
1780- removed SCIPnlpiChgObjConstant() from public API, use SCIPchgNlpiObjConstant() instead
1781- removed SCIPnlpiSetInitialGuess() from public API, use SCIPsetNlpiInitialGuess() instead
1782- removed SCIPnlpiSolve() from public API, use SCIPsolveNlpiParam() instead
1783- removed SCIPnlpiGetSolstat() from public API, use SCIPgetNlpiSolstat() instead
1784- removed SCIPnlpiGetTermstat() from public API, use SCIPgetNlpiTermstat() instead
1785- removed SCIPnlpiGetSolution() from public API, use SCIPgetNlpiSolution() instead
1786- removed SCIPnlpiGetStatistics() from public API, use SCIPgetNlpiStatistics() instead
1787- removed SCIPnlpiGetWarmstartSize()
1788- removed SCIPnlpiGetWarmstartMemo()
1789- removed SCIPnlpiSetWarmstartMemo()
1790- removed SCIPnlpiGetIntPar()
1791- removed SCIPnlpiSetIntPar()
1792- removed SCIPnlpiGetRealPar()
1793- removed SCIPnlpiSetRealPar()
1794- removed SCIPnlpiGetStringPar(),
1795- removed SCIPnlpiSetStringPar()
1796- removed SCIPnlpiSetPriority() from public API, use SCIPsetNlpiPriority() instead
1797- removed argument nlpi from SCIPincludeNlpi() and added name, description, priority,
1798 nlpicopy, nlpifree, nlpigetsolverpointer, nlpicreateproblem, nlpifreeproblem, nlpigetproblempointer, nlpiaddvars, nlpiaddconstraints, nlpisetobjective, nlpichgvarbounds, nlpichgconssides, nlpidelvarset, nlpidelconsset, nlpichglinearcoefs, nlpichgexpr, nlpichgobjconstant, nlpisetinitialguess, nlpisolve, nlpigetsolstat, nlpigettermstat, nlpigetsolution, nlpigetstatistics, nlpidata
1799- removed SCIPcreateNlpSolverAll(), use SCIPincludeNlpSolverAll() instead
1800- removed SCIPcreateNlpSolverFilterSQP(), use SCIPincludeNlpSolverFilterSQP() instead
1801- removed SCIPcreateNlpSolverIpopt(), use SCIPincludeNlpSolverIpopt() instead
1802- removed SCIPcreateNlpSolverWorhp(), use SCIPincludeNlpSolverWorhp() instead
1803- replaced argument BMS_BLKMEM* blkmem of SCIPnlpiOracleCreate() by SCIP* scip
1804- 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()
1805- removed arguments nquadelems, quadelems, exprvaridxs, exprtrees from SCIPnlpiOracleAddConstraints(), added argument SCIP_EXPR** exprs
1806- removed arguments nquadelems, quadelems, exprvaridxs, exprtree from SCIPnlpiOracleSetObjective(), added argument SCIP_EXPR* expr
1807- replaced arguments isnewx of SCIPnlpiOracleEvalHessianLag() by two arguments isnewx_obj and isnewx_cons
1808- removed SCIPnlpiOracleChgExprtree(), use SCIPnlpiOracleChgExpr() instead
1809- removed SCIPnlpiOracleSetInfinity(), SCIPnlpiOracleGetInfinity(), SCIPnlpiOracleChgQuadCoefs(), SCIPnlpiOracleChgExprParam(), SCIPnlpiOracleGetMaxDegree()
1810- removed SCIPnlpiOracleGetVarDegree() and SCIPnlpiOracleGetVarDegrees(), use SCIPnlpiOracleIsVarNonlinear() and SCIPnlpiOracleGetVarCounts(), respectively, instead
1811- removed SCIPnlpiOracleGetConstraintDegree(), use SCIPnlpiOracleIsConstraintNonlinear() instead
1812- removed argument messagehdlr from SCIPnlpiOraclePrintProblem() and SCIPnlpiOraclePrintProblemGams()
1813- removed SCIPcreateNlpiProb(), use SCIPcreateNlpiProblemFromNlRows() instead
1814- renamed SCIPupdateNlpiProb() to SCIPupdateNlpiProblem() and moved into scip_nlpi.{h,c}
1815- renamed SCIPaddNlpiProbRows() to SCIPaddNlpiProblemRows() and moved into scip_nlpi.{h,c}
1816- removed SCIPsetModifiedDefaultSettingsIpopt()
1817- removed SCIPgetIpoptApplicationPointerIpopt(), use SCIPgetNlpiSolverPointer() instead
1818- removed SCIPnlpStatisticsCreate(), SCIPnlpStatisticsFree(), SCIPnlpStatisticsGetNIterations(), SCIPnlpStatisticsGetTotalTime(), SCIPnlpStatisticsSetNIterations(), SCIPnlpStatisticsSetTotalTime(), the struct is public now
1819- renamed LapackDsyev() to SCIPcallLapackDsyevIpopt()
1820- renamed SCIPsolveLinearProb() to SCIPsolveLinearEquationsIpopt()
1821
1822Expression interpreter:
1823- removed functions that operated with SCIPInterval
1824- changed first argument of SCIPexprintCreate() to SCIP*
1825- added SCIP* as first argument to SCIPexprintFree()
1826- added SCIP* as first argument to SCIPexprintCompile(), changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA**
1827- added arguments SCIP*, SCIP_EXPRINT*, and SCIP_EXPR* as first arguments to SCIPexprintFreeData()
1828- renamed SCIPexprintGetExprtreeCapability() to SCIPexprintGetExprCapability();
1829 added SCIP* as first argument, changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA*
1830- removed SCIPexprintNewParametrization()
1831- SCIPexprintEval(): added SCIP* as first argument, changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA*
1832- removed SCIPexprintEvalInt()
1833- SCIPexprintGrad(): added SCIP* as first argument, changed third argument to SCIP_EXPR*, added fourth argument SCIP_EXPRINTDATA*
1834- removed SCIPexprintGradInt()
1835- removed SCIPexprintHessianSparsityDense() and SCIPexprintHessianDense, use SCIPexprintHessianSparsity() and SCIPexprintHessian() instead
1836
1837Expressions:
1838- removed SCIPexpropGetName(), use SCIPexprhdlrGetName() instead
1839- removed SCIPexpropGetNChildren()
1840- removed SCIPexprGetOperator(), use SCIPexprGetHdlr() instead
1841- removed SCIPexprGetOpIndex(), SCIPexprGetOpReal(), SCIPexprGetOpData(), use SCIPexprGetData() instead
1842- removed SCIPexprGetRealPowerExponent(), SCIPexprGetIntPowerExponent(), SCIPexprGetSignPowerExponent(), use SCIPgetExponentExprPow() instead
1843- removed SCIPexprGetLinearCoefs(), SCIPexprGetLinearConstant(), use SCIPgetCoefsExprSum() and SCIPgetConstantExprSum() instead
1844- removed SCIPexprGetQuadElements(), SCIPexprGetQuadConstant(), SCIPexprGetQuadLinearCoefs(), SCIPexprGetNQuadElements(), use SCIPexprGetQuadraticData(), SCIPexprGetQuadraticQuadTerm(), SCIPexprGetQuadraticBilinTerm() instead
1845- removed SCIPexprGetMonomials(), SCIPexprGetNMonomials, SCIPexprGetPolynomialConstant(), SCIPexprGetMonomialCoef(), SCIPexprGetMonomialNFactors(), SCIPexprGetMonomialChildIndices(), SCIPexprGetMonomialExponents()
1846- removed SCIPexprGetUserData(), SCIPexprHasUserEstimator(), SCIPexprGetUserEvalCapability()
1847- removed SCIPexprCreate(), use SCIPcreateExpr() instead
1848- removed SCIPexprCopyDeep(), use SCIPduplicateExpr() instead
1849- removed SCIPexprFreeDeep(), use SCIPreleaseExpr() instead
1850- removed SCIPexprFreeShallow()
1851- removed SCIPexprAdd(), SCIPexprMulConstant()
1852- removed SCIPexprCreateLinear(), use SCIPcreateExprSum() instead
1853- replaced SCIPexprAddToLinear() by SCIPappendExprSumExpr()
1854- replaced SCIPexprCreateQuadratic() by SCIPcreateExprQuadratic()
1855- removed SCIPexprSortQuadElems()
1856- removed SCIPexprCreatePolynomial(), SCIPexprAddMonomials(), SCIPexprChgPolynomialConstant(), SCIPexprMultiplyPolynomialByConstant(), SCIPexprMultiplyPolynomialByMonomial(), SCIPexprMultiplyPolynomialByPolynomial(), SCIPexprPolynomialPower()
1857- removed SCIPexprMergeMonomials(), SCIPexprFreeMonomial(), SCIPexprSortMonomialFactors(), SCIPexprFindMonomialFactor(), SCIPexprAreMonomialsEqual(), SCIPexprAddMonomialFactors(), SCIPexprChgMonomialCoef(), SCIPexprMultiplyMonomialByMonomial(), SCIPexprMonomialPower(), SCIPexprMergeMonomialFactors(), SCIPexprSortMonomials()
1858- replaced SCIPexprCreateMonomial() by SCIPcreateExprMonomial()
1859- removed SCIPexprCreateUser(), use SCIPincludeExprhdlr() instead
1860- removed SCIPexprHasParam(), SCIPexprGetMaxDegree(), SCIPexprGetVarsUsage()
1861- replaced SCIPexprAreEqual() by SCIPcompareExpr()
1862- replaced SCIPexprSimplify() by SCIPsimplifyExpr()
1863- replaced SCIPexprEvalShallow() by SCIPcallExprEval()
1864- replaced SCIPexprEval() by SCIPevalExpr()
1865- replaced SCIPexprEvalIntShallow() by SCIPcallExprInteval()
1866- replaced SCIPexprEvalInt() by SCIPevalExprActivity()
1867- removed SCIPexprEvalUser(), SCIPexprEvalIntUser(), SCIPexprEstimateUser()
1868- replaced SCIPexprCheckCurvature() by SCIPcomputeExprCurvature()
1869- removed SCIPexprSubstituteVars(), use SCIPcopyExpr() instead
1870- removed SCIPexprReindexVars(), SCIPexprReindexParams()
1871- replaced SCIPexprPrint() by SCIPprintExpr()
1872- replaced SCIPexprParse() by SCIPparseExpr()
1873
1874Expression tree:
1875- removed SCIPexprtreeGetVars(), SCIPexprtreeSetVars(), SCIPexprtreeAddVars(), SCIPexprtreePrintWithNames(), SCIPexprtreeFindVar()
1876- removed SCIPexprtreeGetRoot(), SCIPexprtreeGetNVars(), SCIPexprtreeGetNParams(), SCIPexprtreeGetParamVals(), SCIPexprtreeSetParamVal(), SCIPexprtreeHasParam()
1877- removed SCIPexprtreeGetInterpreterData(), SCIPexprtreeSetInterpreterData(), SCIPexprtreeFreeInterpreterData()
1878- removed SCIPexprtreeGetMaxDegree()
1879- removed SCIPexprtreeEval(), use SCIPevalExpr() instead
1880- removed SCIPexprtreeEvalInt(), use SCIPevalExprActivity() instead
1881- removed SCIPexprtreePrint(), use SCIPprintExpr() instead
1882- removed SCIPexprtreeCreate()
1883- removed SCIPexprtreeCopy(), use SCIPduplicateExpr() instead
1884- removed SCIPexprtreeFree(), use SCIPreleaseExpr() instead
1885- removed SCIPexprtreeSetParams(), SCIPexprtreeGetVarsUsage()
1886- removed SCIPexprtreeSimplify(), use SCIPsimplifyExpr() instead
1887- removed SCIPexprtreeAddExpr()
1888- removed SCIPexprtreeCheckCurvature(), use SCIPcomputeExprCurvature() instead
1889- removed SCIPexprtreeSubstituteVars(), use SCIPcopyExpr() instead
1890- removed SCIPquadelemSort(), SCIPquadelemSortedFind(), SCIPquadelemSqueeze()
1891
1892Expression graph:
1893- removed SCIPexprgraphCaptureNode(), use SCIPcaptureExpr() instead
1894- removed SCIPexprgraphIsNodeEnabled()
1895- removed SCIPexprgraphGetNodeNChildren(), use SCIPexprGetNChildren() instead
1896- removed SCIPexprgraphGetNodeChildren(), use SCIPexprGetChildren() instead
1897- removed SCIPexprgraphGetNodeNParents(), SCIPexprgraphGetNodeParents(), SCIPexprgraphGetNodeDepth(), SCIPexprgraphGetNodePosition()
1898- removed SCIPexprgraphGetNodeOperator(), use SCIPexprGetHdlr() instead
1899- removed SCIPexprgraphGetNodeOperatorIndex(), SCIPexprgraphGetNodeOperatorReal(), use SCIPexprGetData() instead
1900- removed SCIPexprgraphGetNodeVar(), use SCIPgetVarExprVar() instead
1901- removed SCIPexprgraphGetNodeRealPowerExponent(), SCIPexprgraphGetNodeIntPowerExponent(), SCIPexprgraphGetNodeSignPowerExponent(), use SCIPgetExponentExprPow() instead
1902- removed SCIPexprgraphGetNodeLinearCoefs(), SCIPexprgraphGetNodeLinearConstant(), use SCIPgetCoefsExprSum(), SCIPgetConstantExprSum() instead
1903- removed SCIPexprgraphGetNodeQuadraticConstant(), SCIPexprgraphGetNodeQuadraticLinearCoefs(), SCIPexprgraphGetNodeQuadraticQuadElements(), SCIPexprgraphGetNodeQuadraticNQuadElements(), use SCIPexprGetQuadraticData(), SCIPexprGetQuadraticQuadTerm(), SCIPexprGetQuadraticBilinTerm() instead
1904- removed SCIPexprgraphGetNodePolynomialMonomials(), SCIPexprgraphGetNodePolynomialNMonomials(), SCIPexprgraphGetNodePolynomialConstant(), SCIPexprgraphGetNodePolynomialMonomialCurvature()
1905- removed SCIPexprgraphGetNodeUserData(), SCIPexprgraphHasNodeUserEstimator()
1906- removed SCIPexprgraphGetNodeBounds(), use SCIPexprGetActivity() instead
1907- removed SCIPexprgraphGetNodeVal(), use SCIPexprGetEvalValue() instead
1908- removed SCIPexprgraphGetNodeCurvature(), use SCIPexprGetCurvature() instead
1909- removed SCIPexprgraphCreateNode()
1910- removed SCIPexprgraphCreateNodeLinear(), use SCIPcreateExprSum() instead
1911- removed SCIPexprgraphCreateNodeQuadratic(), use SCIPcreateExprQuadratic() instead
1912- removed SCIPexprgraphCreateNodePolynomial(), SCIPexprgraphNodePolynomialAddMonomials()
1913- removed SCIPexprgraphCreateNodeUser(), removed SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphMoveNodeParents()
1914- removed SCIPexprgraphReleaseNode(), use SCIPreleaseExpr() instead
1915- removed SCIPexprgraphFreeNode(), use SCIPreleaseExpr() instead
1916- removed SCIPexprgraphEnableNode(), SCIPexprgraphDisableNode()
1917- removed SCIPexprgraphHasNodeSibling(), SCIPexprgraphAreAllNodeChildrenVars(), SCIPexprgraphHasNodeNonlinearAncestor()
1918- removed SCIPexprgraphPrintNode(), SCIPprintExpr() instead
1919- removed SCIPexprgraphTightenNodeBounds()
1920- removed SCIPexprgraphUpdateNodeBoundsCurvature(), use SCIPevalExprActivity() and SCIPcomputeExprCurvature() instead
1921- removed SCIPexprgraphGetDepth(), SCIPexprgraphGetNNodes(), SCIPexprgraphGetNodes(), SCIPexprgraphGetNVars(), SCIPexprgraphGetVars()
1922- removed SCIPexprgraphGetVarNodes(), SCIPexprgraphSetVarNodeValue(), SCIPexprgraphSetVarsBounds(), SCIPexprgraphSetVarBounds(), SCIPexprgraphSetVarNodeBounds(), SCIPexprgraphSetVarNodeLb(), SCIPexprgraphSetVarNodeUb(), SCIPexprgraphGetVarsBounds()
1923- removed SCIPexprgraphCreate(), SCIPexprgraphFree()
1924- removed SCIPexprgraphAddNode(), SCIPexprgraphAddVars(), SCIPexprgraphAddConst(), SCIPexprgraphAddExprtreeSum()
1925- removed SCIPexprgraphReplaceVarByLinearSum(), SCIPexprgraphFindVarNode(), SCIPexprgraphFindConstNode()
1926- replaced SCIPexprgraphPrintDot() by SCIPprintExprDotInit[2](), SCIPprintExprDot(), SCIPprintExprDotFinal()
1927- removed SCIPexprgraphEval(), use SCIPevalExpr() instead
1928- removed SCIPexprgraphPropagateVarBounds(), SCIPexprgraphPropagateNodeBounds()
1929- removed SCIPexprgraphCheckCurvature(), use SCIPcomputeExprCurvature() instead
1930- removed SCIPexprgraphSimplify(), use SCIPsimplifyExpr() instead
1931- removed SCIPexprgraphGetTree(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphGetSubtreeVarsUsage(), SCIPexprgraphGetSumTreesNSummands(), SCIPexprgraphGetSumTrees()
1932
1933Constraint handlers for NLP:
1934- removed SCIPincludeConshdlrAbspower()
1935- deprecated SCIPcreateConsAbspower() and SCIPcreateConsBasicAbspower(), use SCIPcreateConsBasicSignpowerNonlinear() instead
1936- deprecated SCIPgetNlRowAbspower(), use SCIPgetNlRowNonlinear() instead
1937- removed SCIPgetNonlinearVarAbspower(), SCIPgetLinearVarAbspower(), SCIPgetExponentAbspower(), SCIPgetOffsetAbspower(), SCIPgetCoefLinearAbspower(), SCIPgetLhsAbspower(), SCIPgetRhsAbspower()
1938- removed SCIPgetViolationAbspower(), use SCIPgetAbsViolationNonlinear() instead
1939- removed SCIPisConvexAbspower(), use SCIPhasExprCurvature() instead
1940- removed SCIPincludeConshdlrBivariate(), SCIPcreateConsBivariate(), SCIPcreateConsBasicBivariate()
1941- removed SCIPgetLinearVarBivariate(), SCIPgetLinearCoefBivariate(), SCIPgetExprtreeBivariate(), SCIPgetLhsBivariate(), SCIPgetRhsBivariate()
1942- removed SCIPincludeConshdlrQuadratic(), use SCIPincludeNlhdlrQuadratic() instead
1943- removed SCIPincludeQuadconsUpgrade()
1944- removed SCIPcreateConsQuadratic2(), SCIPcreateConsBasicQuadratic2()
1945- deprecated SCIPcreateConsBasicQuadratic(), use SCIPcreateConsBasicQuadraticNonlinear() instead
1946- deprecated SCIPcreateConsQuadratic(), use SCIPcreateConsQuadraticNonlinear() instead
1947- deprecated SCIPaddConstantQuadratic(), use SCIPgetLhsNonlinear() and SCIPgetRhsNonlinear() instead
1948- deprecated SCIPaddLinearVarQuadratic(), use SCIPaddLinearVarNonlinear() instead
1949- deprecated SCIPaddQuadVarQuadratic(), use SCIPaddLinearVarNonlinear() and SCIPaddExprNonlinear() instead
1950- deprecated SCIPaddQuadVarLinearCoefQuadratic(), use SCIPaddLinearVarNonlinear() instead
1951- deprecated SCIPaddSquareCoefQuadratic(), use SCIPaddExprNonlinear() instead
1952- deprecated SCIPaddBilinTermQuadratic(), use SCIPaddExprNonlinear() instead
1953- deprecated SCIPchgLhsQuadratic(), use SCIPgetLhsNonlinear() instead
1954- deprecated SCIPchgRhsQuadratic(), use SCIPgetRhsNonlinear() instead
1955- deprecated SCIPgetNlRowQuadratic(), use SCIPgetNlRowNonlinear() instead
1956- removed SCIPgetNLinearVarsQuadratic(), SCIPgetLinearVarsQuadratic(), SCIPgetCoefsLinearVarsQuadratic(), SCIPgetNQuadVarTermsQuadratic(), SCIPgetQuadVarTermsQuadratic(), SCIPsortQuadVarTermsQuadratic(), SCIPfindQuadVarTermQuadratic(), SCIPgetNBilinTermsQuadratic(), SCIPgetBilinTermsQuadratic(), SCIPgetLhsQuadratic(), SCIPgetRhsQuadratic()
1957- removed SCIPgetLinvarMayDecreaseQuadratic(), SCIPgetLinvarMayIncreaseQuadratic()
1958- removed SCIPcheckCurvatureQuadratic() and SCIPisConvexConsQuadratic(), use SCIPcomputeExprQuadraticCurvature() instead
1959- removed SCIPisConvexQuadratic(), SCIPisConcaveQuadratic()
1960- removed SCIPgetViolationQuadratic() and SCIPgetFeasibilityQuadratic(), use SCIPgetAbsViolationNonlinear() instead
1961- removed SCIPisLinearLocalQuadratic(), SCIPaddToNlpiProblemQuadratic()
1962- removed SCIPchgLinearCoefQuadratic(), SCIPchgSquareCoefQuadratic(), SCIPchgBilinCoefQuadratic()
1963- renamed SCIPgetNAllBilinearTermsQuadratic() to SCIPgetNBilinTermsNonlinear() and changed argument from SCIP* to SCIP_CONSHDLR*
1964- renamed SCIPgetAllBilinearTermsQuadratic() to SCIPgetBilinTermsNonlinear() and replaced arguments by SCIP_CONSHDLR* and changed return type to SCIP_CONSNONLINEAR_BILINTERM*
1965- removed SCIPaddBilinearIneqQuadratic(), use SCIPinsertBilinearTermImplicitNonlinear() instead
1966- renamed SCIPcreateConsQuadratic() to SCIPcreateConsQuadraticNonlinear() and removed argument stickingatnode
1967- removed SCIPincludeConshdlrSOC()
1968- replaced SCIPcreateConsBasicSOC() by SCIPcreateConsBasicSOCNonlinear()
1969- deprecated SCIPcreateConsSOC(), use SCIPcreateConsBasicSOCNonlinear() instead
1970- deprecated SCIPgetNlRowSOC(), use SCIPgetNlRowNonlinear() instead
1971- removed SCIPgetNLhsVarsSOC(), SCIPgetLhsVarsSOC(), SCIPgetLhsCoefsSOC(), SCIPgetLhsOffsetsSOC(), SCIPgetLhsConstantSOC(), SCIPgetRhsVarSOC(), SCIPgetRhsCoefSOC(), SCIPgetRhsOffsetSOC(), use SCIPisSOCNonlinear() instead
1972- removed SCIPaddToNlpiProblemSOC()
1973- renamed SCIPincludeNonlinconsUpgrade() to SCIPincludeConsUpgradeNonlinear() and removed nodereform argument
1974- removed arguments nlinvars, linvars, lincoefs, nexprtrees, exprtrees, nonlincoefs, stickingatnode from SCIPcreateConsNonlinear() and added SCIP_EXPR* argument
1975- removed arguments nlinvars, linvars, lincoefs, nexprtrees, exprtrees, nonlincoefs from SCIPcreateConsBasicNonlinear() and added SCIP_EXPR* argument
1976- removed SCIPcreateConsNonlinear2(), SCIPcreateConsBasicNonlinear2()
1977- removed SCIPsetExprtreesNonlinear(), use SCIPchgExprNonlinear() instead
1978- removed SCIPaddExprtreesNonlinear()
1979- removed SCIPgetNLinearVarsNonlinear(), SCIPgetLinearVarsNonlinear(), SCIPgetLinearCoefsNonlinear()
1980- removed SCIPgetNExprtreesNonlinear(), SCIPgetExprtreesNonlinear(), SCIPgetExprtreeCoefsNonlinear(), SCIPgetExprgraphNodeNonlinear(), use SCIPgetExprNonlinear() instead
1981- removed argument scip from SCIPgetLhsNonlinear() and SCIPgetRhsNonlinear()
1982- removed SCIPcheckCurvatureNonlinear(), SCIPgetCurvatureNonlinear(), and SCIPgetExprtreeCurvaturesNonlinear(), use SCIPhasExprCurvature() instead
1983- renamed SCIPgetViolationNonlinear() to SCIPgetAbsViolationNonlinear()
1984- added arguments var and coef to SCIPgetLinvarMayDecreaseNonlinear() and SCIPgetLinvarMayIncreaseNonlinear() and changed return type to void
1985- removed SCIPgetExprgraphNonlinear()
1986- removed SCIPcomputeHyperplaneThreePoints(), use SCIPcomputeFacetVertexPolyhedralNonlinear() instead
1987
1988### New API functions
1989
1990- added SCIPallocClearMemory() and SCIPallocClearBlockMemory() to allocate a chunk of (block) memory
1991 that is initialized to zeros
1992- New internal functions for changing the default values of parameters:
1993 SCIPparamsetSetDefaultLongint(), SCIPparamsetSetDefaultReal(), SCIPparamsetSetDefaultChar(),
1994 SCIPparamsetSetDefaultString() and
1995 SCIPparamSetDefaultLongint(), SCIPparamSetDefaultReal(), SCIPparamSetDefaultChar(),
1996 SCIPparamSetDefaultString()
1997- new internal function SCIPisPackingPartitioningOrbitope() to check whether an orbitope is of
1998 packing or partitioning type
1999- new internal function SCIPcomputeOrbitVar() to compute the symmetry orbit of a variable
2000- added SCIPcalcFibHash(SCIP_Real) to hash a floating-point value to an unsigned integer
2001- added SCIPcomputeArraysIntersectionPtr() to compute intersection of two sorted arrays of pointers
2002- new function SCIPinterruptLP() (intended to be called from a different thread) that interrupts ongoing lp solve
2003- added SCIPcreateConsIndicatorGeneric() and SCIPcreateConsIndicatorGenericLinCons()
2004 which copy the interface of SCIPcreateConsIndicator() and SCIPcreateConsIndicatorLinCons() and
2005 add an activeone argument to specify whether the indicator constraint should be activated on 0 or 1.
2006 SCIPcreateConsIndicator() also adds a lessthanineq flag to choose whether the linear constraint is a less-than or greater-than inequality.
2007- added SCIPmarkDoNotAggrVar() to mark that a variable should not be aggregated
2008- added SCIPdoNotAggrVar() to query whether a variable should not be aggregated
2009- added SCIPdecompGetNBorderVars() and SCIPdecompGetNBorderConss() to get number of border variables/constraints
2010- added SCIPdecompGetVarsSize() and SCIPdecompGetConssSize() to get variable/constraint size for each block of a decomposition
2011- added SCIPincludeDialogDefaultBasic()
2012- added SCIPintervalAreDisjointEps(), SCIPintervalIntersectEps()
2013- added SCIPintervalEntropy()
2014- added SCIPintervalPropagateWeightedSum()
2015- added SCIPcalcRootNewton()
2016- added SCIPvarGetImplicVarBounds()
2017- added SCIPcreateRowprep(), SCIPfreeRowprep(), SCIPcopyRowprep(),
2018 SCIProwprepGetNVars(), SCIProwprepGetVars(), SCIProwprepGetCoefs(), SCIProwprepGetSide(), SCIProwprepGetSidetype(), SCIProwprepIsLocal(), SCIProwprepGetName(), SCIProwprepGetNModifiedVars(), SCIProwprepGetModifiedVars(),
2019 SCIProwprepReset(), SCIProwprepAddSide(), SCIProwprepAddConstant(), SCIProwprepSetSidetype(), SCIProwprepSetLocal(), SCIProwprepRecordModifications(),
2020 SCIPprintRowprep(), SCIPprintRowprepSol(), SCIPensureRowprepSize(), SCIPaddRowprepTerm(), SCIPaddRowprepTerms(), SCIPgetRowprepViolation(), SCIPisRowprepViolationReliable(),
2021 SCIPmergeRowprepTerms(), SCIPcleanupRowprep(), SCIPcleanupRowprep2(), SCIPscaleupRowprep(), SCIPscaleRowprep(),
2022 SCIPgetRowprepRowConshdlr(), SCIPgetRowprepRowCons(), SCIPgetRowprepRowSepa()
2023- added SCIPsetClockEnabled()
2024- added SCIPisSolveInterrupted() to check whether SCIPinterruptSolve() has been called
2025- added SCIPgetNPresolRounds()
2026- added SCIPgetNUnfixedLPCols()
2027- moved SCIPhistoryGetInferenceSum() and SCIPhistoryGetAvgConflictlength() from internal to public API
2028
2029Expression handler:
2030- added SCIPincludeExprhdlr(), SCIPgetExprhdlrs(), SCIPgetNExprhdlrs(), SCIPfindExprhdlr()
2031- added SCIPgetExprhdlrVar(), SCIPgetExprhdlrValue(), SCIPgetExprhdlrSum(), SCIPgetExprhdlrProduct(), SCIPgetExprhdlrPower()
2032- added SCIPexprhdlrSetCopyFreeHdlr(), SCIPexprhdlrSetCopyFreeData(), SCIPexprhdlrSetPrint(), SCIPexprhdlrSetParse(), SCIPexprhdlrSetCurvature(), SCIPexprhdlrSetMonotonicity(), SCIPexprhdlrSetIntegrality(), SCIPexprhdlrSetHash(), SCIPexprhdlrSetCompare(), SCIPexprhdlrSetDiff(), SCIPexprhdlrSetIntEval(), SCIPexprhdlrSetSimplify(), SCIPexprhdlrSetReverseProp(), SCIPexprhdlrSetEstimate()
2033- added SCIPexprhdlrGetName(), SCIPexprhdlrGetDescription(), SCIPexprhdlrGetPrecedence(), SCIPexprhdlrGetData(), SCIPexprhdlrHasPrint(), SCIPexprhdlrHasBwdiff(), SCIPexprhdlrHasFwdiff(), SCIPexprhdlrHasIntEval(), SCIPexprhdlrHasEstimate(), SCIPexprhdlrHasInitEstimates(), SCIPexprhdlrHasSimplify(), SCIPexprhdlrHasCurvature(), SCIPexprhdlrHasMonotonicity(), SCIPexprhdlrHasReverseProp()
2034- added SCIPexprhdlrComp()
2035- added SCIPexprhdlrGetNIntevalCalls(), SCIPexprhdlrGetIntevalTime(), SCIPexprhdlrGetNReversepropCalls(), SCIPexprhdlrGetReversepropTime(), SCIPexprhdlrGetNCutoffs(), SCIPexprhdlrGetNDomainReductions(), SCIPexprhdlrIncrementNDomainReductions(), SCIPexprhdlrGetNEstimateCalls(), SCIPexprhdlrGetEstimateTime(), SCIPexprhdlrGetNBranchings(), SCIPexprhdlrIncrementNBranchings(), SCIPexprhdlrGetNSimplifyCalls(), SCIPexprhdlrGetSimplifyTime(), SCIPexprhdlrGetNSimplifications()
2036- added SCIPprintExpressionHandlerStatistics()
2037- added SCIPincludeExprhdlrEntropy(), SCIPcreateExprEntropy(), SCIPisExprEntropy()
2038- added SCIPincludeExprhdlrErf(), SCIPcreateExprErf(), SCIPisExprErf()
2039- added SCIPcreateExprAbs(), SCIPincludeExprhdlrAbs(), SCIPisExprAbs()
2040- added SCIPcreateExprExp(), SCIPincludeExprhdlrExp(), SCIPisExprExp()
2041- added SCIPcreateExprLog(), SCIPincludeExprhdlrLog(), SCIPisExprLog()
2042- added SCIPcreateExprPow(), SCIPcreateExprSignpower(), SCIPincludeExprhdlrPow(), SCIPincludeExprhdlrSignpower(), SCIPisExprSignpower(), SCIPgetExponentExprPow(), SCIPisExprPower()
2043- added SCIPincludeExprhdlrProduct(), SCIPcreateExprProduct(), SCIPgetCoefExprProduct(), SCIPisExprProduct()
2044- added SCIPincludeExprhdlrSum(), SCIPcreateExprSum(), SCIPsetConstantExprSum(), SCIPappendExprSumExpr(), SCIPmultiplyByConstantExprSum(), SCIPgetCoefsExprSum(), SCIPgetConstantExprSum(), SCIPisExprSum()
2045- added SCIPincludeExprhdlrSin(), SCIPcreateExprSin(), SCIPincludeExprhdlrCos(), SCIPcreateExprCos(), SCIPisExprSin(), SCIPisExprCos()
2046- added SCIPincludeExprhdlrValue(), SCIPcreateExprValue(), SCIPgetValueExprValue(), SCIPisExprValue()
2047- added SCIPincludeExprhdlrVar(), SCIPcreateExprVar(), SCIPgetVarExprVar(), SCIPisExprVar()
2048- added SCIPincludeExprhdlrVaridx(), SCIPcreateExprVaridx(), SCIPisExprVaridx(), SCIPgetIndexExprVaridx(), SCIPsetIndexExprVaridx()
2049
2050Expression:
2051- added SCIPcaptureExpr(), SCIPreleaseExpr(), SCIPexprGetNUses()
2052- added SCIPexprGetHdlr(), SCIPexprGetData(), SCIPexprSetData(), SCIPexprGetOwnerData()
2053- added SCIPevalExpr(), SCIPgetExprNewSoltag(), SCIPexprGetEvalValue(), SCIPexprGetEvalTag()
2054- added SCIPevalExprGradient(), SCIPevalExprHessianDir(), SCIPexprGetDerivative(), SCIPexprGetDot(), SCIPexprGetBardot(), SCIPexprGetDiffTag()
2055- added SCIPevalExprActivity(), SCIPexprGetActivity(), SCIPexprGetActivityTag(), SCIPexprSetActivity()
2056- added SCIPcomputeExprCurvature(), SCIPexprGetCurvature(), SCIPexprSetCurvature()
2057- added SCIPcomputeExprIntegrality(), SCIPexprIsIntegral(), SCIPexprSetIntegrality()
2058- added SCIPcheckExprQuadratic(), SCIPfreeExprQuadratic(), SCIPevalExprQuadratic(), SCIPprintExprQuadratic(), SCIPcomputeExprQuadraticCurvature()
2059- added SCIPexprGetQuadraticData(), SCIPexprGetQuadraticQuadTerm(), SCIPexprGetQuadraticBilinTerm(), SCIPexprAreQuadraticExprsVariables()
2060- added SCIPcreateExpr(), SCIPcreateExpr2(), SCIPcreateExprQuadratic(), SCIPcreateExprMonomial()
2061- added SCIPappendExprChild(), SCIPreplaceExprChild(), SCIPremoveExprChildren()
2062- added SCIPduplicateExpr(), SCIPduplicateExprShallow(), SCIPcopyExpr()
2063- added SCIPparseExpr()
2064- added SCIPprintExpr(), SCIPdismantleExpr()
2065- added SCIPprintExprDotInit(), SCIPprintExprDotInit2(), SCIPprintExprDot(), SCIPprintExprDotFinal(), SCIPshowExpr()
2066- added SCIPcompareExpr(), SCIPhashExpr()
2067- added SCIPsimplifyExpr(), SCIPreplaceCommonSubexpressions()
2068- added SCIPgetExprNVars(), SCIPgetExprVarExprs()
2069- added SCIPcallExprPrint(), SCIPcallExprCurvature(), SCIPcallExprMonotonicity(), SCIPcallExprEval(), SCIPcallExprEvalFwdiff(), SCIPcallExprInteval(), SCIPcallExprEstimate(), SCIPcallExprInitestimates(), SCIPcallExprSimplify(), SCIPcallExprReverseprop()
2070- added SCIPexprcurvPowerInv(), SCIPexprcurvMonomialInv()
2071
2072Expression iterator:
2073- added SCIPcreateExpriter(), SCIPfreeExpriter()
2074- added SCIPexpriterIsInit(), SCIPexpriterInit()
2075- added SCIPexpriterRestartDFS(), SCIPexpriterSetStagesDFS(), SCIPexpriterGetCurrent(), SCIPexpriterGetStageDFS(), SCIPexpriterGetChildIdxDFS(), SCIPexpriterGetChildExprDFS(), SCIPexpriterGetParentDFS()
2076- added SCIPexpriterGetCurrentUserData(), SCIPexpriterGetChildUserDataDFS(), SCIPexpriterGetExprUserData(), SCIPexpriterSetCurrentUserData(), SCIPexpriterSetExprUserData(), SCIPexpriterSetChildUserData()
2077- added SCIPexpriterGetNext(), SCIPexpriterSkipDFS(), SCIPexpriterIsEnd()
2078- added SCIPexprintHessianSparsity(), SCIPexprintHessian()
2079
2080Constraint handlers for NLP:
2081- added SCIPgetCurBoundsTagNonlinear(), SCIPgetLastBoundRelaxTagNonlinear(), SCIPincrementCurBoundsTagNonlinear()
2082- added SCIPgetVarExprHashmapNonlinear()
2083- added SCIPprocessRowprepNonlinear()
2084- added SCIPassumeConvexNonlinear()
2085- added SCIPcollectBilinTermsNonlinear(), SCIPgetBilinTermIdxNonlinear(), SCIPgetBilinTermNonlinear(), SCIPevalBilinAuxExprNonlinear(), SCIPinsertBilinearTermExistingNonlinear(), SCIPinsertBilinearTermImplicitNonlinear()
2086- added SCIPcomputeFacetVertexPolyhedralNonlinear()
2087- added SCIPgetExprNonlinear()
2088- added SCIPcheckQuadraticNonlinear(), SCIPchgLhsNonlinear(), SCIPchgRhsNonlinear(), SCIPchgExprNonlinear(), SCIPaddExprNonlinear()
2089- added SCIPgetRelViolationNonlinear()
2090- added SCIPgetExprNLocksPosNonlinear(), SCIPgetExprNLocksNegNonlinear(), SCIPgetExprAuxVarNonlinear(), SCIPgetExprNEnfosNonlinear(), SCIPgetExprEnfoDataNonlinear(), SCIPsetExprEnfoAuxValueNonlinear()
2091- added SCIPgetExprNPropUsesActivityNonlinear(), SCIPgetExprNSepaUsesActivityNonlinear(), SCIPgetExprNAuxvarUsesNonlinear(), SCIPregisterExprUsageNonlinear()
2092- added SCIPgetExprAbsOrigViolationNonlinear(), SCIPgetExprAbsAuxViolationNonlinear(), SCIPgetExprRelAuxViolationNonlinear()
2093- added SCIPgetExprBoundsNonlinear(), SCIPtightenExprIntervalNonlinear(), SCIPmarkExprPropagateNonlinear()
2094- added SCIPaddExprViolScoreNonlinear(), SCIPaddExprsViolScoreNonlinear(), SCIPgetExprViolScoreNonlinear()
2095- added SCIPgetExprPartialDiffNonlinear(), SCIPgetExprPartialDiffGradientDirNonlinear()
2096- added SCIPevalExprQuadraticAuxNonlinear()
2097- added SCIPincludeNlhdlrNonlinear(), SCIPfindNlhdlrNonlinear(), SCIPgetNNlhdlrsNonlinear(), SCIPgetNlhdlrsNonlinear(), SCIPgetNlhdlrExprDataNonlinear()
2098- added SCIPcreateConsQuadraticNonlinear() and SCIPcreateConsBasicQuadraticNonlinear() to create a nonlinear constraint that is quadratic
2099- added SCIPcreateConsBasicSignpowerNonlinear() to create a nonlinear constraint that looks like the former abspower or signpower constraints
2100
2101Nonlinear Handler:
2102- added SCIPincludeNlhdlrBilinear(), SCIPgetExprsBilinear(), SCIPgetNExprsBilinear(), SCIPaddIneqBilinear()
2103- added SCIPincludeNlhdlrConvex(), SCIPincludeNlhdlrConcave(), SCIPhasExprCurvature()
2104- added SCIPincludeNlhdlrDefault()
2105- added SCIPincludeNlhdlrPerspective()
2106- added SCIPincludeNlhdlrQuadratic()
2107- added SCIPincludeNlhdlrQuotient()
2108- added SCIPincludeNlhdlrSoc(), SCIPisSOCNonlinear(), SCIPfreeSOCArraysNonlinear()
2109- added SCIPnlhdlrSetCopyHdlr(), SCIPnlhdlrSetFreeHdlrData(), SCIPnlhdlrSetFreeExprData(), SCIPnlhdlrSetInitExit(), SCIPnlhdlrSetProp(), SCIPnlhdlrSetSepa()
2110- added SCIPnlhdlrGetName(), SCIPnlhdlrGetDesc(), SCIPnlhdlrGetDetectPriority(), SCIPnlhdlrGetEnfoPriority(), SCIPnlhdlrIsEnabled(), SCIPnlhdlrGetData()
2111- added SCIPnlhdlrHasIntEval(), SCIPnlhdlrHasReverseProp(), SCIPnlhdlrHasInitSepa(), SCIPnlhdlrHasExitSepa(), SCIPnlhdlrHasEnfo(), SCIPnlhdlrHasEstimate()
2112- added SCIPnlhdlrComp()
2113
2114NLPI:
2115- added SCIPgetNlpiSolverPointer(), SCIPcreateNlpiProblem(), SCIPfreeNlpiProblem(), SCIPgetNlpiProblemPointer(), SCIPaddNlpiVars(), SCIPaddNlpiConstraints(), SCIPsetNlpiObjective(), SCIPchgNlpiVarBounds(), SCIPchgNlpiConsSides(), SCIPdelNlpiVarSet(), SCIPdelNlpiConsSet(), SCIPchgNlpiLinearCoefs(), SCIPchgNlpiExpr(), SCIPchgNlpiObjConstant(), SCIPsetNlpiInitialGuess(), SCIPsolveNlpiParam(), SCIPgetNlpiSolstat(), SCIPgetNlpiTermstat(), SCIPgetNlpiSolution(), SCIPgetNlpiStatistics()
2116- added SCIPincludeNlpSolverAll()
2117- added SCIPincludeNlpSolverFilterSQP(), SCIPgetSolverNameFilterSQP(), SCIPgetSolverDescFilterSQP(), SCIPisFilterSQPAvailableFilterSQP()
2118- added SCIPincludeNlpSolverIpopt()
2119- added SCIPincludeNlpSolverWorhp()
2120- added SCIPnlpiOracleChgExpr()
2121- added SCIPcreateNlpiProblemFromNlRows()
2122- added SCIPnlpiOracleGetObjectiveConstant()
2123- added SCIPnlpiOracleIsVarNonlinear(), SCIPnlpiOracleGetVarCounts(), SCIPnlpiOracleIsConstraintNonlinear()
2124- added SCIPnlpiGetNProblems(), SCIPnlpiGetProblemTime(), SCIPnlpiGetNSolves(), SCIPnlpiGetSolveTime(), SCIPnlpiGetEvalTime(), SCIPnlpiGetNIterations(), SCIPnlpiGetNTermStat(), SCIPnlpiGetNSolStat(), SCIPnlpiMergeStatistics()
2125- added SCIPmergeNLPIStatistics(), SCIPprintNLPIStatistics()
2126- added SCIPnlpiOracleResetEvalTime(), SCIPnlpiOracleGetEvalTime()
2127- added SCIPaddNlpiProblemNlRows()
2128
2129Cut Selector:
2130- added SCIPincludeCutsel(), SCIPincludeCutselBasic(), SCIPsetCutselCopy(), SCIPsetCutselFree(), SCIPsetCutselInit(), SCIPsetCutselExit(), SCIPsetCutselInitsol(), SCIPsetCutselExitsol(), SCIPfindCutsel(), SCIPgetCutsels(), SCIPgetNCutsels(), SCIPsetCutselPriority()
2131- added SCIPcutselGetName(), SCIPcutselGetData(), SCIPcutselGetDesc(), SCIPcutselGetPriority(), SCIPcutselSetData(), SCIPcutselIsInitialized(), SCIPcutselGetSetupTime(), SCIPcutselGetTime()
2132
2133### Command line interface
2134### Interfaces to external software
2135
2136- removed GAMS interface (originally in interfaces/gams) and reading capability of gms reader;
2137 the removed interface was a poorly maintained copy of the GAMS/SCIP interface that is available at
2138 https://github.com/coin-or/GAMSlinks
2139- integrated AMPL interface into main SCIP executable, that is, added possibility to use SCIP executable as solver in AMPL
2140 (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)
2141- the ZIMPL interface has been updated to support ZIMPL 3.4.1;
2142 the minimal required ZIMPL version is now 3.4.1
2143
2144### Changed parameters
2145
2146- Extended range of parameter "misc/usesymmetry" from [0,3] to [0,7], changed default from 3 to 5
2147- deleted parameter "constraints/orbitope/usedynamicprop"
2148- changed type of parameter "propagating/symmetry/recomputerestart" from SCIP_Bool to int with range [0,2]
2149- deleted parameter "propagating/symmetry/disableofrestart"
2150- parameter "heuristics/padm/original" is now an advanced parameter
2151- removed constraints/nonlinear/linfeasshift, constraints/nonlinear/reformulate, constraints/nonlinear/maxexpansionexponent, constraints/nonlinear/sepanlpmincont
2152- removed constraints/nonlinear/upgrade/abspower
2153- removed constraints/nonlinear/upgrade/and, use constraints/nonlinear/reformbinprodsand instead
2154- removed constraints/nonlinear/upgrade/bivariate
2155- removed constraints/nonlinear/upgrade/quadratic, use nlhdlr/quadratic/enabled instead
2156- changed default of constraints/nonlinear/maxproprounds from 1 to 10
2157- replaced constraints/nonlinear/enfocutsremovable by constraints/nonlinear/rownotremovable
2158- replaced constraints/nonlinear/cutmaxrange by separating/maxcoefratiofacrowprep
2159- 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
2160- removed constraints/quadratic/replacebinaryprod, use constraints/nonlinear/reformbinprodsfac instead
2161- removed constraints/quadratic/empathy4and, use constraints/nonlinear/reformbinprodsand instead
2162- removed constraints/quadratic/binreforminitial, constraints/quadratic/binreformbinaryonly, constraints/quadratic/binreformmaxcoef
2163- removed constraints/quadratic/cutmaxrange, constraints/quadratic/mincurvcollectbilinterms, constraints/quadratic/linearizeheursol, constraints/quadratic/checkcurvature, constraints/quadratic/checkfactorable, constraints/quadratic/checkquadvarlocks, constraints/quadratic/linfeasshift
2164- removed constraints/quadratic/maxdisaggrsize, constraints/quadratic/disaggrmergemethod, constraints/quadratic/maxproprounds, constraints/quadratic/maxproproundspresolve, constraints/quadratic/enfolplimit, constraints/quadratic/sepanlpmincont, constraints/quadratic/enfocutsremovable
2165- removed constraints/quadratic/gaugecuts, constraints/quadratic/interiorcomputation, constraints/quadratic/projectedcuts, constraints/quadratic/branchscoring, constraints/quadratic/usebilinineqbranch, constraints/quadratic/bilinineqmaxseparounds,
2166- removed constraints/quadratic/minscorebilinterms, use nlhdlr/bilinear/enabled instead
2167- removed constraints/quadratic/upgrade/linear, constraints/quadratic/upgrade/abspower, constraints/quadratic/upgrade/bivariate, constraints/quadratic/upgrade/bounddisjunction
2168- removed constraints/quadratic/upgrade/soc, use nlhdlr/soc/enabled instead
2169- renamed constraints/quadratic/upgrade/setppc to constraints/nonlinear/upgrade/setppc
2170- 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
2171- 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
2172- 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
2173- removed constraints/bivariate/cutmaxrange, constraints/bivariate/linfeasshift, constraints/bivariate/maxproprounds, constraints/bivariate/ninitlprefpoints, constraints/bivariate/enfocutsremovable
2174- 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
2175- 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
2176- removed constraints/soc/generalsocupgrade, use nlhdlr/soc/compeigenvalues instead
2177- changed default of presolving/qpkktref/maxrounds from -1 to 0
2178- changed default of propagating/obbt/onlynonconvexvars from FALSE to TRUE
2179- changed default of heuristics/subnlp/resolvetolfactor from 0.001 to 1.0
2180- removed heuristics/subnlp/nlpoptfile, use nlpi/ipopt/optfile instead
2181- removed separating/convexproj/nlptimelimit
2182- removed separating/gauge/nlptimelimit
2183- removed heuristics/subnlp/nlptimelimit and heuristics/subnlp/nlpiterlimit
2184- removed heuristics/subnlp/resolvetolfactor and heuristics/subnlp/resolvefromscratch
2185- changed default of heuristics/subnlp/itermin to 20
2186- renamed heuristics/subnlp/iteroffset to heuristics/subnlp/nodesoffset
2187- renamed heuristics/subnlp/iterquotient to heuristics/subnlp/nodesfactor
2188- removed heuristics/subnlp/runalways, use heuristics/subnlp/nodesoffset=INT_MAX and heuristics/subnlp/successrateexp = 0.0 instead
2189- removed heuristics/subnlp/minimprove, heuristics/multistart/nlpminimpr
2190- Removed parameters for strongcg separator: separating/strongcg/..., i.e.,
2191 maxrounds, maxroundsroot, maxsepacutsroot, maxsepacuts, dynamiccuts. One can control the
2192 strongcg behavior throught the parameters of sepa_gomory.
2193- renamed separating/{minortho,minorthoroot,objparalfac,intsupportfac} to cutselection/hybrid/{minortho,minorthoroot,objparalweight,intsupportweight}
2194
2195### New parameters
2196
2197- It is now possible to add orbitope constraints to handle symmetries even if not all variables
2198 in a component of the symmetry group are binary. This feature can be enabled using the
2199 parameter "propagating/symmetry/onlybinorbitope".
2200
2201- new parameter "propagating/symmetry/sstleaderrule" to select a rule for selecting the
2202 leader in SST cuts
2203- new parameter "propagating/symmetry/ssttiebreakrule" to select a tiebreak rule for selecting the
2204 leader in SST cuts
2205- new parameter "propagating/symmetry/sstleadervartype" to select the possible variable types
2206 for a leader in SST cuts
2207- new parameter "propagating/symmetry/addconflictcuts" to control whether SST cuts are added if
2208 a binary leader variable is in conflict with a variable in its orbit
2209- new parameter "propagating/symmetry/sstaddcuts" to control whether SST cuts are added
2210- new parameter "propagating/symmetry/sstmixedcomponents" to control whether SST cuts are added
2211 if a symmetry component contains variables of different types
2212- new parameter "propagating/symmetry/detectsubgroups" to search for orbitopes defined by subgroups
2213- new parameter "propagating/symmetry/addweaksbcs" to add Schreier Sims cuts for a single
2214 variable orbit in case an orbitope subgroup is detected
2215- new parameter "propagating/symmetry/addstrongsbcs" to add symretope facets for a single
2216 variable orbit on which the symmetry group acts like a symmetric group
2217- new parameter "propagating/symmetry/maxnconsssubgroup" to control up to which number of
2218 constraints subgroups are detected
2219- new parameter "propagating/symmetry/preferlessrows" to control whether orbitopes with
2220 smallest number of rows shall be computed by the subgroup detection heuristic
2221- new parameter "propagating/symmetry/usedynamicprop" to control if rows of full orbitope
2222 shall be ordered dynamically in propagation
2223- new parameter "separating/filtercutpoolrel" to control whether cutpool uses
2224 a dynamic strategy to separate only cuts with high relative efficacy
2225- if run from AMPL: display/statistics to enable printing detailed solve statistics after solve
2226- if run from AMPL: display/logfile to specify name of file to write SCIP log to (additionally to writing to stdout)
2227- constraints/nonlinear/propauxvars, constraints/nonlinear/varboundrelax, constraints/nonlinear/varboundrelaxamount, constraints/nonlinear/conssiderelaxamount
2228- constraints/nonlinear/vpmaxperturb, constraints/nonlinear/vpadjfacetthresh, constraints/nonlinear/vpdualsimplex
2229- constraints/nonlinear/bilinmaxnauxexprs, constraints/nonlinear/forbidmultaggrnlvar, constraints/nonlinear/checkvarlocks, constraints/nonlinear/violscale
2230- constraints/nonlinear/reformbinprods, constraints/nonlinear/reformbinprodsand, constraints/nonlinear/reformbinprodsfac
2231- constraints/nonlinear/tightenlpfeastol, constraints/nonlinear/propinenforce, constraints/nonlinear/weakcutthreshold, constraints/nonlinear/strongcutmaxcoef, constraints/nonlinear/strongcutefficacy, constraints/nonlinear/forcestrongcut, constraints/nonlinear/enfoauxviolfactor, constraints/nonlinear/weakcutminviolfactor
2232- 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
2233- constraints/nonlinear/linearizeheursol
2234- nlhdlr/default/enabled
2235- nlhdlr/convex/enabled, nlhdlr/convex/detectsum, nlhdlr/convex/extendedform, nlhdlr/convex/cvxquadratic, nlhdlr/convex/cvxsignomial, nlhdlr/convex/cvxprodcomp, nlhdlr/convex/handletrivial
2236- nlhdlr/concave/enabled, nlhdlr/concave/detectsum, nlhdlr/concave/cvxquadratic, nlhdlr/concave/cvxsignomial, nlhdlr/concave/cvxprodcomp, nlhdlr/concave/handletrivial
2237- nlhdlr/bilinear/enabled, nlhdlr/bilinear/useinteval, nlhdlr/bilinear/usereverseprop, nlhdlr/bilinear/maxseparoundsroot, nlhdlr/bilinear/maxseparounds, nlhdlr/bilinear/maxsepadepth
2238- 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
2239- 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
2240- nlhdlr/quotient/enabled
2241- nlhdlr/soc/enabled, nlhdlr/soc/mincutefficacy, nlhdlr/soc/compeigenvalues
2242- propagating/obbt/createlincons
2243- propagating/symmetry/onlybinarysymmetry
2244- 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
2245- 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
2246- separating/interminor/usestrengthening, separating/interminor/usebounds, separating/interminor/mincutviol, separating/interminor/maxrounds, separating/interminor/maxroundsroot
2247- table/cons_nonlinear/active, table/nlhdlr/active, table/exprhdlr/active, table/nlpi/active, table/nlhdlr_bilinear/active, table/nlhdlr_quadratic/active
2248- expr/log/minzerodistance, expr/pow/minzerodistance
2249- benders/default/maxslackvarcoef to specify maximal coefficient for slack variables; if exceeded, slack variables are fixed to zero
2250- nlpi/ipopt/optfile to specify name of Ipopt options file to use for every solve with Ipopt
2251- 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
2252- nlpi/ipopt/warm_start_push
2253- timing/nlpieval
2254- heuristics/subnlp/iterinit, heuristics/subnlp/ninitsolves, heuristics/subnlp/successrateexp
2255- heuristics/subnlp/expectinfeas, heuristics/subnlp/opttol, heuristics/subnlp/feastolfactor
2256- heuristics/subnlp/presolveemphasis, heuristics/subnlp/setcutoff
2257- new parameters "branching/inference/conflictprio" and "branching/inference/cutoffprio" that allow
2258 using the different score criteria in inference branching hierarchically
2259- new parameters "heuristics/alns/nodesquotmin", "heuristics/alns/maxcallssamesol" and "heuristics/alns/initduringroot"
2260 to control neighborhoods in ALNS
2261- new parameter "benders/default/benderscut/optimality/mir" to control whether mixed-integer rounding procedure is applied to Benders optimality cuts
2262- new parameter "misc/avoidmemout" to try to avoid running into memory limit
2263- cutselection/hybrid/dircutoffdistweight, cutselection/hybrid/efficacyweight, cutselection/hybrid/intsupportweight, cutselection/hybrid/objparalweight, cutselection/hybrid/priority
2264- new parameter "decomposition/disablemeasures" to disable expensive measures in SCIPcomputeDecompStats()
2265- new parameter "presolving/milp/probfilename" filename to write the problem to a file before MILP presolving starts
2266
2267### Data structures
2268
2269- removed quadratic terms from NLROWs
2270- removed SCIP_NLPPAR_INFINITY from SCIP_NLPPARAM enum
2271- added types SYM_OPTYPE, SYM_CONSTTYPE, SYM_RHSTYPE, SYM_EXPRDATA
2272- removed class SCIPInterval
2273- removed enum SCIP_EXPROP
2274- removed union SCIP_EXPROPDATA, added SCIP_EXPRDATA
2275- removed struct SCIP_EXPRTREE, use SCIP_EXPR instead
2276- removed structs SCIP_QUADELEM, SCIP_EXPRDATA_QUADRATIC, SCIP_EXPRDATA_MONOMIAL, SCIP_EXPRDATA_POLYNOMIAL, SCIP_EXPRDATA_USER
2277- removed structs SCIP_EXPRGRAPHNODE, SCIP_EXPRGRAPH
2278- removed type SCIP_EXPRBOUNDSTATUS
2279- removed struct SCIP_USEREXPRDATA
2280- added enum SCIP_MONOTONE
2281- added structs SCIP_EXPRHDLR, SCIP_EXPRHDLRDATA
2282- added union SCIP_EXPRITER_USERDATA
2283- added enum SCIP_EXPRITER_TYPE
2284- added structs SCIP_EXPRITERDATA, SCIP_EXPRITER
2285- added type SCIP_EXPRPRINT_WHAT, struct SCIP_EXPRPRINTDATA
2286- removed enum SCIP_BIVAR_CONVEXITY
2287- removed structs SCIP_QUADVAREVENTDATA, SCIP_QUADVARTERM, SCIP_BILINTERM
2288- added structs SCIP_CONSNONLINEAR_AUXEXPR, SCIP_CONSNONLINEAR_BILINTERM
2289- added type SCIP_NLHDLR_METHOD
2290- added structs SCIP_NLHDLR, SCIP_NLHDLRDATA, SCIP_NLHDLREXPRDATA
2291- enum SCIP_NLPPARAM has been changed to a struct that holds values of parameters for an NLP solve
2292- removed SCIP_NLPPAR_OPTFILE/optfile from SCIP_NLPPARAM
2293- added SCIP_NLPTERMSTAT_INTERRUPT to SCIP_NLPTERMSTAT enum; returned from NLP solver if SCIPinterruptSolve() has been called
2294- renamed SCIP_NLPTERMSTAT_TILIM to SCIP_NLPTERMSTAT_TIMELIMIT
2295- renamed SCIP_NLPTERMSTAT_ITLIM to SCIP_NLPTERMSTAT_ITERLIMIT
2296- renamed SCIP_NLPTERMSTAT_LOBJLIM to SCIP_NLPTERMSTAT_LOBJLIMIT
2297- renamed SCIP_NLPTERMSTAT_NUMERR to SCIP_NLPTERMSTAT_NUMERICERROR
2298- renamed SCIP_NLPTERMSTAT_EVALERR to SCIP_NLPTERMSTAT_EVALERROR
2299- renamed SCIP_NLPTERMSTAT_MEMERR to SCIP_NLPTERMSTAT_OUTOFMEMORY
2300- renamed SCIP_NLPTERMSTAT_LICERR to SCIP_NLPTERMSTAT_LICENSEERROR
2301- added evaltime to SCIP_NLPSTATISTICS
2302- added structs SCIP_CUTSEL, SCIP_CUTSELDATA
2303
2304Deleted files
2305-------------
2306
2307- interfaces/gams/∗
2308- interfaces/ampl/∗
2309- src/nlpi/∗
2310- src/scip/cons_bivariate.{c,h}
2311- src/scip/pub_misc_nonlinear.h
2312- src/scip/misc_nonlinear.c
2313- src/scip/scip_nonlinear.{c,h}
2314- src/scip/sepa_strongcg.{h|c}
2315
2316Unit tests
2317----------
2318
2319- added cons/linear/nonlinupgd.c
2320- added cons/nonlinear/addcons.c
2321- added cons/nonlinear/bilinhash.c
2322- added cons/nonlinear/check.c
2323- added cons/nonlinear/copy.c
2324- added cons/nonlinear/create_nlrow.c
2325- added cons/nonlinear/curvature.c
2326- added cons/nonlinear/glbconss.c
2327- added cons/nonlinear/hessian.c
2328- added cons/nonlinear/locks.c
2329- added cons/nonlinear/nlhdlr.c
2330- added cons/nonlinear/nlhdlr_bilinear.c
2331- added cons/nonlinear/nlhdlr_concave.c
2332- added cons/nonlinear/nlhdlr_convex.c
2333- added cons/nonlinear/nlhdlr_perspective.c
2334- added cons/nonlinear/nlhdlr_quadratic.c
2335- added cons/nonlinear/nlhdlr_quotient.c
2336- added cons/nonlinear/nlhdlr_soc.c
2337- added cons/nonlinear/parse.c
2338- added cons/nonlinear/presolve.c
2339- added cons/nonlinear/propagate.c
2340- added cons/nonlinear/readers.c
2341- added cons/nonlinear/reformbinprods.c
2342- added cons/nonlinear/repair.c
2343- added cons/nonlinear/transform.c
2344- added cons/nonlinear/vertexpolyhedral.c
2345- removed cons/nonlinear/getCoeffsAndConstantFromLinearExpr.c
2346- removed cons/soc/upgrade.c
2347- added expr/abs/estimation.c
2348- added expr/commonsubexprs.c
2349- added expr/compare.c
2350- added expr/copy.c
2351- added expr/cos/cos.c
2352- added expr/cos/estimation.c
2353- added expr/curvature.c
2354- added expr/derivative.c
2355- added expr/entropy/entropy.c
2356- added expr/entropy/estimation.c
2357- added expr/eval.c
2358- added expr/exp/estimation.c
2359- added expr/free.c
2360- added expr/getvarexprs.c
2361- added expr/hash.c
2362- added expr/hessian.c
2363- added expr/integrality.c
2364- added expr/iterator.c
2365- added expr/log/estimation.c
2366- added expr/monotonicity.c
2367- added expr/parse.c
2368- added expr/pow/estimation.c
2369- added expr/pow/pow.c
2370- added expr/product/estimation.c
2371- added expr/quad.c
2372- added expr/simplify.c
2373- added expr/sin/estimation.c
2374- added expr/sin/sin.c
2375- added expr/sum/estimation.c
2376- added nlpi/exprinterpret.c
2377- speedup test nlpi:solveQP in nlpi/nlpi.c
2378- added test projection:transitivity in prob/obbt.c
2379- added reader/nl.c
2380- added test intervalarith:sincos in scip/intervalarith.c
2381- added sepa/minor.c
2382- added sepa/rlt/cuts.c
2383- added sepa/rlt/product_detection.c
2384- added sepa/rlt/separation.c
2385- added tests test_compute_symmetry:expr{1,2,3,4} in symmetry/compute.c
2386
2387Build system
2388------------
2389
2390- the separate NLPI library has been integrated into the main SCIP library;
2391 uses of NLPILIBFILE or NLPILIBSRC in Makefiles that use make/make.project
2392 should be removed
2393
2394### Cmake
2395
2396- replace flag PARASCIP by THREADSAFE
2397- option AMPL is now ON by default
2398- add -D_XOPEN_SOURCE=600 cflag for compilation on systems other than windows
2399- add compile options directly instead of modifying CMAKE_C_FLAGS and CMAKE_CXX_FLAGS
2400
2401### Makefile
2402
2403- prefix PKG_CONFIG_PATH with Ipopt's pkgconfig dir instead of postfixing
2404- replace flag PARASCIP by THREADSAFE
2405- flag AMPL is now true by default
2406- libscip has been renamed to libscipbase and libscipsolver has been renamed to libscip
2407 in order to have the same library names for makefiles and cmake. For downward
2408 compatibility libscipsolver still exists (as a link).
2409
2410Fixed bugs
2411----------
2412
2413- fixed handling of multi-aggregation in cons_symresack and cons_orbisack
2414- SCIPgetLowerbound() now consistently returns infinity when status is infeasible
2415- improved the likelihood that a solution that satisfies the nonlinear constraints in the transformed (presolved) problem is also feasible for the original problem
2416- worked around a problem with derivatives of pow at 0 with non-integer exponents in CppAD
2417- fixed that setting of feasiblity and optimiality tolerance for NLP relaxation was overwritten with defaults when solving NLP
2418- fixed variance computation in t-value computation in hypothesis testing of reliability branching
2419- fixed potential overflow in cuts.c:evaluateLiftingFunctionKnapsack()
2420- do not transfer dual reductions to main SCIP in sepa_rapidlearning if strong dual reductions are forbidden
2421- fixed a bug in cons_setppc.c:removeDoubleAndSingletonsAndPerformDualpresolve() which led to wrong variable aggregations
2422- added missing redundancy check to coefficient tightening routine in cons_varbound that led to wrong variable locks
2423- added a check of numerics to avoid wrong reductions in cons_linear.c:simplifyInequalities()
2424- fixed a bug in cons_logicor.c regarding fixed variables that were not removed
2425- presol_milp.c handles variable fixings, suggested by PaPILO, more carefully to cover all cases that can appear
2426- fixed several reproducability bugs that led to different solving paths across multiple runs with one SCIP environment
2427- fixed check of limits/absgap, which was incorrectly applied to the scaled objective of the transformed problem
2428
2429Miscellaneous
2430-------------
2431
2432- in LP, use absolute instead of relative tolerances to check whether solutions from LP solver are primal feasible
2433- when a restart occurs, SCIP now asserts (during EXITSOLVE) that all relaxation-only variables are unlocked and
2434 only captured by the transformed problem.
2435- Avoid redundant calls to LP solver when LP is already flushed and solved
2436- In SCIPdebugMsg(), SCIPsetDebugMsg(), SCIPstatDebugMsg() strip directory from filename.
2437- Recompute activity of rows when checking LP solutions instead of trusting the value given by the LP solver
2438- The define NPARASCIP has been replaced by SCIP_THREADSAFE
2439- Parameters are not reset to their default values before activating an emphasis setting; this now allows to combine
2440 different emphasis settings.
2441- 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.
2442
2443@page RN7 Release notes for SCIP 7
2444
2445@section RN703 SCIP 7.0.3
2446*************************
2447
2448Interface changes
2449-----------------
2450
2451### New API functions
2452
2453- added function SCIPwithDebugSol() to determine whether SCIP was compiled with WITH_DEBUG_SOLUTION
2454
2455- New function SCIPcreateConsBounddisjunctionRedundant() and SCIPcreateConsBasicBounddisjunctionRedundant() that allow
2456 the input to contain redundant literals.
2457
2458### Changed API functions
2459
2460- added __attribute__((format(printf,,,))) to variadic SCIP message printing functions;
2461 this enables warnings about mismatches between format string and variadic function arguments if using GCC.
2462
2463### Interfaces to external software
2464
2465- removed MATLAB interface from interfaces/matlab
2466
2467Build system
2468------------
2469
2470- Compilation will now also work in a raw tarball of the scip git repository
2471
2472### Cmake
2473
2474- Make find_package more verbose and require packages to be found. Now enabled packages that are not found result in an error.
2475
2476Fixed bugs
2477----------
2478
2479- Fixed numerical bug by creating and checking the empty solution when problem vanishes in presolving.
2480- Fixed several bugs in reoptimization.
2481- Fixed bug in cons_bounddisjunction in which a constraint leads to a cutoff.
2482- Fixed bug in reoptimization by avoiding redundant literals for bound disjunctions.
2483- Replace wrong usage of CMAKE_BINARY_DIR by PROJECT_BINARY_DIR in CMake system
2484- Fixed lpi_glop to use absl flag instead of GFlags
2485- Fixed invalid initialization of limits/softtime parameter in cons_components
2486- Fixed MIN macro not defined in some cases.
2487- Safeguard some API functions for querying solving statistics against segmentation faults after SCIPpresolve()
2488- Fixed unfreed solution in concurrent solving
2489- Make sure that logicor constraints are enforced/separated if genlogicor is true in cons_indicator.
2490 Thus, do not change constraints/logicor/sepafreq anymore, but output warning.
2491- Fixed assert that assumed infeasibility cannot occur in presol_boundshift.
2492- Fixed sign bug during creation of conflict constraints with almost zero left-hand side.
2493- Disabled call of conflict handler for conflict sets that contain relaxation-only variables.
2494- Fixed bug in cons_symresack by initializing all constraint data in constrans
2495- Avoid allowing the upgrade of linear constraints corresponding to indicators in propagation of nodes.
2496- Fixed bug in computing lex. min/max faces in dynamic orbitope propagation.
2497- Limit vbounds propagator to one sweep through all bounds per call in order to avoid an infinite loop.
2498- Fixed mismatches between formatter strings and arguments in calls to SCIP message printing functions.
2499
2500Miscellaneous
2501-------------
2502
2503- To avoid performance variablity during reoptimization, the active constraints are now stored in the same order as in the
2504 original problem.
2505- Added workaround for bug in MSVS 2019 when compiling CppAD source.
2506- The original order of variables is now only restored after presolve if `randomization/permutevars` is set to FALSE.
2507
2508@section RN702 SCIP 7.0.2
2509*************************
2510
2511Features
2512--------
2513
2514- Extended check for valid variable and constraint names in PIP writer.
2515- Indicator constraints now write the name of the linear constraint in CIP format. This avoids a complicated
2516 name matching during parsing. The old format is still supported.
2517- The objective scale and offset are now taken into account when reading/writing problems in lp/mps/fzn/pip format.
2518 This often changes the behavior when writing transformed problems.
2519
2520Performance improvements
2521------------------------
2522
2523Examples and applications
2524-------------------------
2525
2526- Add c++ Sudoku example
2527
2528Interface changes
2529-----------------
2530
2531### Deleted and changed API functions
2532
2533- deprecated SCIPsetParam(); use SCIPsetIntParam(), SCIPsetRealParam(), etc, instead
2534
2535### New API functions
2536
2537- new function SCIPcolGetVarProbindex() for accessing the probindex of a variable corresponding to a column
2538- added new sorting functions SCIPsortPtrRealRealBoolBool()
2539
2540Fixed bugs
2541----------
2542
2543- Fixed a sign bug occuring for some cases in the computation of the directed cutoff distance
2544- Fixed overflow in inference information of cumulative constraint handler
2545- Fixed problem with propfreq == 0 in cons_linear.c
2546- Fixed aggregation heuristic in sepa_aggregation.c to not use local rows when that is requested nor modifiable rows
2547- Fixed problem with incompatibility of symmetry handling in Benders decomposition
2548- Fixed parsing of small number in CIP format of nonlinear constraint
2549- Fixed problem in upgrading full orbitopes to partitioning orbitopes
2550- Fixed treatment of negated variables in parsing orbitope constraints
2551- Fixed potential indexing error in prop_vbounds.c
2552- Fixed bug in writing fzn format
2553- Revert to old parameter value when parameter change is rejected in PARAMCHGD callback
2554- Fixed order of linker flags when building AMPL interface with cmake system.
2555- Fixed bug with ofsymcomptiming == 0: now symmetry is actually computed
2556- Improved separation for SOC constraint with multiaggregated variable on right-hand-side.
2557- Fixed bug in presol_boundshift: do not shift non-active variables
2558- Fixed bug in domain propagation for SOC constraints with negative coefficient for variable on right-hand-side.
2559- Fixed bug with multi-aggregated integer variables in cons_xor.
2560- Fixed bug with changed number of variables in storing relaxation solution in probing/diving.
2561- Fixed issues with scip statistics
2562- Fixed issue with multi-aggregated variables
2563- Fixed issue in with buffer memory in cons_cumulative
2564
2565@section RN701 SCIP 7.0.1
2566*************************
2567
2568Build system
2569------------
2570
2571### Cmake
2572
2573- Fixed cmake module for Ipopt to support Ipopt 3.13
2574- Added cmake variable BLISS_LIBRARY_DIR to pass a bliss library
2575- Added warning to require minimal GCC version 4.8
2576- Renamed FindCriterion cmake findmodule to FindCRITERION
2577
2578### Makefile
2579
2580- Updated make/make.project for macOS
2581- Add SANITZERFLAGS (only OPT=dbg) to LDFLAGS also if SHARED=true (and rename SANITZERFLAGS to SANITIZERFLAGS)
2582- Fixed GCC version check in make/make.linux.gnu.dbg
2583
2584Fixed bugs
2585----------
2586
2587- Fixed handling of constant term in quadratic objective of pip-reader
2588- Fixed incorrect value string for parameter estimation/completiontype
2589- Fixed initialization of first LP which led to wrong output about LPs not resolved correctly
2590- Fixed bug in SCIPcutpoolClear() function not clearing internal datastructures properly
2591- Fixed inability to set a value in a solution if it was within epsilon to the current value
2592- Fixed problems for linking optimized code with debug library of SCIP (and vice versa) by moving debug-only members
2593 to end of SCIP structs
2594
2595Miscellaneous
2596-------------
2597
2598- Variables that are marked as relaxation-only are no longer checked against debug solutions if
2599 they are captured by the transformed problem only.
2600
2601@section RN700 SCIP 7.0.0
2602*************************
2603
2604Features
2605--------
2606
2607- Using the parameter "propagating/symmetry/recomputerestart" one can now decide to recompute symmetries after a
2608 restart or not. Previously one could just turn off symmetry computation after a restart. If orbital fixing
2609 has found a reduction before the restart occured, symmetries have to be updated to ensure correctness.
2610 To this end, the user can decide via "propagating/symmetry/disableofrestart" whether orbital fixing is disabled or
2611 whether symmetries are recomputed.
2612
2613- extended relaxators statistics in solve statistics about information on number of cutoffs, improved bounds, etc.
2614
2615- extends SMPS file reader for the stochastic information, the sto files, to read a lower bound for the discrete
2616 scenarios. The lower bound is used when creating the auxiliary variables for Benders' decomposition.
2617
2618- extended Benders framework to solve NLPs and generate optimality and feasibility cuts from their solution
2619 when the subproblem is convex nonlinear.
2620
2621- extended Benders framework to create copies of Benders decompositions that can be used in a multithreading environment
2622
2623- additional functionality has been added to enable the transfer of Benders' decomposition cuts between different SCIP
2624 instances, e.g., when used in UG
2625
2626- LP rows (SCIP_ROW) can now store pointer to a constraint from which the row originates
2627
2628- Trust region, a new LNS heuristic, has been added to SCIP as both a standalone primal heuristic heur_trustregion.c
2629 and as a neighborhood inside of Adaptive Large Neighborhood Search (heur_alns.c). This heuristic is designed to improve the
2630 heuristic performance of the Benders' decomposition algorithm. It builds upon the successful trust region approaches
2631 applied to Benders' decomposition.
2632
2633- Modularity of symmetry handling has been increased. It is now possible to use orbitopes (i.e., polyhedral symmetry
2634 handling techniques) and orbital fixing on the same instance.
2635
2636- cut strengthening enabled within the Benders' decomposition framework. This uses a mix of the Improved Magnanti-Wong
2637 method and Kelly's method. The cut strengthening is enabled by setting the paramemter
2638 "benders/<bendersname>/cutstrengthenenabled" to TRUE. The parameters "cutstrengthenmult", "noimprovelimit" and
2639 "corepointperturb" control the behavior of the cut strengthening method. Additionally, the parameter
2640 "cutstrengthenintpoint" allows the user to specify the solution that is used to initialize the core point. The options
2641 are the first LP solution, the first integer feasible solution, a relative interior point, a solution vector of all
2642 ones and a solution vector of all zeros. Also, the core point can be reinitialized after each update to the incumbent
2643 solution.
2644
2645- added option to adjust weights of different scores in relpscost (hybrid) branching rule based on degeneracy information
2646 and skip strong branching for very high degeneracy rates
2647
2648- added new SCIP_DECOMP* object to store user decompositions. The user can specify one or several decompositions by assigning variable
2649 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).
2650 This format specifies constraint labels, variable labels are inferred from that. The decomposition is transformed after presolving.
2651- statistics regarding the number of blocks, the largest and smallest blocks, the border, and the constraint graph are printed for the original decomposition,
2652 and for each decomposition after presolving.
2653- the decomposition can be used as initial decomposition for the Benders functionality of SCIP.
2654- new subsection "How to provide a problem decomposition" in the SCIP documentation
2655
2656- GINS heuristic can make use of a user-provided decomposition labels in two ways:
2657 1. by selecting a block of variables that maximizes the potential, and randomly selecting a start variable for the neighborhood and/or
2658 2. by selecting an interval of consecutive blocks as neighborhood, until fixing rate is reached. In this case, no variable is randomly selected.
2659
2660- extend potential parameter of GINS to allow computation based on local LP solution, as well
2661
2662- new primal heuristic Adaptive Diving, which registers all publicly available dive sets from other diving heuristics.
2663 At each call, it selects one of the available dive sets based on the user's score type choice (heuristics/adaptivediving/scoretype).
2664 During the solution process, the heuristics learns online which divesets reach the best score, and executes them more frequently.
2665 The statistic output for Diving heuristics has been extended to incorporate the statistics of each dive set within Adaptive diving.
2666
2667- Added new penalty alternating direction method (PADM) primal heuristic that splits the problem into several sub-SCIPs
2668 according to a user-provided decomposition. The sub-SCIPs are solved on an alternating basis until a feasible solution of
2669 the original problem is found.
2670
2671- Symmetry handling constraints (cons_orbisack, cons_orbitope, cons_symresack) now have an additional parameter to encode
2672 whether they are model constraints, i.e., define the problem, or whether they are only present to handle symmetries.
2673
2674- The symmetry code has been completely restructured. The presolvers presol_symbreak and presol_symmetry as well as the propagator
2675 prop_orbitalfixing have been merged into the single propagator prop_symmetry to avoid storing the same information
2676 multiple times. This propagator is now responsible for adding symmetry handling constraints as well as activating orbital
2677 fixing. Moreover, the new file symmetry.c contains general functions for symmetry computations like orbit computations.
2678
2679- Variables can now be marked as "relaxation-only". This flag should be used to introduce new variables that are required
2680 to define a relaxation, but that are not part of any checked constraints. Essentially, these variables should only be used
2681 in the current SCIP solve and disregarded after a restart or in SCIP copies. Hence, these variables are not copied by SCIPcopy and
2682 SCIPgetVarCopy, they are currently not used in conflict constraints, and cuts involving them are not upgraded to linear constraints.
2683 Relaxation-only variables cannot appear in the objective function.
2684
2685- The OSiL reader now supports nonlinear expressions of type "signpower".
2686
2687- Expressions of form abs(x)^p * x in a nonlinear constraint are now sometimes recognized and handled by abspower constraints.
2688
2689- If polyhedral symmetry handling methods are used (cons_orbisack, cons_orbitope, cons_symresack), it is now possible to
2690 recompute symmetries if a restart occured.
2691
2692- upgrade some more quadratic constraints to second-order cone constraints, that is,
2693 handle linear binary variables as if squared in simple upgrade and
2694 do not require bounds for variables that have a zero entry in the computed eigenvectors in the non-simple upgrade
2695
2696- new variable event when changing the variable type
2697
2698- It is no longer necessary to provide a SCIP pointer for the subproblem in SCIPaddBendersSubproblem if custom solving
2699 methods are defined. A NULL pointer can be supplied to SCIPaddBendersSubproblem. In this case, no internal Benders'
2700 cut generation methods can be used.
2701
2702- Using the parameter "constraints/symresack/checkmonotonicity" one can now decide to upgrade to packing/partitioning
2703 symresacks even if the underlying permutation is not monotone.
2704
2705- New branching rule `vanillafullstrong`, mostly for scientific purpose, with the following features:
2706 1) no cutoff or domain reduction: only branching;
2707 2) idempotent (optional): leave SCIP, as much as possible, in the same state before / after the strong branching calls
2708 - basically, do not update any statistic;
2709 3) donotbranch (optional): do no perform branching. So that the brancher can be called as an oracle only
2710 (on which variable would you branch ? But do not branch please);
2711 4) scoreall (optional): keep scoring variables, even if infeasibility is detected;
2712 5) collectscores (optional): store the candidate scores from the last call, which can then be retrieved by calling SCIPgetVanillafullstrongData();
2713 6) integralcands (optional): consider integral candidates for branching,
2714 i.e., get candidates from SCIPgetPseudoBranchCands() instead of SCIPgetLPBranchCands().
2715
2716- If a reference value (misc/referencevalue) is given, the primal-reference and reference-dual integrals are calculated automatically and printed within the SCIP statistics.
2717
2718- Locally valid cuts / rows are now considered for dual proof analysis when `conflict/uselocalrows` is set to TRUE.
2719
2720- 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.
2721
2722- To save memory, it is now possible to remove all variables from the internal symmetry data structures that are
2723 not affected by any symmetry.
2724
2725- Allow to filter first variables from orbits and transfer pseudo cost information to variables in orbit
2726
2727- Add integration of external MILP presolve library as a SCIP presolver plugin that runs on MILP problems
2728
2729- Parallelisation can be used when applying Benders' decomposition. There are two different forms of parallelisation
2730 available. The first is applying Benders' decomposition within a parallel branch-and-bound. This is achieved through
2731 the integration with the UG framework. The second is the use of shared memory parallelisation for solving the Benders'
2732 decomposition subproblems. A priority queue has been added to help with load balancing.
2733
2734- The Benders' decomposition framework can handle MINLPs. If a convex relaxation of the MINLP exists, then this is
2735 solved to generate optimality and feasibility cuts. The extensions to the framework are:
2736 - New generic solving methods to solve convex NLP subproblems.
2737 - Modification to benderscut_opt and benderscut_feas to enable the generation of cuts from convex NLPs.
2738 - Addition of benderscut_feasalt to generate feasibility cuts from an alternative subproblem that minimises the
2739 violation of infeasible problems.
2740 - Better handling of subproblem solution results
2741
2742- Adds a feasibility phase to the Benders' decomposition subproblem solving methods. The feasibility phase adds slack
2743 variables to each of the constraints to ensure feasibility of the subproblem. A large coefficient is given to these
2744 slack variables in the objective function to penalise constraint violations. The coefficients are progressively
2745 increased until all slack variables take the value 0.0.
2746
2747- Improved convexity check for Benders' decomposition subproblems. The constraints of the subproblem are now checked for
2748 convexity in the initialisation of the Benders' decomposition algorithm. This enables the solving of convex NLPs as
2749 Benders' decomposition subproblems.
2750
2751- Benders' decomposition can be applied using decomposition supplied in the DEC format. To apply Benders' decomposition
2752 the parameters decomposition/benderslabels and decomposition/applybenders must be set to TRUE.
2753
2754- new event handler event_estim.c/h that approximates search tree completion and estimates tree size
2755 to trigger restarts; many approximations of search tree completion and estimation, including WBE, SSG, and tree profile method
2756- new display column that reports approx. search tree completion during the search, and an overview in the statistics table
2757- added resources (script, tutorial, test data) to adapt tree size estimation to user instances.
2758
2759- Orbital Fixing uses a list of variables that have been fixed globally since the computation of symmetries to filter
2760 symmetries. Previously, some plugins were disabled, which is not necessary anymore.
2761
2762- A new presolver "dualsparsify" was added. It tries to combine columns (i.e. variables) to cancel nonzero coefficients in the constraint matrix.
2763
2764- The presolver "tworowbnd" was implemented with better performance.
2765
2766- 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.
2767
2768- allow disabling of pricers during solving process
2769
2770- added emphasis setting for numerically challenging instances
2771
2772Performance improvements
2773------------------------
2774
2775- Extended cut presolving by removing variables that been fixed at their bounds
2776
2777- Improved branching point selection when branching on externals branching candidates. Instead of using exactly the
2778 LP solution, a point closer to the middle of the variables domain is chosen.
2779
2780- Matrix presolvers that do not work on incomplete matrices now skip matrix creation if unsupported constraint types are detected.
2781
2782- consLockBenders callback implemented to add down locks on the Benders' decomposition auxiliary variables and
2783 up and down locks per subproblem for all master problem variables. This allows the use of presolving and propagation
2784 with Benders' decomposition.
2785
2786- improved performance of orbital fixing in several ways:
2787 store permutations in transposed form to improve cache efficency;
2788 reverse order to speed up filtering of permutations;
2789 handle variables globally fixed to 1 in list;
2790 use event handler to catch global fixings;
2791 speed up orbit computations;
2792 change handling of restarts;
2793 use only permutations that can contribute to a variable's orbit;
2794
2795- allow rapid learning at local nodes
2796
2797- allow to recompute cut without using fractional values for sepa_cgmip
2798
2799- restrict the number of the clique table nonzeros relative to the number of problem nonzeros, which could be a performance bottleneck.
2800
2801- variable fixings of LP face heuristic are now computed earlier; subproblem creation is skipped if not enough variables are fixed.
2802
2803- Improved domcol presolver to not require a complete representation of all constraints in the matrix
2804
2805- performance improvement of adaptive large neighborhood search heuristic on merely continuous problems. The heuristic
2806 stops if presolving in the sub-SCIP fixes less than 50 % of the current target fixing rate over all variables
2807 (including continuous).
2808
2809- reduce memory usage in symmetry detection by a staggered allocation with decreasing overhead for larger instances
2810
2811- improved full orbitope propagation using a static implementation or a dynamic reordering of orbitope rows by a global rank function
2812
2813- improved detection of packing/partitioning orbitopes
2814
2815- enable an in-tree restart if after a reasonable initialization, the estimated size of the remaining tree is large.
2816
2817
2818Examples and applications
2819-------------------------
2820
2821- added functions to set and get hmin and hmax for optcumulative constraints
2822
2823Interface changes
2824-----------------
2825
2826### New and changed callbacks
2827
2828- new optional callback `SCIP_DECL_DIVESETAVAILABLE` to check preconditions for this dive set, e.g., if an incumbent solution is available,
2829 which is passed as new argument to SCIPcreateDiveset(). SCIPcreateDiveset() has another new parameter "ispublic".
2830
2831- new callback `SCIP_DECL_CONSHDLRCOPY` and `SCIP_DECL_CONSCOPY` in cons_orbisack and cons_symresack
2832
2833- new `idempotent` argument to SCIPgetVarStrongbranchInt() and SCIPgetVarStrongbranchFrac(),
2834 so that statistics are not updated during the call. Likewise, new `updatecol` and `updatestat` arguments to SCIPcolGetStrongbranch().
2835
2836- callback `SCIP_DECL_CONSHDLRENFOLP` can now also return SCIP_SOLVELP as *result, which indicates to the SCIP core that the LP relaxation
2837 should be solved again because the primal feasibility tolerance of the LP has been tightened (using SCIPsetLPFeastol())
2838
2839- 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.
2840
2841### Deleted and changed API functions
2842
2843- LPI:
2844 + now for all lp interfaces consistent requirements on SCIP_LPPAR:
2845 LPITLIM and BARRIERCONVTOL positive or zero; FEASTOL, DUALFEASTOL, LPTILIM strictly positive
2846 + now projecting SCIP_LPPAR values on feasible values for each lp interface
2847 + add interface to Glop
2848 + fixed mapping between scaling parameter values in Gurobi LPI lpi_grb
2849- Symmetry:
2850 + removed function SCIPseparateCoversOrbisack() in cons_orbisack.h since the orbitope constraint
2851 handler has its own implementation of this routine with advanced features now
2852 + renamed SCIPgetGeneratorsSymmetry() to SCIPgetSymmetry() and removed two arguments
2853 + extended function SCIPgetSymmetry(): It is possible to access both the original and
2854 transposed permutations matrix as well as the (independent symmetry) components of a permutation group now.
2855 + arguments of functions SCIPcreateConsOrbisack(), SCIPcreateConsBasicOrbisack(), SCIPcreateConsOrbitope(),
2856 SCIPcreateConsBasicOrbitope(), SCIPcreateConsSymresack(), SCIPcreateConsBasicSymresack(), and SCIPcreateSymbreakCons() extended
2857 by "ismodelcons" to encode whether the constraints are model constraints or not
2858 + the function SCIPgetSymmetry() no longer accepts the parameter recompute, but has parameter permvarmap as new input
2859 + removed SCIPgetPermvarsObjSymmetry(), SCIPsetSymmetryComponentblocked(), SCIPgetSymmetryComponentblocked(),
2860 SCIPgetSyminfoGloballyFixedVars(), SCIPcomputeGroupOrbitsSymbreak, SCIPincludePresolSymmetry(),SCIPincludePresolSymbreak(),
2861 and SCIPincludePropOrbitalfixing()
2862 + add function SCIPcomputeOrbitsComponentsSym() to compute orbits without filtering permutations and indices of orbits for each variable
2863- SCIPallowObjProp() and SCIPallowDualReds() are deprecated and replaced by SCIPallowWeakDualReds() and SCIPallowStrongDualReds(), respectively
2864- Benders' decomposition
2865 + changed SCIPstoreBenderscutCut() in scip_benders.c to SCIPstoreBendersCut(). Where this function used to take a
2866 SCIP_BENDERSCUT pointer, it now accepts a SCIP_BENDERS pointer.
2867 + the functions SCIPsolveBendersSubproblem() no longer accepts the parameter type. The type is not a necessary
2868 argument for the subproblem solving method.
2869 + arguments of functions SCIPbendersSolveSubproblemLP(), SCIPbendersSolveSubproblemCIP(), and SCIPbendersOnlyCheckConvexRelax() changed
2870 - removed SCIPbenderscutGetNAddedCuts() and SCIPbenderscutGetAddedCutData()
2871
2872
2873### New API functions
2874
2875- new argument "onlyifcomplete" in SCIPmatrixCreate() to skip matrix creation right after detecting unsupported constraint types
2876 and new arguments to count statistics when doing a clean-up of inactive variables in the constraints before building the matrix
2877
2878- new argument "threadsafe" in SCIPcopy(), SCIPcopyConsCompression(), SCIPcopyOrig(), SCIPcopyOrigConsCompression and
2879 SCIPcopyBenders(). This argument must only be set to TRUE if the source and target SCIP instances are to be solved in
2880 parallel. Setting this argument to TRUE has a performance cost.
2881
2882- new argument "append" in SCIPsetModifiedDefaultSettingsIpopt()
2883- functions SCIPclearRelaxSolVals(), SCIPsetRelaxSolVal(), SCIPsetRelaxSolVals(), SCIPsetRelaxSolValsSol(), and SCIPmarkRelaxSolValid()
2884 receive an additional argument "relax" to store the relaxation handler as creator of the relaxation solution.
2885
2886- LP:
2887 - SCIProwGetOriginCons() now returns a SCIP_CONS* instead of a SCIP_CONSHDLR*, use SCIProwGetOriginConshdlr() for the previous behavior
2888 - SCIPcreateRowCons() and SCIPcreateEmptyRowCons() now expect a SCIP_CONS* instead of a SCIP_CONSHDLR*,
2889 use SCIPcreateRowConshdlr() and SCIPcreateEmptyRowConshdlr(), respectively, for the previous behavior
2890 - deprecated SCIPlpfeastol() and SCIPchgLpfeastol(), use SCIPgetLPFeastol() and SCIPsetLPFeastol()
2891
2892- new parameter "divecontext" for every function that queries statistics for a diveset. The context can be used to distinguish between the dive set
2893 as single (standalone) heuristic or within Adaptive Diving.
2894- new parameters "divecontext" and "iterlim" to SCIPperformGenericDivingAlgorithm() to control in which context (single,adaptive) statistics are updated.
2895
2896- SCIPcopyVars, SCIPcopy, SCIPcopyConsCompression, and SCIPgetVarCopy do not copy variables that are marked as relaxation-only,
2897 thus it cannot be assumed anymore that each active variable from the master SCIP also has a counterpart in the copy.
2898 SCIPcopy, SCIPcopyConsCompression, and SCIPcopyConss can now return *valid=TRUE if some non-checked and non-enforced constraints were not copied, e.g.,
2899 because they involved relaxation-only variables. Thus, a copy is already regarded as valid if all checked or enforced constraints were copied successfully.
2900
2901- linking constraint handler:
2902 - changed type of vals argument from int* to SCIP_Real* in SCIPcreateConsLinking() and SCIPcreateConsBasicLinking()
2903 - SCIPgetIntvarLinking() has been renamed to SCIPgetLinkvarLinking().
2904 - changed return value of SCIPgetValsLinking() from int* to SCIP_Real*.
2905 - new function SCIPgetBinvarsDataLinking().
2906
2907- SCIPbendersCheckSubproblemOptimality() now returns a boolean indicating whether the subproblem is optimal or not.
2908 Previously this result was returned through a parameter. The change was required to facilitate the integration with
2909 the UG framework.
2910
2911- deleted SCIPcombineTwoInt(), SCIPcombineThreeInt(), SCIPcombineFourInt(); use the appropriate SCIPhashTwo(), ..., SCIPhashSeven() function instead
2912
2913- SCIPsetupBendersSubproblem takes a parameter of the enforcement type.
2914
2915- SCIPcreateNlpiProb takes a hashmap to store the map between the nlrows and the index in the nlrow array.
2916
2917### New API functions
2918
2919- SCIPallowWeakDualReds() and SCIPallowStrongDualReds() replace the deprecated SCIPallowObjProp() and SCIPallowDualReds(), respectively
2920- functions have been added to facilitate the transfer of Benders' decomposition cuts between solvers in UG. These include
2921 SCIPapplyBendersStoredCuts(), SCIPbendersGetNStoredCuts(), SCIPbendersGetStoredCutData() and
2922 SCIPbendersGetStoredCutOrigData().
2923- added SCIPisConvexAbspower()
2924- new functions SCIPsolGetType(), SCIPsolGetRelax(), SCIPsolSetRelax(), SCIPsolSetLPRelaxation(), SCIPsolSetStrongbranch(),
2925 SCIPsolSetPseudo to set or query the new type attribute of a primal solution. The type attribute gives information
2926 about the origin of the solution, ie, whether it was created by a relaxation handler,
2927 by the LP relaxation, by strong branching, by the current pseudo solution, or by a primal heuristic.
2928 The meaning of the argument 'heur' in all creation methods for primal solutions such as SCIPcreateSol() stays unchanged.
2929- added SCIProwGetOriginConshdlr(), SCIPcreateRowConshdlr(), SCIPcreateEmptyRowConshdlr()
2930- new API functions SCIPsetCommonSubscipParams(), SCIPtranslateSubSol(), and SCIPtranslateSubSols() shared by several Large Neighborhood Search heuristics.
2931- new API function SCIPgetLPDualDegeneracy() to get two measures for the dual degeneracy of the current LP
2932- new API functions SCIPdivesetIsAvailable() to check preconditions of a dive set and SCIPdivesetIsPublic() to check if the dive set can be used
2933 by other primal heuristics.
2934- new API functions SCIPcomputeOrbitsSym(), SCIPcomputeOrbitsFilterSym(), SCIPgetPropertiesPerm(), SCIPdetermineBinvarAffectedSym(),
2935 SCIPdetermineNVarsAffectedSym(), SCIPcomputeComponentsSym(), and SCIPextendSubOrbitope(), SCIPgenerateOrbitopeVarsMatrix() for symmetry computations
2936- new API functions SCIPvarIsRelaxationOnly() and SCIPvarMarkRelaxationOnly() to query and set, resp., whether a variable is marked as relaxation-only
2937- new API functions SCIPconshdlrGetNUpdateConss() and SCIPconshdlrGetUpdateConss(), for expert users only
2938- new API function SCIPgetNConflictDualproofsApplied()
2939- new API functions SCIPeventGetOldtype() and SCIPeventGetNewtype() for the new event when changing the variable type
2940- new API function SCIPisConvexConsQuadratic() to check whether a quadratic constraint is convex when a given set of variables would be fixed
2941- new API functions SCIPgetLPFeastol(), SCIPsetLPFeastol(), and SCIPresetLPFeastol() to get, set, and reset (to the default), respectively, the primal
2942 feasibility tolerance for the LP relaxation
2943- new API functions SCIPcleanupConss{Linear,Varbound,Setppc,Logicor,Knapsack}() to clean up inactive variables from those types of linear constraints
2944- new API function SCIPsetBendersSubproblemComp() used to add a custom comparison method for ordering the Benders'
2945 decomposition subproblem solves. The comparison method is used to help with load balancing.
2946- new API function SCIPgetRowObjParallelism to get the objective parallelism of a row
2947- new API function SCIPcolGetAge to get the age of a column
2948- added SCIPhashThree(), SCIPhashFive(), SCIPhashSix(), and SCIPhashSeven() that complement SCIPhashTwo(), SCIPhashFour() to combine 32bit integers to
2949 a 32bit hash value
2950- new API function SCIPgenerateAndApplyBendersOptCut is used to generate a Benders' optimality cut using the dual
2951 solutions. This function can be supplied vectors for the primal and dual solution for generating an optimality cut.
2952 This avoids the need for a SCIP instance to solve the Benders' decomposition subproblem and generating cuts.
2953- new API function SCIPconsAddCoef used for adding a coefficient to a linear-type constraint.
2954- new API functions SCIPconsNonlinearGetRhs, SCIPconsNonlinearGetLhs and SCIPconsNonlinearAddLinearCoef for getting the
2955 RHS and LHS from a nonlinear-type constraint and adding a linear coefficient to the constraint.
2956- new API function SCIPbendersSolSlackVarsActive for checking whether any slack variables from the feasibility phase are
2957 active in the subproblem solution.
2958- new API functions SCIPbendersSetSubproblemType and SCIPbendersGetSubproblemType sets and gets the subproblem type.
2959 This is either:
2960 - Convex constraints with continuous variables
2961 - Convex constraints with discrete variables
2962 - Non-convex constraints with continuous variables
2963 - Non-convex constraints with discrete variables
2964- new API functions SCIPbendersSetSubproblemIsNonlinear() and SCIPbendersSubproblemIsNonlinear() for setting and
2965 identifying whether the Benders' decomposition subproblems contain nonlinear constraints. Similarly, the functions
2966 SCIPbendersSetMasterIsNonlinear() and SCIPbendersMasterIsNonlinear() sets and identifies whether the Benders'
2967 decomposition master problem contains nonlinear constraints.
2968- new API function SCIPapplyBendersDecomposition for applying Benders' decomposition given a decomposition in the DEC
2969 format
2970- new API function SCIPwasNodeLastBranchParent to query if a node has been the parent of the most recent branching in the tree
2971- new API functions SCIPtreemodelInit(), SCIPtreemodelFree(), SCIPtreemodelIsEnabled(), SCIPtreemodelSelectCandidate() related to the new
2972 treemodel way of comparing branching candidates. These functions are only currently used for reliability pscost branching, but they can be used
2973 in other parts of the code.
2974- New function SCIPcalcChildEstimateIncrease() to compute the increase in the child estimation
2975- new API functions SCIPisOrbitalfixingEnabled() and SCIPgetSymmetryNGenerators() to check whether orbital fixing is
2976 enabled and to get the number of generators of the current symmetry group, respectively
2977- new API function SCIPdelNlRow() to remove a row from the NLP
2978
2979### Event system
2980
2981- new event type SCIP_EVENTTYPE_NODEDELETE to react on nodes that are about to be deleted from the tree
2982
2983### Changed parameters
2984
2985- renamed parameter "propagating/orbitalfixing/enableafterrestart" to ".../symmetry/recomputerestart"
2986- Parameter "misc/allowdualreds" is now called "misc/allowstrongdualreds"
2987- Parameter "misc/allowobjprop" is now called "misc/allowweakdualreds"
2988- changed default values of propagation (new value: 1, old value: 5) and separation frequency (new value: -1, old value: 5) in cons_orbitope.c
2989- all primal heuristics that use sub-SCIPs are disabled within the heuristics fast emphasis setting
2990- deleted parameter heuristics/localbranching/useuct, use heuristics/useuctsubscip instead
2991- changed default value of "presolving/symbreak/detectorbitopes" (new value: TRUE, old value: FALSE)
2992- extended range of "misc/usesymmetry" (new range: [0,3], old range: [0,2])
2993- deleted parameter "constraints/orbisack/checkalwaysfeas"
2994- deleted parameter "constraints/orbitope/checkalwaysfeas"
2995- deleted parameter "constraints/symresack/checkalwaysfeas"
2996- deleted parameter "presolving/symmetry/maxgenerators"
2997- deleted parameter "presolving/symmetry/checksymmetries"
2998- deleted parameter "presolving/symmetry/displaynorbitvars"
2999- deleted parameter "presolving/symbreak/conssaddlp"
3000- deleted parameter "presolving/symbreak/addsymresacks"
3001- deleted parameter "presolving/symbreak/computeorbits"
3002- deleted parameter "presolving/symbreak/detectorbitopes"
3003- deleted parameter "presolving/symbreak/addconsstiming"
3004- deleted parameter "propagating/orbitalfixing/symcomptiming"
3005- deleted parameter "propagating/orbitalfixing/performpresolving"
3006- deleted parameter "propagating/orbitalfixing/recomputerestart"
3007- changed default value of "heuristics/coefdiving/freq" (old: 10, new: -1)
3008- changed default value of "heuristics/conflictdiving/freq" (old: -1, new: 10)
3009- changed default value of "heuristics/conflictdiving/lockweight" (old: 1.0, new: 0.75)
3010- replaced parameter "numerics/lpfeastol" by "numerics/lpfeastolfactor" to specify which factor should be applied to the SCIP feasibility
3011 tolerance to initialize the primal feasibility tolerance of the LP solver
3012- enabling aggressive presolving now activates all available presolving plugins,
3013 and decreases the presolving/restartfac parameter correctly with respect to default.
3014- changed default value of heuristics/rins/nodesquot to 0.3 (was 0.1), to compensate
3015 the removal of a hard coded factor of 3.0 in the code without affecting the default behavior
3016 of the RINS heuristic.
3017- changed default value of "constraints/quadratic/empathy4and" (old: 0, new: 2)
3018- changed default value of "propagating/redcost/useimplics" (old: TRUE, new: FALSE)
3019
3020### New parameters
3021
3022- the possibility to define the Benders' decomposition auxiliary variables as implicit integer is provided. This
3023 behavior is controlled with an additional parameter in the Benders' decomposition framework.
3024- added parameter benders/<bendersname>/cutcheck to enable the generation of Benders' decomposition cuts during solution
3025 checking.
3026- constraints/orbitope/usedynamicprop: the possibility to propagate orbitope constraints by reordering the rows based on the
3027 branching strategy is provided (only possible for non-model constraints)
3028
3029- new parameters heuristics/shiftandpropagate/minfixingratelp and heuristics/locks/minfixingratelp to stop the
3030 heuristics after propagating integer fixings if no sufficient fixing of the all variables (including continuous)
3031 could be achieved. These parameters help to avoid solving LP's that are comparable in hardness to the main root LP.
3032
3033- Added parameters branching/midpull and branching/midpullreldomtrig to control by how much to move
3034 the branching point for an external branching candidate closer to the middle of the candidates domain. The
3035 default of 0.75 and 0.5, respectively, uses a point that is 75*alpha% closer to the middle of the domain, where
3036 alpha is the relative width of the candidates domain (width of local domain divided by width of global domain),
3037 if the latter is below 0.5, and alpha=1.0 otherwise. That is, with the default settings, a branching point is
3038 chosen closer to the middle of the candidates domain if the variables local domain is still similar to its
3039 global domain, but is chosen closer to the LP solution if the local domain is much smaller than the global
3040 domain.
3041
3042- Added parameter lp/minmarkowitz to set the Markowitz stability threshold (range 0.0001 to 0.9999).
3043 High values sacrifice performance for stability.
3044
3045- Added parameters benders/<bendersname>/lnsmaxcalls and benders/<bendersname>/lnsmaxcallsroot to the Benders'
3046 decomposition core. These parameters limit the number of Benders' decomposition subproblem checks, for the full
3047 branch-and-bound tree and root node respective, when solving the auxiliary problem of LNS hueristics. These
3048 parameters only have effect if the lnscheck parameter is set to TRUE.
3049
3050- Added parameter cons/linear/maxmultaggrquot to limit the maximum coefficient dynamism of an equation on which
3051 multiaggregation is performed. This replaces a compiler define of the same name.
3052 Default value is 1000, smaller values make multiaggregations numerically more stable.
3053- new global parameter heuristics/useuctsubscip that affects all LNS heuristics using common sub-SCIP parameters
3054
3055- new parameter branching/relpscost/degeneracyaware to switch degeneracy-aware hybrid branching
3056
3057- new parameter separation/rapidlearning/checkexec to check whether rapid learning is allowed to run locally
3058- new parameters separation/rapidlearning/check{degeneracy,dualbound,leaves,nsols,obj} to enable checking the respective feature for local rapid learning
3059- new parameter separation/rapidlearning/maxcalls to limit the number of rapid learning executions
3060- new parameter separation/rapidlearning/nwaitingnodes to set the number of waiting nodes before the dual bound is checked
3061- new parameter separation/rapidlearning/mindegeneracy to set the minimal threshold of degenerate basic-variables
3062- new parameters separation/rapidlearning/minvarconsratio to set the minimal ratio of unfixed variables in relation to basis size
3063
3064- new parameters to control the Benders' decomposition two-phase method.
3065 - constraints/benderslp/depthfreq: after the maxdepth is reached, then the two-phase method will only be called at
3066 nodes at a depth divisible by depthfreq.
3067 - constraints/benderslp/stalllimit: after the maxdepth is reached, if there has been no improvement in the dual bound
3068 for stalllimit number of nodes, then the two-phase method is executed for the next fractional LP solution that is
3069 encountered.
3070 - constraints/benderslp/iterlimit: after the root node, only iterlimit fractional LP solutions are used at each node
3071 to generate Benders' decomposition cuts.
3072
3073- new parameters for symmetry handling
3074 - new parameter "propagating/symmetry/maxgenerators"
3075 - new parameter "propagating/symmetry/checksymmetries"
3076 - new parameter "propagating/symmetry/displaynorbitvars"
3077 - new parameter "propagating/symmetry/conssaddlp"
3078 - new parameter "propagating/symmetry/addsymresacks"
3079 - new parameter "propagating/symmetry/detectorbitopes"
3080 - new parameter "propagating/symmetry/addconsstiming"
3081 - new parameter "propagating/symmetry/ofsymcomptiming"
3082 - new parameter "propagating/symmetry/performpresolving"
3083 - new parameter "propagating/symmetry/recomputerestart"
3084 - new parameter "constraints/symresack/checkmonotonicity"
3085 - new parameter "propagating/symmetry/compresssymmetries"
3086 - new parameter "propagating/symmetry/compressthreshold"
3087 - new parameter "propagating/symmetry/disableofrestart"
3088 - new parameter "propagating/symmetry/symfixnonbinaryvars"
3089
3090- new parameter for enabling shared memory parallelisation for solving Benders' decomposition subproblems. The parameter
3091 benders/<bendersname>/numthreads sets the number of threads used for parallel subproblem solving.
3092
3093- new parameters to control enhancements for solving MINLPs by Benders' decomposition
3094 - benders/<bendersname>/execfeasphase: enables the feasibility phase for solving the Benders' decomposition
3095 subproblems
3096 - benders/<bendersname>/slackvarcoef: the initial coefficient of the slack variable for the feasibility phase
3097 - benders/<bendersname>/checkconsconvexity: should the constraints be checked for convexity. This can be set to FALSE
3098 if you are certain that the NLP subproblem is convex.
3099
3100- new parameter presolving/clqtablefac (default value 2.0) as limit on number of entries in clique table relative to number of problem nonzeros
3101
3102- new parameter conflict/uselocalrows (default: TRUE) to incorporate locally valid cuts / rows for dual proof analysis
3103
3104- new return code SCIP_NOTIMPLEMENTED for functions, e.g., in the LPI that have not been implemented (yet)
3105
3106- new parameter separating/cgmip/genprimalsols that allows to generate initial primal solutions from Gomory cuts
3107
3108- new parameter branching/relpscost/filtercandssym to allow filtering from orbits
3109
3110- new parameter branching/relpscost/transsympscost to transfer pseudo cost information to orbit
3111
3112- new parameters for tree size estimation and restarts:
3113 - estimation/restarts/restartpolicy (default value n)
3114 - estimation/method (default value c)
3115 - estimation/restarts/restartlimit (default value 1)
3116 - estimation/restarts/minnodes (default value 1000)
3117 - estimation/restarts/countonlyleaves (default value FALSE)
3118 - estimation/restarts/restartfactor (default value 2)
3119 - estimation/coefmonoprog (default value 0.3667)
3120 - estimation/coefmonossg (default value 0.6333)
3121 - estimation/restarts/hitcounterlim (default value 50)
3122 - estimation/reportfreq (default value -1)
3123 - estimation/regforestfilename (default value "-")
3124 - estimation/completiontype (default value a)
3125 - estimation/treeprofile/enabled (default value FALSE)
3126 - estimation/treeprofile/minnodesperdepth (default value 20)
3127 - estimation/useleafts (default value TRUE)
3128 - estimation/ssg/nmaxsubtrees (default value -1)
3129 - estimation/ssg/nminnodeslastsplit (default value 0)
3130
3131- new parameter constraints/linear/extractcliques to turn clique extraction off
3132
3133- new emphasis setting emphasis/numerics to increase numerical stability of (mostly) presolving operations such as (multi-)aggregations at the cost of performance.
3134
3135- new parameters for treemodel:
3136 - new parameter branching/treemodel/enable to enable the treemodel in reliability pscost branching and possible
3137 future parts of the code where it could be used.
3138 - new parameter branching/treemodel/highrule to specify which branching rule to use when treemodel thinks the node
3139 is high in the tree.
3140 - new parameter branching/treemodel/lowrule to specify which branching rule to use when treemodel thinks the node
3141 is low in the tree.
3142 - new parameter branching/treemodel/height to specify at which (estimated) height a node is high or low in the tree.
3143 - new parameter branching/treemodel/filterhigh to specify whether to filter dominated candidates in nodes which are
3144 high in the tree.
3145 - new parameter branching/treemodel/filterlow to specify whether to filter dominated candidates in nodes which are
3146 low in the tree.
3147 - new parameter branching/treemodel/maxfpiter to specify the maximum number of fixed-point iterations to use when
3148 computing the ratio of a variable using the fixed-point method.
3149 - new parameter branching/treemodel/maxsvtsheight to specify the maximum height to compute the SVTS score exactly
3150 before approximating it using the ratio.
3151 - new parameter branching/treemodel/fallbackinf defines the fallback strategy to use when the tree size estimates
3152 obtained by SVTS are infinite.
3153 - new parameter branching/treemodel/fallbacknoprim defines the fallback strategy to use when no primal bound is known
3154 and thus SVTS would not be able to compute a tree size (it would be infinite).
3155 - new parameter branching/treemodel/smallpscost defines the value under which pscosts are considered too small to be
3156 the deciding factor for branching, in which case it may be better not to use the treemodel.
3157
3158- new parameters for symmetry handling constraint handlers to enforce that also non-model constraint are copied:
3159 - new parameter "constraints/orbisack/forceconscopy"
3160 - new parameter "constraints/orbitope/forceconscopy"
3161 - new parameter "constraints/symresack/forceconscopy"
3162
3163
3164### Data structures
3165
3166- small changes in constants of hash functions
3167- added fast 2-universal hash functions for two to seven 32bit elements with 32bit output
3168- extended SCIPpqueueCreate() by additional callback argument SCIP_DECL_PQUEUEELEMCHGPOS to catch position changes
3169- new methods SCIPpqueueDelPos() to delete elements at a specific position in the priority queue and SCIPpqueueFind() to
3170 find a specific position. It is recommended to track position changes using the new callback SCIP_DECL_PQUEUEELEMCHGPOS.
3171 In contrast, using SCIPpqueueFind() can be slow because it needs to compare the element it searches for
3172 with each slot in the queue.
3173
3174### Build system
3175
3176- The default value for DFLAGS in the non-cmake buildsystem has changed from -MM to -MMD. This will break the
3177 generation of depend.* files if that was done by a compiler call that relied on -MM. The new preferred way
3178 to handle compilation dependencies is to additionally use $(DFLAGS) when compiling the object files (.o) and
3179 to include the generated .d files in the Makefile, see also "Build system / Makefile" below.
3180
3181Unit tests
3182----------
3183 - new unit test for treemodel.
3184
3185Testing
3186-------
3187
3188 - fixed an issue that may have lead to wrong status reports in the evaluation scripts
3189
3190Build system
3191------------
3192
3193### Cmake
3194
3195- avoid problem with doubly defined object together with CPLEX
3196
3197### Makefile
3198
3199- Removed static object compilation dependency files (depend.*). If using a GCC compatible compiler, then dependency
3200 files are now dynamically created and updated during build. The new dependency files (*.d) reside next to each object
3201 file (.o) in the corresponding obj subdirectory.
3202- added support for building against Ipopt >= 3.13
3203- unify compiler switches for Intel compiler and avoid problem with doubly defined object together with CPLEX
3204
3205Fixed bugs
3206----------
3207
3208- fix and improve memory handling in symmetry computation
3209- fix shown number of applied conflicts in solving statistics
3210- fix wrongly skipping strong branching call and using old information if LP was solved with 0 iterations
3211- fix minor bug in cut score calculation
3212- fixed several bugs related to rounding locks of variables not being updated correctly
3213- small fix in cons_varbound.c to skip changing bounds of multi-aggregated variables in separation callback
3214- fixed issue in SCIPtightenVar* and SCIPinferVar* that occurs for small bound changes
3215- fixed rejecting minimal boundchange that changed sign of variable, even though SCIPisLb/UbBetter approved it
3216- fixed issue in generateCutNonConvex() which is triggered when adding quadratic constraints during the solving process
3217- fixed bug in freeing the reoptimization data if no problem exists
3218- fixed bug in SCIPreoptReleaseData() when freeing all stored constraints
3219- fixed bug when freeing the transformed problem via interactive shell if reoptimization is enabled
3220- fixed two issues related to (near-)redundant logicor constraints in presolving
3221- fixed counting of aggregations in XOR constraint handler
3222- fixed handling of unbounded solutions
3223- fixed update of LP size information when an LP error occured during probing
3224- handle special case of variable bound constraints during aggregating variables
3225- tighten sides of linear constraints before trying to upgrade them to more specialized constraints (knapsack, logic-or etc.) when calling SCIPupgradeConsLinear()
3226- fixed an issue in repair heuristic in the case of loose (noncolumn) variables
3227- allow user to correctly set heuristics/alns/(un)fixtol
3228- fixed an issue in heur_completesol which is triggered during bound widening of unbounded continuous variables
3229- fixed bug in cons_indicator if addopposite is true
3230- fixed bug in sepa_disjunctive: treat case that conflictgraph is empty
3231- added safety check in conversion to rational number to avoid overflow
3232- fixed bug in interval evaluation with power-operator in certain situations
3233- fixed behavior of SCIPmatrixCreate() regarding memory management and column generation
3234- SCIPmatrixCreate() returns complete=FALSE when locks do not add up
3235- fixed bug in sepa_oddcylce when variables are fixed
3236- fixed numerical issues related to tighter constraint sides in varbound constraint handler
3237- fixed update of watchedvars in logicor constraint handler in case of a restart during the tree
3238- fixed treatment of multi-aggregated variables in logicor constraint handler
3239- handle special case of redundant implications
3240- fixed numerical issue related to almost-0-values in pseudosolution conflict analysis
3241- fixed numerical issue related to very large greatest common dividers in linear constraint handler
3242- avoid using implications on multiaggregated variables when propagating implications
3243- fixed creation of (Lagrangian) variable bounds in the OBBT propagator
3244- fixed sorting of primal solutions
3245- fixed cleaning of clean buffer in conflict analysis
3246- avoid probing on variables with huge bounds in shift and propagate heuristic
3247- fix issue in printing solutions for variables that have been added by the dual sparsify presolver
3248- fix issue related to fixing redundant logic-or constraints after presolving
3249- fixed bug when parsing logic-or and and-constraints
3250- fixed wrong assert in updateLazyBounds()
3251- fixed bug in pricestore, which resulted in too many problem variables being added
3252- fixed bug in cons_knapsack where weight of clique was not reset after an infeasibility was detected
3253- fixed bug in presol_inttobinary which did not take into account that the aggregation could be rejected due to numerics
3254- fixed bug in debug solution mechanism in connection to variables created by presol_inttobinary
3255- fixed wrong indexing while undoing the implications from a redundant variable in SCIPshrinkDisjunctiveVarSet
3256- redundancy checks in SCIPnodeAddBoundinfer now take a possible change to an active variable into account
3257- fixed adding already added quadratic rows to NLP relaxation during solve
3258- fixed issue related to variable locks in the varbound constraint handler
3259- fixed bug in the quadratic constraint handler when changing infinite constraint sides
3260- fixed sorting of variables in linear constraint handler
3261- added additional checks to ensure numerical stability of dual proofs
3262- fixed a case when activities of a linear constraint got unreliable but where still used for reductions
3263- ensure that lhs <= rhs for linear constraints (without tolerances)
3264- make handling of read errors in SCIPfread() consistent between version with and without ZLIB
3265- correctly drop variable events in cons_indicator in restart
3266- fixed bug in cons_orbitope with upgrading of orbitope constraints
3267- additional checks in some presolvers for time limit being exceeded
3268- fixed bug in presolving of cons_varbound with multi-aggregated variables
3269- improve numerics in conflict analysis by using double-double arithmetic
3270- fixed bound acceptance condition to avoid inconsistencies
3271- fixed numerics in pseudoobj propagator by using double-double arithmetic
3272
3273Miscellaneous
3274-------------
3275
3276- modified display column for memory usage ("mem"), which reports the memory usage most of the time, but shows the creator name
3277 (heuristic, relaxation handler, LP relaxation, strong branching, pseudo solution) of every new incumbent solution. Together with this change,
3278 heuristic display characters have been unified to represent the type of the heuristic
3279 (diving, Large neighborhood search, propagation, etc.), see also type_heur.h.
3280- added assert that ensures that the locks of a variable have been decreased to 0 when it is freed
3281- added more output for completing a partial solution
3282- checks in debug mode that clean buffer memory is really clean when being freed are now disabled by default
3283- don't compute symmetries if reoptimization is enabled
3284- prefer integral values when fixing an almost-fixed continuous variable in the trivial presolver
3285- changed the name of the variable that is added by the OSiL reader to represent the quadratic or nonlinear parts of the objective function
3286- SCIP_EXPORT is now defined as __attribute__((__visibility__("default"))) if GCC and no SCIP config header is used
3287
3288@page RN6 Release notes for SCIP 6
3289
3290@section RN602 SCIP 6.0.2
3291*************************
3292
3293Features
3294--------
3295
3296- The abspower constraint handler now passes more accurate convexity
3297 information to the NLP relaxation.
3298
3299Examples and applications
3300-------------------------
3301
3302- added parsing functionality for optcumulative constraints in CIP format
3303
3304Interface changes
3305-----------------
3306
3307### Interfaces to external software
3308
3309- Updated the Mosek LP solver interface to support Mosek 9.0.
3310
3311Build system
3312------------
3313
3314### Cmake
3315
3316- new target to 'doc' to build documentation
3317- ctests now fail if parameter file not found
3318- add flag STATIC_GMP and improve GMP find module
3319- remove non-API functions from library (API functions use new macro SCIP_EXPORT)
3320- increase minimal required CMake version to 3.3
3321- correct paths and dependency information when installing SCIP
3322
3323Fixed bugs
3324----------
3325- fixed SCIP-Jack presolving bug that could lead to wrong results for Steiner arborescence problems
3326- fixed wrong unboundedness result in case not all constraints were already in the LP and enforcement was
3327 skipped because an optimal solution was found
3328- fixed wrong enforcement of constraints in the disjunction constraint handler
3329- fixed wrong behavior of concurrent solve ignoring initial solutions
3330- fixed bug in concurrent solve when problem was already solved in presolving
3331- aggregate non-artificial integer variable for XOR constraints with two binary variables and delete constraint
3332- copy the objective offset when copying the original problem
3333- fixed bug in SCIPlpiGetBInvARow in lpi_cpx using wrong size of resulting vector
3334- fixed quadratic runtime behavior in sepa_aggregation
3335- fixed statistics of separators
3336- improve numerical stability in varbound constraint handler by using double-double arithmetic
3337- fixed bug in propagation of dual proofs
3338- fixed bugs that arise for multiaggregated indicator variables by disallowing multiaggregation for them
3339- improve numerical stability in SCIPcomputeBilinEnvelope* by using double-double arithmetic
3340- fixed bug related to releasing pending bound changes in tree.c
3341- set STD FENV_ACCESS pragma to on in code that changes floating-point rounding mode
3342- disable GCC optimizations in main interval arithmetic code to prevent wrong optimizations
3343- fixed wrong assert in cons_xor concerning the variable type
3344- fixed different behavior of SCIPisLbBetter and SCIPisUbBetter between having NDEBUG defined or not
3345- correctly handle bound disjunctions in symmetry detection
3346- fixed issue in reliability branching related to the LP error flag not being reset
3347- fixed treatment of near-infinite bounds in shiftandpropagate's problem transformation
3348- fixed handling of infinite values in SCIPcomputeHyperplaneThreePoints()
3349- fixed comparisons of infinite values in heur_intshifting.c and heur_shifting.c
3350- fixed bug related to updating unprocessed cuts in the cutpool
3351- fixed bug related to enabling quadratic constraints during `CONSINITLP`
3352- add missing SCIP_EXPORT for functions used by GCG
3353- fixed memory leak and wrong initialization for trival cases in cons_symresack.c
3354- fixed bug with upgrading to packing/partitioning orbitopes
3355- fixed bug with the status while upgrading in presol_symbreak.c
3356- fixed wrong stage while clearing the conflict store
3357- fixed behavior of SCIPfixVar() by setting infeasible pointer to TRUE if fixval lies outside variable domain
3358- allow tightenVar() in SCIP_STAGE_PROBLEM stage
3359- fixed bug in cumulative constraint handler when separating the LP solution
3360- fixed issues with integer overflow in cumulative constraint handler
3361- fixed bug where the convexity of Benders' decomposition subproblems was checked even when users defined subproblem
3362 solving methods. Now, as per the documentation, the user must explicitly state whether the subproblem is convex
3363- fixed wrong indexing in heur_dualval
3364- fixed issue with basis status in SoPlex LPi
3365
3366Miscellaneous
3367-------------
3368
3369- statistics now output primal/dual bounds if objective limit is reached
3370- memory check in debug mode is now disabled by default
3371- message is now provided to the user to inform that automatic Benders' auxiliary variable lower bound computations are
3372 not activated when user defined subproblem solving methods are present
3373- corrected documentation of the primalgap in SCIP; describe when it will be infinite
3374
3375@section RN601 SCIP 6.0.1
3376*************************
3377
3378Features
3379--------
3380
3381- when using a debug solution every (multi-)aggregation will be checked w.r.t. this solution
3382
3383Performance improvements
3384------------------------
3385
3386- try greedy solution first before solving knapsack exactly using dynamic programming in SCIPsolveKnapsackExactly,
3387 compute greedy solution by weighted median selection.
3388- don't consider implied redcost by default in the reduced cost propagator
3389
3390Interface changes
3391-----------------
3392
3393### Deleted and changed API functions and macros
3394
3395- The preprocessor macro NO_CONFIG_HEADER now needs to be defined when
3396 including SCIP header files from a SCIP build or installation that
3397 has been build via the Makefile-only build system.
3398
3399- The following preprocessor macros have been renamed:
3400 WITH_ZLIB to SCIP_WITH_ZLIB, WITH_GMP to SCIP_WITH_GMP, WITH_READLINE
3401 to SCIP_WITH_READLINE, NO_SIGACTION to SCIP_NO_SIGACTION, NO_STRTOK_R
3402 to SCIP_NO_STRTOK_R, ROUNDING_FE to SCIP_ROUNDING_FE, ROUNDING_FP to
3403 SCIP_ROUNDING_FP, ROUNDING_MS to SCIP_ROUNDING_MS. Note, however, that
3404 the names of macros NO_RAND_R and NO_STRERROR_R have not been changed
3405 so far.
3406
3407### New API functions
3408
3409- SCIPhashmapInsertInt(), SCIPhashmapSetImageInt(), and SCIPhashmapGetImageInt() to use integer values as images in hashmaps
3410
3411### Command line interface
3412
3413- warn about coefficients in MPS files with absolute value larger than SCIP's value for infinity
3414
3415### Changed parameters
3416
3417- default clock type for timing is now wallclock
3418
3419Unit tests
3420----------
3421
3422- added unit tests for exact knapsack solving and (weighted) median selection algorithms
3423
3424Build system
3425------------
3426
3427### Cmake
3428
3429- add missing GMP dependency when compiling with SYM=bliss
3430- add DL library when linking to CPLEX to avoid linker errors
3431- new config.h header defining the current build configuration, e.g. SCIP_WITH_GMP
3432
3433Fixed bugs
3434----------
3435
3436- fixed handling of weights in cons_sos1 and cons_sos2 (NULL pointer to weights)
3437- fixed handling of unbounded LPs in SCIP and in several LPIs; added heuristic method to guess solution
3438- the STO reader is capable of handling scenarios defined using lower case "rhs"
3439- fixed OPB reader for instances without explicit plus signs
3440- correct dual solution values for bound constraints
3441- fixed recognition of variable with only one lock in cons_bivariate, cons_quadratic, and cons_nonlinear
3442- fixed update of constraint violations in solution repair in cons_bivariate, cons_quadratic, and cons_nonlinear
3443- print error message and terminate if matrix entries of a column are not consecutive in mps format
3444- fixed incorrect handling of fixed variables when transfer of cuts from LNS heuristic for Benders' decomposition
3445- fix returning local infeasible status by Ipopt interface if Ipopt finds problem locally infeasible
3446- skip attempt to apply fixings in linear constraint handler during solving stage as LP rows cannot change anymore
3447- fixed bug when reading >= indicator constraints in MPS format
3448- fix issue with nodes without domain changes if we ran into solution limit in prop_orbitalfixing
3449- fixed unresolved reference to CppAD's microsoft_timer() function on builds with MS/Intel compilers on Windows
3450- ignore implications added through SCIPaddVarImplication() that are redundant to global bounds also in the
3451 special case of an implication between two binary variables; also, use implications instead of cliques in the case
3452 of a binary implied variable with nonbinary active representative
3453- fixed bug with aggregated variables that are aggregated in propagation of cons_sos1
3454- fixed some special cases in SCIPselect/SCIPselectWeighted methods
3455- relaxed too strict assertion in Zirounding heuristic
3456- fixed the upgrade routine to XOR constraints: aggregate integer variable if its coefficient has the wrong sign
3457- fixed handling of nonartificial parity variables when deleting redundant XOR constraints
3458- earlier deletion of trivial XOR constraints (at most 1 operator left)
3459- fixed wrong hashmap accesses and added sanity check for the correct hashmap type
3460- avoid copying of unbounded solutions from sub-SCIPs as those cannot be checked completely
3461- corrected the output of the first LP value in case of branch-and-price
3462- fixed possible integer overflow, which led to wrong conclusion of infeasibility, in energetic reasoning of cons_cumulative.c
3463
3464Miscellaneous
3465-------------
3466
3467- do not scale linear constraints to integral coefficients
3468
3469@section RN600 SCIP 6.0.0
3470*************************
3471
3472Features
3473--------
3474
3475- new diving heuristic farkasdiving that dives into the direction of the pseudosolution and tries to construct Farkas-proofs
3476- new diving heuristic conflictdiving that considers locks from conflict constraints
3477- restructuring of timing of symmetry computation that allows to add symmetry handling components within presolving
3478- `lp/checkstability` is properly implemented for SoPlex LPI (spx2)
3479- new branching rule lookahead that evaluates potential child and grandchild nodes to determine a branching decision
3480- limits on the number of presolving rounds a presolver (maxrounds) or propagator/constraint handler (maxprerounds)
3481 participates in are now compared to the number of calls of the particular presolving method, not the number of
3482 presolving rounds in general, anymore
3483- new miscellaneous methods for constraints that have a one-row linear representation in pub_misc_linear.h
3484- a Benders' decomposition framework has been added. This framework provides the functionality for a user to solve a
3485 decomposed problem using Benders' decomposition. The framework includes classical optimality and feasibility cuts,
3486 integer optimality cuts and no-good cuts.
3487- add statistic that presents the number of resolves for instable LPs
3488- new readers for stochastic programming problems in SMPS format (reader_sto.h, reader_smps.h)
3489
3490Performance improvements
3491------------------------
3492
3493- cuts generated from certain quadratic constraints with convex feasible region are now global
3494- performance improvements for Adaptive Large Neighborhood Search heur_alns.c
3495 + all neighborhoods now start conservatively from maximum fixing rate
3496 + new default parameter settings for bandit selection parameters
3497 + no adjustment of minimum improvement by default
3498- improved bound tightening for some quadratic equations
3499- constraint handler checking order for original solutions has been modified to check those with negative check priority
3500 that don't need constraints after all other constraint handlers and constraints have been checked
3501- deactivate gauge cuts
3502
3503Examples and applications
3504-------------------------
3505
3506- new example `brachistochrone` in CallableLibrary examples collection; this example implements a discretized model to
3507 obtain the trajectory associated with the shortest time to go from point A to B for a particle under gravity only
3508- new example `circlepacking` in CallableLibrary examples collection; this example models two problems about packing
3509 circles of given radii into a rectangle
3510- new price-and-branch application for the ringpacking problem
3511- new stochastic capacitated facility location example demonstrating the use of the Benders' decomposition framework
3512
3513Interface changes
3514-----------------
3515
3516### New and changed callbacks
3517
3518- added parameter locktype to `SCIP_DECL_CONSLOCK` callback to indicate the type of variable locks
3519
3520### Deleted and changed API functions
3521
3522- Symmetry:
3523 + removed function SCIPgetTimingSymmetry() in presol_symmetry.h since this presolver does not compute symmetries independent
3524 of other components anymore
3525 + additional argument `recompute` to SCIPgetGeneratorsSymmetry() to allow recomputation of symmetries
3526
3527- Random generators:
3528 + the seed of SCIPinitializeRandomSeed() is now an unsigned int
3529 + the seed of SCIPsetInitializeRandomSeed() is now an unsigned int and it returns an unsigned int
3530 + new parameter for SCIPcreateRandom() to specify whether the global random seed shift should be used in the creation of
3531 the random number generator
3532
3533- Miscellaneous:
3534 + additional arguments `preferrecent`, `decayfactor` and `avglim` to SCIPcreateBanditEpsgreedy() to choose between
3535 weights that are simple averages or higher weights for more recent observations (the previous default).
3536 The last two parameters are used for a finer control of the exponential decay.
3537 + functions SCIPintervalSolveUnivariateQuadExpression(), SCIPintervalSolveUnivariateQuadExpressionPositive(), and
3538 SCIPintervalSolveUnivariateQuadExpressionPositiveAllScalar() now take an additional argument to specify already
3539 existing bounds on x, providing an entire interval ([-infinity,infinity]) gives previous behavior
3540
3541### New API functions
3542
3543- SCIPintervalSolveUnivariateQuadExpressionNegative()
3544- SCIPvarGetNLocksDownType() and SCIPvarGetNLocksUpType()
3545- SCIPaddConsLocksType()
3546- SCIPconsIsLockedTypePos(), SCIPconsIsLockedTypeNeg(), SCIPconsIsLockedType(), SCIPconsGetNLocksTypePos() and SCIPconsGetNLocksTypeNeg()
3547- SCIPstrncpy(), a safe version of strncpy()
3548
3549### Changed parameters
3550
3551- Removed parameters:
3552 - `heuristics/alns/stallnodefactor` as the stall nodes are now controlled directly by the target node limit within the heuristic
3553 - `presolving/symmetry/computepresolved` since this presolver does not compute symmetries independent of other components anymore
3554 - `separating/maxincrounds`
3555
3556### New parameters
3557
3558- `lp/checkfarkas` that enables the check of infeasibility proofs from the LP
3559- `heuristics/alns/unfixtol` to specify tolerance to exceed the target fixing rate before unfixing variables, (default: 0.1)
3560- `propagating/orbitalfixing/symcomptiming` to change the timining of symmetry computation for orbital fixing
3561- `lp/alwaysgetduals` ensure that the dual solutions are always computed from the recent LP solve
3562- `display/relevantstats` indicates whether the small relevant statistics are displayed at the end of solving
3563- `propagating/orbitalfixing/performpresolving` that enables orbital fixing in presolving
3564- `presolving/symbreak/addconsstiming` to change the timining of symmetry computation for symmetry handling inequalities
3565- `propagating/orbitalfixing/enabledafterrestarts` to control whether orbital fixing is enabled after restarts
3566- `benders/∗` new submenu for Benders' decomposition related settings. This includes the settings related to the
3567 included Benders' decompositions and the general Benders' decomposition settings.
3568- `benders/<decompname>/benderscuts/∗` submenu within each included Benders' decomposition to control the Benders'
3569 decomposition cuts. The cuts are added to each decomposition separately, so the setting are unique to each
3570 decomposition.
3571
3572### Data structures
3573
3574- new enum `SCIP_LOCKTYPE` to distinguish between variable locks implied by model (check) constraints (`SCIP_LOCKYPE_MODEL`)
3575 and variable locks implied by conflict constraints (`SCIP_LOCKYPE_CONFLICT`)
3576- expression interpreter objects are now stored in the block memory
3577
3578Deleted files
3579-------------
3580
3581- removed presolving plugin presol_implfree
3582- separated scip.c into several smaller implementation files scip_*.c for better code overview; scip.c was removed,
3583 but the central user header scip.h remains, which contains includes of the separated headers
3584
3585Fixed bugs
3586----------
3587
3588- fixed bug in gcd reductions of cons_linear regarding an outdated flag for variable types
3589- fixed bug in heur_dualval regarding fixing routine for integer variables
3590- suppress debug solution warnings during problem creation stage
3591- fixed check for activated debugging solution in components constraint handler
3592- fixed potential bug concerning solution linking to LP in SCIPperformGenericDivingAlgorithm()
3593- fixed reward computation in ALNS on continuous, especially nonlinear, problems
3594- fixed bug in freeing reoptimization data if problem was solved during presolving
3595- fixed check of timing in heur_completesol
3596- fixed wrong propagation in optcumulative constraint handler
3597- fixed non-deterministic behavior in OBBT propagator
3598- don't disable LP presolving when using Xpress as LP solver
3599- fixed possible `NULL` pointer usage in cons_pseudoboolean
3600- ensured that SCIPgetDualbound() returns global dual bound instead of the dual bound of the remaining search tree
3601- fixed rare division-by-zero when solving bivariate quadratic interval equation
3602- use total memory for triggering memory saving mode
3603- fix parsing of version number in the CMake module for Ipopt
3604- fixed handling of implicit integer variables when attempting to solve sub-MIP in nlpdiving heuristic
3605- added workaround for bug when solving certain bivariate quadratic interval equations with unbounded second variable
3606- fixed bug with releasing slack variable and linear constraint in cons_indicator
3607- fixed problem when writing MPS file with indicator constraints with corresponding empty linear constraints
3608- fixed bug in heur_vbound triggered when new variables were added while constructing the LP
3609- fixed bug with unlinked columns in SCIProwGetLPSolCutoffDistance()
3610
3611Miscellaneous
3612-------------
3613
3614- updated CppAD to version 20180000.0
3615- remove LEGACY mode, compiler needs to be C++11-compliant
3616
3617@page RN5 Release notes for SCIP 5
3618
3619@section RN501 SCIP 5.0.1
3620*************************
3621
3622Features
3623--------
3624
3625- SCIP executable handles the `SIGTERM` signal. If the process receives a `SIGTERM`, SCIP terminates the solution process with a
3626 new `SCIP_STATUS` code `SCIP_STATUS_TERMINATE` and displays all relevant statistics before exiting.
3627- add number of conflict constraints found by diving heuristics to statistics
3628- allow output of lower bounds for visualization
3629- added symmetry detection for linking constraints
3630
3631Performance improvements
3632------------------------
3633
3634- disable disaggregation of quadratic constraints by changing the default for `constraints/quadratic/maxdisaggrsize` to 1
3635 (disaggregation can still be very helpful on some instances, but also seems hurtful on others)
3636
3637- Cuts:
3638 - increased threshold when to scale up cuts that are generated by nonlinear constraint handlers
3639 - test additional scaling factors in CMIR cut generation heuristic
3640 - cleaned up implementation of the cut selection procedure and added new cut quality measure
3641 - use random tie-breaking in cut selection
3642
3643Interface changes
3644-----------------
3645
3646### New API functions
3647
3648- new methods SCIPtryTerminate() and SCIPterminated() in scip/interrupt.h for handling of SIGTERM signals.
3649- new method SCIPselectCuts() to run SCIP's cut selection procedure on a given array of cuts
3650
3651### Changed parameters
3652
3653- rename parameter `constraints/orbisack/orbisack/coverseparation` to `constraints/orbisack/coverseparation`
3654
3655### New parameters
3656
3657- `visual/displb` that enables output of lower bounds for visualization
3658- `presolving/symmetry/displaynorbitvars` (whether we display the number of affected variables in the statistics)
3659- `separating/efficacyfac` to change the weight of the efficacy in cut score calculation
3660- `separating/dircutoffdistfac` to change the weight of the directed cutoff distance in cut score calculation
3661
3662### Data structures
3663
3664- new `SCIP_STATUS` code `SCIP_STATUS_TERMINATE` in scip/interrupt.h for handling of SIGTERM signals.
3665
3666Unit tests
3667----------
3668
3669- expanded unit tests of the lpis
3670- added check to unit tests that problem is not solved after every change
3671
3672Fixed bugs
3673----------
3674
3675- fixed LP status to unsolved when marking LP to be resolved if objective limit has changed
3676- copy parameter settings to sub-SCIPs in SCIPcopyLargeNeighborhoodSearch() also when copying only LP rows
3677- fixed a check for fixed variables in Binpacking example
3678- generate deprecation warnings when using SCIPaddCut
3679- fix bug in sepa_gomory if cut is a bound change
3680- fixed handling of infinite bounds in cons_sos1
3681
3682- Constraints:
3683 - fixed bug while scaling linear constraints
3684 - don't delete conflict constraints that were transformed into model constraints during a restart
3685 - fixed treatment of variable aggregations in knapsack constraint handler that led to wrong propagations
3686
3687- LP Interface:
3688 - fixed LPI status after changing objective in lpi_cpx, lpi_grb, lpi_xprs, lpi_msk
3689 - fixed and unified asserts in LPIs
3690 - retrieve interior solution instead of (possibly non-existing) basic solution from mosek after using barrier without crossover in lpi_msk
3691 - fixed bug with `NULL` pointer handling in LPIs
3692
3693- Heuristics:
3694 - fixed wrong cast in LP iteration limit computation in proximity search heuristic
3695 - fixed check for time limit in heur_nlpdiving
3696 - improved numerics and fixed stop criterion in zirounding heuristic
3697
3698@section RN500 SCIP 5.0.0
3699*************************
3700
3701Features
3702--------
3703
3704- new numerical solution violations get printed when checksol is called
3705- added analysis of the clique table which identifies possible aggregations via the search for
3706 strongly connected components and may detect infeasible assignments on the way
3707- added macros to do computations with a higher precision by using double-double arithmetic
3708- extended conflict analysis by analyzing dual solutions of boundexceeding LPs
3709- revised internal debugging mechanism to check against a user given debug solution (debug.h)
3710
3711- Heuristic:
3712 - add new heuristic MPEC that solves a MPEC reformulation of a mixed-binary nonlinear problem by regularized NLP reformulations
3713 - new primal heuristic ALNS that orchestrates eight different LNS heuristics adaptively
3714 using algorithms for the multi-armed bandit problem
3715 - three bandit selection algorithms to face sequential decision problems under uncertainty
3716
3717- Presolving and symmetry:
3718 - added presol_symmetry.c for computing and storing symmetry information of a MIP
3719 - added presol_symbreak.c to detect special symmetry structures and to add symmetry handling constraints
3720 - SCIP can now automatically detect and compute symmetries in MIPs (if a graph automorphism code is linked in)
3721 - added cons_symresack.c to handle permutation symmetries in a binary programs via inequalities and propagation
3722 - added cons_orbisack.c to handle special permutation symmetries in a binary programs via inequalities and propagation
3723 - cons_orbitope.c can now handle full orbitopes as well
3724
3725- Propagator:
3726 - added new propagator orbital fixing
3727 - utilizing linear inequalities to compute stronger linearizations for bilinear terms; the inequalities are computed in
3728 the OBBT propagator
3729
3730- Cuts:
3731 - added API for aggregating rows for generating cuts which uses double-double arithmetic internally
3732 - added filtering of parallel cuts in the cut pool
3733
3734- Plugins:
3735 + added new plugin type `table` for adding user-defined statistics tables
3736 + new presolving plugin presol_sparsify that tries to cancel nonzero coefficients in linear constraints by adding
3737 multiples of linear equalities
3738
3739Performance improvements
3740------------------------
3741
3742- use disjoint set to reduce peak memory usage and time to compute of clique table connectedness information
3743- add and use RESTRICT macro for some pointers
3744- improved the implementation of SCIPvarGetActiveRepresentatives
3745- speed-up reverse propagation
3746- removed bestrelaxsol and directly access relaxation solution instead to decrease overhead when using relaxation handlers
3747- for fast presolving emphasis, disable use of implications in logicor presolving
3748- use limit on the total number of nonzeros added to the clique table during the greedyCliqueAlgorithm of cons_knapsack.c
3749- revised disaggregation of quadratic constraints: the number of created constraints can now be controlled and the
3750 disaggregated constraints are scaled in order to increase numerical accuracy
3751- disabled reformulation of products of a binary variable with a linear term that does not solely involve binary variables
3752- speed up creation of LP in the computation of relative interior points
3753- improved dual ray analysis
3754- drop events of disabled linear constraints to reduce event processing effort
3755
3756- Separation:
3757 - new implementation of zerohalf separator
3758 - enabled cutting plane separation in the tree
3759 - improved cut selection and management
3760 - improved cut post-processing: apply coefficient tightening, enforce maximal dynamism
3761
3762- Heuristics:
3763 - improved selection of rows in CMIR aggregation heuristic
3764 - generate lifted flowcover cuts in CMIR cut generation heuristic
3765 - faster implementation of CMIR cut generation heuristic
3766 - use LP solution polishing during probing and diving mode to activate it during many primal heuristics; remains disabled
3767 during strong branching and OBBT
3768 - improved versions of the clique and variable bound pre-root heuristics that are often able to fix many more variables
3769
3770Interface changes
3771-----------------
3772
3773### New and changed callbacks
3774
3775- New types:
3776 - added new abstract selection algorithm `SCIP_BANDIT` together with callbacks
3777 - added new types for symmetry handling
3778
3779- NLP interface:
3780 - dropped NLP termination status `SCIP_NLPTERMSTAT_UOBJLIM`
3781
3782- NLP callbacks:
3783 - added parameter `objval` to `SCIP_DECL_NLPIGETSOLUTION` for returning the optimal objective value (can be set to `NULL`)
3784
3785- Separation callbacks:
3786 - added parameter `allowlocal` to `SCIP_DECL_SEPAEXECLP` and `SCIP_DECL_SEPAEXECSOL` to switch generation of locally valid cuts
3787 - added parameter `dstatssize` to `SCIP_DECL_NLPIDELVARSET` and `SCIP_DECL_NLPIDELCONSSET`
3788
3789### Deleted and changed API functions
3790
3791- Branching rules:
3792 - removed parameter `allowaddcons` from SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), and
3793 SCIPincludeBranchruleRelpscost()
3794
3795- Constraint Handlers:
3796 - generalized SCIPcreateConsOrbitope() and SCIPcreateConsBasicOrbitope() method to three orbitope types (full, partitioning, packing)
3797
3798- Cutting plane separation methods:
3799 - changed function signature of SCIPcalcMIR()
3800 - changed function signature of SCIPcalcStrongCG()
3801 - new method SCIPaddRow() to replace deprecated SCIPaddCut()
3802 - removed parameter `scaling` from SCIPgetRowprepViolation()
3803 - added parameter `allowlocal` to SCIPseparateSol()
3804
3805- LP interface:
3806 - replaced LP parameters `SCIP_LPPARAM_LOBJLIM` and `SCIP_LPPARAM_UOBJLIM` by `SCIP_LPPARAM_OBJLIM`
3807
3808- NLP interface:
3809 - SCIPnlpStatisticsCreate() and SCIPnlpStatisticsFree() now require a pointer to blockmemory as parameter
3810 - added parameter `objval` to SCIPnlpiGetSolution() of NLPIs for returning the optimal objective value (can be set to `NULL`)
3811 - added parameter `varnameslength` to SCIPexprParse()
3812 - added parameter `dstatssize` to SCIPnlpiDelVarSet() and SCIPnlpiDelConsSet()
3813 - added modifier const to `exprtree` parameter of SCIPnlpiChgExprtree()
3814
3815- Primal heuristics:
3816 - SCIPheurPassIndicator() has a new parameter which allows to pass the objective of the solution
3817
3818- Relaxator methods:
3819 - added parameter `includeslp` to SCIPmarkRelaxSolValid(), SCIPsetRelaxSolVals() and SCIPsetRelaxSolValsSol();
3820 - removed parameter `includeslp` from SCIPrelaxCreate() and SCIPincludeRelax()
3821 - removed functions SCIPrelaxIncludesLp() and SCIPrelaxSetIncludesLp()
3822 - replaced method SCIPgetRelaxFeastolFactor() by SCIPrelaxfeastol() and added SCIPchgRelaxfeastol()
3823
3824- Misc:
3825 - changed return type of SCIPcliqueGetId() from `int` to `unsigned int`
3826 - removed SCIPvarGetCliqueComponentIdx(); the connectedness information of the clique table is now stored as a
3827 `SCIP_DISJOINTSET` member of the clique table and cannot be publicly accessed
3828 - added parameter `copytables` to SCIPcopyPlugins()
3829 - SCIPsolveParallel() has been deprecated, use the new method SCIPsolveConcurrent() instead
3830 - allowed SCIPgetNConss() in stage `SCIP_STAGE_INITSOLVE`
3831
3832### New API functions
3833
3834- SCIPaddRow() to replace deprecated SCIPaddCut()
3835- methods to display linear constraint classification types; use SCIPclassifyConstraintTypesLinear()
3836 after reading a problem to classify linear constraint types
3837- public methods SCIPvariableGraphBreadthFirst() and SCIPvariableGraph{Create,Free}() to
3838 perform breadth-first search on the variable constraint graph used by the GINS and ALNS heuristics
3839- SCIPsetProbingLPState() to install given LP state and/or norms at the current probing node
3840- SCIPbranchcandGetLPMaxPrio() and SCIPbranchcandGetExternMaxPrio() to query the maximal branching priority of given
3841 branching candidates; also added SCIPbranchcandGetNPrioLPCands() to access the number of LP candidates with this priority.
3842- SCIPupdateSolIntegralityViolation(), SCIPupdateSolBoundViolation(), SCIPupdateSolLPRowViolation(),
3843 SCIPupdateSolConsViolation() and SCIPupdateSolLPConsViolation() for updating numerical solution violations, as well as
3844 SCIPactivateSolViolationUpdates() and SCIPdeactivateSolViolationUpdates() for activating/deactivating violation updates globally
3845- SCIPsetSubscipDepth() to set the depth of SCIP as a copied subproblem during problem stage
3846- SCIPdivesetGetNSols() to query the number of found solutions from a diveset.
3847- SCIPnextafter() that wraps different nextafter methods to return the next representable value after a given value
3848- SCIPlinConsStats{Create,Free,GetTypeCount,GetSum}() and SCIPprintLinConsStats() to work with linear constraint classification through the C API
3849- SCIPgetRowNumIntCols() that returns the number of integer columns in a row
3850- SCIPsetSlackVarUb() to control upper bound of slack variable in cons_indicator
3851
3852- Data structures:
3853 - methods SCIPrandomCreate() and SCIPrandomFree() are no longer public and should be replaced by SCIPcreateRandom() and
3854 SCIPfreeRandom(), respectively (the new methods respect the global parameter `randomization/randomseedshift` automatically)
3855 - methods SCIPdigraphCreate() and SCIPdigraphCopy() are no longer public and should be replaced by SCIPcreateDigraph() and
3856 SCIPcopyDigraph(), respectively, which receive a SCIP argument and are more robust towards future interface changes
3857
3858- Bilinear:
3859 - SCIPgetAllBilinearTermsQuadratic() to access data of all existing bilinear terms in quadratic constraints
3860 - SCIPaddBilinearIneqQuadratic() to propose an inequality with two variables that appear in a bilinear term
3861 - SCIPcomputeBilinEnvelope{1,2}() to compute a linearization of a bilinear term when considering at most two linear inequalities
3862
3863- Clique:
3864 - SCIPcliqueGetIndex() which returns the unique identifier for the given clique
3865 - SCIPgetNCliquesCreated() which returns the number of cliques created so far
3866
3867- Cutting plane separation methods:
3868 - SCIPisCutNew() that returns whether a cut is already present in the global cut pool
3869 - SCIPgetSepaMinEfficacy() to access separating/minefficacy(root)
3870
3871- Interfaces:
3872 - interface methods to create and use bandit algorithms implemented as SCIP core plugins
3873 - interface methods for aggregating rows and computating MIP cuts, see cuts.h
3874 - interface method SCIPsetRandomSeed() to (re)set a random number generator seed
3875
3876### Command line interface
3877
3878- new interactive shell functionality to display linear constraint classification types;
3879 use `display linclass` after reading a problem to classify linear constraint types
3880- new command line parameter `-r` to pass a nonnegative integer as random seed.
3881
3882### Interfaces to external software
3883
3884- added interface to the NLP solver WORHP
3885- added interface to the NLP solver FilterSQP
3886- added interface to graph automorphism algorithms in `src/symmetry/` (initially only to BLISS)
3887- unify handling of objective limit in LPIs by replacing LPI parameters `SCIP_LPPAR_LOBJLIM` and `SCIP_LPPAR_UOBJLIM` by
3888 `SCIP_LPPAR_OBJLIM`
3889- dropped support for MOSEK < 7.0.0.0
3890
3891### Changed parameters
3892
3893- changed and removed several parameters for zerohalf separator
3894- replaced `constraints/quadratic/disaggregate` by `constraints/quadratic/maxdisaggrsize` to bound
3895 the total number of created constraints when disaggregating a quadratic constraint
3896- new value 3 for parameter `lp/solutionpolishing` to enable LP polishing only during probing and diving mode
3897- parameter `conflict/useboundlp` has new values `d` (only dual solution analysis) and `b` (both, conflict and dual solution analysis)
3898
3899- Heuristics:
3900 - fixed typo `heuristics/completesol/maxunkownrate` has changed to `heuristics/completesol/maxunknownrate`
3901 - replaced parameter `heuristics/{clique,vbounds}/minfixingrate` by `heuristics/{clique,vbounds}/minintfixingrate` and
3902 `heuristics/{clique,vbounds}/minmipfixingrate`, which check the fixing rate before LP solving and after sub-MIP presolve
3903
3904- Separating:
3905 - parameter `separating/maxstallrounds` only applies to nodes in the tree (not the root node, anymore); use the new
3906 parameter `separating/maxstallroundsroot` for the root node
3907 - moved parameters for flowcover and cmir separators to `separating/aggregation`
3908
3909- Removed parameters:
3910 - `constraints/{abspower,bivariate,nonlinear,quadratic,soc}/scaling`
3911 - `constraints/{abspower,bivariate,quadratic,nonlinear}/mincutefficacysepa`
3912 - `constraints/{abspower,bivariate,quadratic,nonlinear}/mincutefficacyenfofac`
3913 - `constraints/soc/minefficacy`
3914 - `conflict/usemir`
3915 - `conflict/prefermir`
3916 - `heuristics/clique/{multiplier,initseed}`
3917 - `separating/feastolfac`
3918 - `separating/orthofac`
3919 - `separating/cgmip/allowlocal` (use parameter passed to separation callback instead)
3920 - `separating/{gomory,strongcg}/maxweightrange`
3921
3922### New parameters
3923
3924- `conflict/prefinfproof` (prefer infeasibility proof to boundexceeding proof)
3925- `conflict/sepaaltproofs`
3926- `constraints/indicator/maxsepanonviolated` to stop separation after separation of non violated cuts
3927- `constraints/orbisack/coverseparation` (whether orbisack cover inequalities should be separated)
3928- `constraints/orbisack/orbiSeparation` (whether facet defining inequalities for orbisack should be separated)
3929- `constraints/orbisack/coeffbound` (maximal value of coefficients in orbisack facet inequalities)
3930- `constraints/orbisack/checkpporbisack` (check whether orbisacks can be strengthened by packing/partitioning constraints)
3931- `constraints/orbisack/checkalwaysfeas` (whether conscheck returns always `SCIP_FEASIBLE`)
3932- `constraints/orbitope/checkpporbitope` (check packing/partitioning orbitopes)
3933- `constraints/orbitope/sepafullorbitope` (separate full orbitopes)
3934- `constraints/orbitope/checkalwaysfeas` (whether conscheck returns always `SCIP_FEASIBLE`)
3935- `constraints/quadratic/{usebilinineqbranch,minscorebilinterms,bilinineqmaxseparounds}`
3936- `constraints/quadratic/disaggrmergemethod` to change the strategy of how to merge independent blocks of quadratic constraints
3937- `constraints/quadratic/mincurvcollectbilinterms` to change the minimal curvature of constraints
3938 to be considered when returning bilinear terms to other plugins
3939- `constraints/quadratic/binreformbinaryonly` to disable reformulation of products of binary and non-binary variables
3940- `constraints/symresack/ppsymresack` (check whether symresacks can be strengthend by packing/partitining constraints)
3941- `constraints/symresack/checkalwaysfeas` (whether conscheck returns always `SCIP_FEASIBLE`)
3942- `expbackoff` to all separators which increases the frequency exponentially over the depth in the tree
3943- `heuristics/completesol/{beforepresol,maxlpiter,maxcontvars}`
3944- `heuristics/{clique,vbounds}/maxbacktracks` to limit the number of backtracks in the fix-and-propagate phase
3945- `heuristics/{clique,vbounds}/uselockfixings` to enable fixing of additional variables based on variable locks
3946- `heuristics/vbounds/{feasvariant,tightenvariant}` to specify the fixing variants used by the vbounds heuristic
3947- `lp/refactorinterval` to change the refactorization interval of the LP solver
3948- `misc/debugsol` to specify a debug solution that should be checked during the solve
3949- `misc/usesymmetry` to determine whether symmetry handling should be used
3950- `presolving/symbreak/conssaddlp` (whether symmetry handling inequalities should be added to the LP)
3951- `presolving/symbreak/addsymresacks` (whether symresacks should be used to handle symmetries)
3952- `presolving/symbreak/computeorbits` (whether symmetry orbits should be computed)
3953- `presolving/symbreak/detectorbitopes` (whether it should be checked if some symmetries can be handled by orbitopes)
3954- `presolving/symmetry/computepresolved` (Whether symmetries are computed after presolving)
3955- `presolving/symmetry/maxgenerators` (maximal number of generators generated by symmetry detection)
3956- `presolving/symmetry/checksymmetries` (whether validity of computed symmetries should be verified)
3957- `propagating/obbt/{itlimitfactorbilin,minnonconvexity,createbilinineqs}`
3958- `propagating/vbounds/minnewcliques` to specify the minimum number of new cliques to trigger another clique table analysis
3959- `propagating/vbounds/{maxcliquesmedium,maxcliquesexhaustive}` to limit the number of cliques relative to the
3960 number of binary variable for performing clique table analysis
3961- `separating/maxincrounds`
3962- `separating/maxlocalbounddist`, `separating/maxcoefratio` and `separating/intsupportfac`
3963- if PaPILO >= 2.1: `presolving/milp/maxbadgesizepar` to limit the maximal badge size if PaPILO is called in parallel mode
3964- if PaPILO >= 2.1: `presolving/milp/maxbadgesizeseq` to limit the maximal badge size if PaPILO is called in sequential mode
3965
3966### Data structures
3967
3968- new type `SCIP_Shortbool` (equal to uint8_t) for storing Boolean values in a more compact manner
3969- new disjoint set data structure `SCIP_DISJOINTSET` to incrementally update connectedness information for a graph on nodes {0,...,n-1}
3970- new red black tree data structure defined in `src/scip/rbtree.{c,h}`
3971- new object `SCIP_LINCONSSTATS`, see type_cons.h, to work with linear constraint classification through the C API
3972- added new type `SCIP_TABLE` together with callbacks to output SCIP statistics
3973
3974Unit tests
3975----------
3976
3977- added several tests for the LP interface
3978- added tests that cover nonempty linear constraint classification types
3979- added tests for the double double arithmetic, the new red black tree data structure, the nlpi, obbt, interval arithmetics,
3980 symmetry computation, objective function changes in probing, computing envelopes of bilinear function, relaxation enforcement
3981
3982Build system
3983------------
3984
3985- added interface to the NLP solver WORHP; set `WORHP=true` in order to link to WORHP
3986- added interface to the NLP solver FilterSQP; set `FILTERSQP=true` in order to link to FilterSQP
3987
3988### Cmake
3989
3990- added support for sanitizers in debug mode and options SANITIZE_ADDRESS, SANITIZE_MEMORY, SANITIZE_UNDEFINED, SANITIZE_THREAD
3991- added option SYM to specify which graph automorphism package (bliss, none) should be used, if available
3992- disable non-standard compliant floating point optimizations in combination with intel compilers
3993- improve Visual Studio compilation
3994- only accept IPOPT version 3.12.0 or higher
3995- preserve correct rpath in library (e.g. path to libipopt) when installing
3996
3997### Makefile
3998
3999- new flag `DEBUGSOL={true,false}` to enable checks against a user given debug solution
4000- added flag SYM to specify which graph automorphism package (bliss, none) should be used
4001- default value for ZIMPL in the Makefile is now `false`
4002
4003Fixed bugs
4004----------
4005
4006- fix wrong statistic display of diving leaf solutions
4007- fixed order of SCIPcalcCliquePartition() in corner case where no cliques are available
4008- fix treatment of infinite lower bound in proximity objective cutoff
4009- fixed minor issue in expression graph simplification
4010
4011- Separator:
4012 - fix linear knapsack relaxation during separation if a binary variable does not have a solution value in [0,1].
4013 - fixed potential ressource leaks in SCIPsolveLinearProb(), expr.c, sepa_eccuts, cons_cumulative.c, cons_nonlinear.c
4014 - fixed bug in cons_orbitope.c, where wrong terminating index in separation of SCIs was used
4015 - fixed wrong mapping of permuted basis indices in gomory separator
4016 - fixed integer objective separator for objective scales < 1
4017
4018- Presolver:
4019 - fixed numerical issues in boundshift presolver when aggregating integer variables
4020 - fixed aggregation of variables in boundshift presolver that contain large variable bounds
4021
4022- Heuristic:
4023 - fixed bug in feasibility pump heuristic when switching on the `usefp20` parameter
4024 - fixed handling of LOOSE variables in locks heuristic
4025 - fixed creation of conflicts in clique heuristic for incomplete LPs
4026
4027- Constraints:
4028 - fixed bug in mps reader. Reader now prints `OBJSENSE` section and tries to generate unique names of constraints
4029 - fixed upgrade to a varbound constraint if abspower constraint contains a multi-aggregated variable
4030 - fixed several bugs related to hashing of constraints/rows in cutpool.c and cons_linear.c
4031 - fixed registration of almost fixed nonlinear variables in abspower constraints
4032
4033- Propagator:
4034 - fixed releasing of variables in the genvbounds propagator in case the problem could be solved during presolving of a restart
4035 - fixed numerical issues in bound widening of variable bound constraint handler and vbound propagator during conflict analysis
4036
4037@page RN4 Release notes for SCIP 4
4038
4039@section RN401 SCIP 4.0.1
4040*************************
4041
4042Features
4043--------
4044
4045- added parsing functionality to cardinality constraint handler for CIP format
4046- allow to relax objective limit in reoptimization in presolved stage
4047- suppress excessive printing about numerical troubles in LP on default verblevel (high)
4048
4049Performance improvements
4050------------------------
4051
4052- only accept passed improving solutions in heur_indicator
4053- add and use RESTRICT macro for some pointers
4054- sorting of parents and children for some expression types is now independent of memory layout
4055
4056- Constraints:
4057 - widened a bottleneck in simplifying long signomial sums in a nonlinear constraint
4058 - unified and extended code that improves numerics of cuts generated by nonlinear constraint handlers
4059
4060- Separation:
4061 - stop separation in cons_indicator after maxsepanonviolated many non violated separated cuts
4062 - improve choice of variable to enter support in separation of cons_indicator
4063
4064Interface changes
4065-----------------
4066
4067### New API functions
4068
4069- SCIPvalidateSolve() to compare solving result with an external primal and dual reference value
4070- SCIPisObjChangedProbing() to check whether the objective function has changed during probing mode
4071- SCIPgetDualSolVal() to get the dual solution value of a constraint
4072- SCIPisLPPrimalReliable() and SCIPisLPDualReliable() to check whether the current primal / dual LP solution
4073 were successfully checked for feasibility
4074
4075### Command line interface
4076
4077- New option in the interactive shell to validate the solution against an external primal and dual reference value
4078- added command line option `-o` and command `validatesolve` in interactive shell
4079 to validate the solution against an external primal and dual reference value.
4080
4081### Interfaces to external software
4082
4083- Updated and new interfaces to Mosek 8.1, GAMS and Gurobi
4084- new LP interface to Glop (Google OR tools); CMake only
4085
4086### Changed parameters
4087
4088- renamed parameter `heuristics/completesol/maxunkownrate` to `heuristics/completesol/maxunknownrate`
4089
4090Testing
4091-------
4092
4093- add options to make test target (see Makefile section)
4094
4095Build system
4096------------
4097
4098### Cmake
4099
4100- New CMake build system alongside the usual Makefile setup
4101
4102### Makefile
4103
4104- added make options for specifying EXECUTABLE and OUTPUTDIR variables for the make test target
4105
4106Fixed bugs
4107----------
4108
4109- fixed unintended behavior of interrupt signal handler inside SCIP copies
4110- fixed uninitialized values in SCIP's digraph data structure after calling SCIPdigraphResize()
4111- fixed issue related to SCIPcreateFiniteSolCopy() not being able to remove all infinite fixings
4112- fixed issue in SCIPcopyLimits() w.r.t. soft time limit
4113- fixed bug in dynamic resizing of hashtables and hashmaps
4114- added workaround for bug in primal simplex of cplex 12.7.1.0 occuring when attempting to solve LPs without rows without presolving
4115- fixed bug in binpacking example that might have led to doing the same branching several times
4116- fixed memory issue in binpacking example
4117- in GAMS writer, forbid also various parenthesis characters in gams symbol names
4118- added missing definition of `SCIP_UNUSED` in memory.h if def.h is not included
4119- treat reopt bugs: Avoid numerical problems with changing objective; fix check for changed objective
4120- fixed reading issue in mps reader: integer variables fixed to 0 or 1 are treated as binaries now,
4121 allowing to use them as indicator variables
4122- afternode heuristics are now called even if the node limit was reached and the solving process will be stopped
4123 after the current node
4124- fixed bug when activating probing mode with a non-empty separation storage
4125
4126- LP interfaces:
4127 - fixed guard against using old Gurobi versions in lpi_grb.c: Gurobi 7.5 was not permitted
4128 - fixed wrong handling of unboundedness status in lpi_grb.c
4129 - fixed wrong handling of row basis status in lpi_grb.c
4130
4131- Propagator:
4132 - fixed bug in shift and propagate--variable information with a negation transformation is correctly reset after backtracking
4133 - fixed bug in genvbounds propagator when applying a restart after the root node
4134
4135- Constraints:
4136 - fixed bug in varbound coefficient tightening: if a varbound constraint only contained one variable afterwards,
4137 it may have been deleted without applying the induced bound, if the change was too small, this is now forced
4138 - fixed potential wrong locks update after a varbound constraint became redundant in coefficient tightening
4139 - fixed potentially wrong cleanup of fixed variables in nonlinear constraint handler
4140 - fixed memory leak in OSiL reader when using SOS constraints
4141
4142- Solution:
4143 - improved handling of infinite values in a primal solution in quadratic and nonlinear constraints
4144 - fixed bug in computing violation and cut for certain nonlinear constraints when LP solution is slightly out of bounds
4145 - fixed debug solution check that appeared in probing mode when the objective function has changed
4146 - relaxed a too strong assert concerning solutions close to the objective limit
4147
4148@section RN400 SCIP 4.0.0
4149*************************
4150
4151Features
4152--------
4153
4154- Introduced support for partial or infeasible user solutions, which SCIP tries to complete/repair heuristically
4155- implemented linear time methods for (weighted) median selection for joint arrays of various types
4156- added adaptive solving behavior of SCIP based on solving phases and heuristic transitions, if enabled via `solvingphases/enabled`
4157- can now solve relaxations within probing
4158- in case of multiple relaxators the best solution is saved instead of the last one
4159- added write callback for reader_bnd
4160- added possibility to use a reference value for advanced analysis of the tree search. If a finite reference value
4161 (an objective value in original objective space) is passed via misc/referencevalue, SCIP keeps track of the
4162 number of nodes exceeding the reference value and the number of early backtracks -- path switches in the tree when
4163 a child node with lower bound smaller than the reference value was available.
4164- added reading capabilities for partial solutions with extension *.mst
4165- new global shift off all random seeds (randomization/randomseedshift) and unification of all existing random seeds
4166- use new macros SCIPdebugMsg(), SCIPsetDebugMsg(), SCIPstatDebugMsg() at all places where it makes sense
4167- new random number generator in pub_misc.h
4168- add check whether variables have been released when freeing SCIP
4169- a print callback can now be specified for user expressions
4170
4171- LP Solutions:
4172 - will now enforce relaxation solution instead of lp or pseudosolution if lowerbound is better and the whole lp is included in the relaxation
4173 - new feature solution polishing to improve integrality of LP solutions
4174
4175- Constraints:
4176 - new constraint handler for cardinality constraints
4177 - added interval-evaluation of sine and cosine
4178 - allow to create constraints of constraint handlers that don't need constraints
4179 - New constraint handlers cardinality and components
4180
4181- Conflicts:
4182 - implement a storage for conflicts to have more control over active conflicts
4183 - Improved conflict analysis through central conflict pool and dual ray analysis for primal infeasible LPs; can now analyze dual
4184 unbounded rays of primal infeasible LPs
4185
4186- Presolving:
4187 - New presolvers that disaggregate SOC constraints and reformulate QP's by adding KKT conditions
4188 - new presolving step for variables contained in a single quadratic constraint with proper square coefficients
4189 - add new presolving step to disaggregate second order cone constraints
4190 - new presolving method presol_qpkktref to add the KKT conditions of a QP
4191 - implemented and extended stuffing presolving in linear constraint handler
4192 - new components constraint handler which replaces the components presolver; it searches for independent subproblems
4193 and solves small ones as sub-SCIPs during presolve, larger ones are solved alternatingly during the main solving process
4194 - new presolving timing FINAL: presolving methods with this timing are only called once after all other presolvers with timings
4195 FAST, MEDIUM and EXHAUSTIVE are finished; during this timing only reductions are allowed that are self-contained, e.g.,
4196 fixing all variables and deleting all constraints of an independent component; note that reductions found in this timing
4197 do not trigger a new presolving round
4198
4199- Separation and Cuts:
4200 - can now separate perspective cuts for indicator constraints
4201 - add sepa_convexproj, a separator which projects onto convex relaxation and build gradient cuts at the projection
4202 - add sepa_gauge, a separator which computes an interior point of a convex relaxation and performs a binary search in the segment joining
4203 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
4204 - changed handling of coupling constraints in cons_indicator; the cuts will not be added to the pool, but are separated by default
4205 - concurrent solving mode that allows to run multiple SCIP instances, that share solutions and global variable bounds, in parallel
4206 - Revised pseudo random number generation and introduced central random seed for all plugins
4207
4208- Heuristics:
4209 - new Graph induced neighborhood search (GINS) primal heuristic that uses neighborhoods
4210 based on distances in the variable constraint connectivity graph.
4211 In addition, the heuristic supports a rolling horizon-like procedure to solve auxiliary problems
4212 for neighborhoods with increasing distance from the starting neighborhood.
4213 - new primal heuristic LP face that tries to find an integer solution inside the optimal LP face.
4214 - new heuristic that tries to complete partial solutions
4215 - the subnlp heuristic now gives ownership of a found solution to the heuristic that constructed the starting point, if any;
4216 as a consequence, MIP heuristics may now be shown more frequently for having found a solution when solving MINLPs, even
4217 though the solutions required an additional NLP solve
4218 - new multistart heuristic for NLPs
4219
4220- Propagator:
4221 - add prop_nlobbt, a nonlinear optimization-based bound propagator solving two convex NLP relaxations for each variable
4222 - nodes can now be postponed; currently, this can only be triggered by BEFORELP propagation callbacks
4223
4224- Statistic:
4225 + Extended statistic output displayable via the interactive shell
4226 + new statistic computed: `Root LP Estimate` that shows the root LP best-estimate with every pseudo-cost update
4227 + added leaf statistics about LP objective limit|feasible|infeasible leaves to the statistics output and
4228 to the callable library: SCIPgetNObjlimLeaves(), SCIPgetNFeasibleLeaves(), SCIPgetNInfeasibleLeaves()
4229 + next to the number of found solution, also the number of new best solutions is now printed for each heuristic
4230 (and relaxation solutions) in the statistics in the `Primal Heuristic` section.
4231
4232Performance improvements
4233------------------------
4234
4235- Extended the presolving timings by an additional timing FINAL for self-contained reductions
4236- Randomized tie-breaking in different parts of the code to reduce performance variability
4237- use connectedness information of the clique table to speed up the clique partitioning algorithm
4238- knapsack approximation algorithms use linear-time weighted median selection instead of sorting
4239- improved greedy solution in SCIPsolveKnapsackApproximatelyLT() for the flow cover separation
4240- reduce performance variability by using random numbers as tie-breaker for external branching candidates
4241
4242- Heuristics:
4243 - adjusted most Large Neighborhood Search heuristics such that they collect their variable fixings first in an array,
4244 and only create and populate a sub-SCIP if enough variables will be fixed.
4245 - reduce performance variability by using a small perturbation in the undercover heuristic
4246 - 1-opt heuristic can now be repeatedly executed as long as new incumbents are found
4247
4248- Constraints:
4249 - Improved and extended stuffing inside of linear constraint handler
4250 - Changed handling of coupling constraints in cons_indicator
4251 - SCIP supports constraint compression for problem copies; constraint compression denotes the immediate
4252 removal of fixed variables from constraint data at creation time to reduce memory requirements.
4253
4254- Propagation:
4255 - rewrote the propagate-and-cut-and-price loop so that successful propagations with DURINGLPLOOP timing, bound changes found by separation,
4256 and new primal solutions now trigger a new round of node solving, starting with propagation; improved tuning of propagation and heuristic timings
4257 - tuned propagation methods of several constraint handlers
4258 - make more use of SCIPmarkConsPropagate() to mark constraints for propagation and improved the internal handling of marked constraints
4259 - improve propagation of absolute-value expression in the case that the sign of the argument is fixed
4260
4261Interface changes
4262-----------------
4263
4264### New and changed callbacks
4265
4266- Concurrent SCIP:
4267 - extended interface to support concurrent solving mode
4268
4269- Constraint Handlers:
4270 - new optional callback `CONSENFORELAX` to enforce a relaxation solution, see \ref CONS
4271 - `CONSINITLP` callback now has a new parameter `infeasible`, which is a pointer to store whether infeasibility
4272 was detected while building the initial LP relaxation
4273
4274### Deleted and changed API functions
4275
4276- setting a parameter to a non-valid value now produces an error message instead of a warning
4277- bound reader uses angle bracket around variable names
4278- the parameters of SCIPlpiChgObj(), SCIPlpiSetBase(), SCIPlpiSetState(), SCIPlpiSetNorms() have been declared as const
4279- SCIPapplyHeurSubNlp() can now return the solution found by the sub-NLP heuristic
4280
4281- Random:
4282 - methods SCIPrandomGetInt() substitutes SCIPgetRandomInt() (marked to be deprecated)
4283 - methods SCIPrandomGetReal() substitutes SCIPgetRandomReal() (marked to be deprecated)
4284 - methods SCIPrandomPermuteArray() substitutes SCIPpermuteRandomArray() (marked to be deprecated)
4285 - methods SCIPrandomPermuteIntArray() substitutes SCIPpermuteRandomIntArray() (marked to be deprecated)
4286 - method SCIPrandomGetSubset() substitutes SCIPgetRandomSubset() (marked to be deprecated)
4287
4288- Conflict Analysis:
4289 - added parameters `conftype` and `iscutoffinvolved` to SCIPinitConflictAnalysis()
4290 that indicate the type of the conflict and whether the current cutoff bound is used or not
4291
4292- Constraint Handlers:
4293 - added parameter `infeasible` to SCIPinitlpCons()
4294
4295- Copying:
4296 - added parameters `fixedvars`, `fixedvals`, `nfixedvars` to SCIPcopyVars()
4297 - added parameters `fixedvars`, `fixedvals`, `nfixedvars` to SCIPcopyOrigVars()
4298 - renamed parameter `success` to `valid` in SCIPgetConsCopy()
4299
4300- Hashmap and Hashtable:
4301 - removed function SCIPcalcHashtableSize() since not required anymore for `SCIP_HASHTABLE` and `SCIP_HASHMAP`
4302 - based on the initial size `SCIP_HASHTABLE` and `SCIP_HASHMAP` choose an appropriate size internally to allow insertion of that
4303 many elements without resizing
4304 - `SCIP_MULTIHASH` behaves like the old `SCIP_HASHTABLE` and SCIPcalcMultihashSize() should be used as replacement for
4305 SCIPcalcHashtableSize()
4306
4307- Nonlinear Relaxation:
4308 - added parameter `curvature` to SCIPcreateNlRow()
4309
4310- Parameters:
4311 - the following new methods return a bool indicating whether the given value is valid for the parameter instead of printing a warning
4312 message and returning an error code if the value is invalid
4313 - renamed method SCIPcheckBoolParam() to SCIPisBoolParamValid()
4314 - renamed method SCIPcheckLongintParam() to SCIPisLongintParamValid()
4315 - renamed method SCIPcheckCharParam() to SCIPisCharParamValid()
4316 - renamed method SCIPcheckStringParam() to SCIPisStringParamValid()
4317 - renamed method SCIPcheckRealParam() to SCIPisRealParamValid()
4318 - 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
4319 and returning an error code if the value is invalid
4320 - rename SCIPparamCheckBool() to SCIPparamIsValidBool()
4321 - rename SCIPparamCheckString() to SCIPparamIsValidString()
4322 - rename SCIPparamCheckChar() to SCIPparamIsValidChar()
4323 - rename SCIPparamCheckLongint() to SCIPparamIsValidLongint()
4324
4325- Primal Heuristics:
4326 - added parameter `initialseed` to SCIPcreateDiveset()
4327 - introduced new type `SCIP_HEURTIMING` for primal heuristic timing masks
4328 - changed type of parameter `timingmask` from unsigned int to `SCIP_HEURTIMING` in SCIPincludeHeur(), SCIPincludeHeurBasic()
4329
4330- Relaxators:
4331 - new parameter `includeslp` for SCIPincludeRelax() and SCIPincludeRelaxBasic()
4332 to indicate whether relaxation includes all linear rows and can be enforced
4333
4334- Reoptimization:
4335 - rename method SCIPgetReopSolsRun() to SCIPgetReoptSolsRun()
4336
4337- Solutions:
4338 - added parameter `completely` to SCIPtrySol(), SCIPtrySolFree(), SCIPcheckSol() to check all constraints when
4339 printing violations
4340
4341- Variables:
4342 - removed SCIPvarGetLbAtIndex() and added SCIPgetVarLbAtIndex()
4343 - removed SCIPvarGetUbAtIndex() and added SCIPgetVarUbAtIndex()
4344 - removed SCIPVarGetBdAtIndex() and added SCIPgetVarBdAtIndex()
4345 - removed SCIPvarWasFixedAtIndex() and added SCIPgetVarWasFixedAtIndex()
4346 - Removed method SCIPvarGetNBinImpls()
4347
4348### New API functions
4349
4350- added functions for concurrent solving mode (see concurrent.h, concsolver.h)
4351- SCIPcreateNlpiProb(), SCIPupdateNlpiProb() and SCIPaddNlpiProbRows() to create and update a nonlinear relaxation
4352- SCIPgetNObjlimLeaves(), SCIPgetNFeasibleLeaves(), SCIPgetNInfeasibleLeaves() for statistics output
4353 about LP objective leaves
4354- SCIPcheckCopyLimits() which can be used to check that enough time and memory is left to run a sub-SCIP after
4355 subtracting time and memory used by the main-SCIP and SCIPcopyLimits() which copies these limits accordingly and disables
4356 all other limits (need to be set by the plugin, if needed)
4357- SCIPcopyLargeNeighborhoodSearch() in heuristics.h that supports compressed copying and two kinds of problem copy: the MIP-relaxation or
4358 a 1-1 problem copy (by copying the constraints and not the LP relaxation)
4359- SCIPsolveProbingRelax() to solve a relaxation within probing
4360- SCIPgetLastStrongbranchingLPSolstat() to query the LP statuses after strong branching on a variable
4361- SCIPinitializeRandomSeed()
4362- SCIPswapReals() to swap two real values
4363- SCIPgetNNZs() to get the number of active non-zeros in the transformed/presolved problem
4364
4365- Debug Messages:
4366 - SCIPprintDebugMessage(), SCIPsetPrintDebugMessage(), SCIPstatPrintDebugMessage() that output debug messages and also print the
4367 subscip depth; the first two output via the message handler; also added macros SCIPdebugMsg(), SCIPsetDebugMsg(), SCIPstatDebugMsg()
4368 - SCIPdebugMsgPrint()/SCIPsetDebugMsgPrint() that output a message without `[debug]` prefix via the message handler (compare SCIPdebugPrintf())
4369
4370- Solution:
4371 - SCIPisDualSolAvailable() to query the dual solution availability
4372 - SCIPlpiSetIntegralityInformation() to improve SoPlex' solution polishing
4373
4374- Constraints:
4375 - library methods SCIPcopyConsCompression(), SCIPcopyOrigConsCompression() that accept an array of variables that are immediately
4376 fixed in the copy. Alternatively, local instead of global bounds can be used for compression.
4377 - library methods SCIPenableConsCompression(), SCIPisConsCompressionEnabled(), SCIPcopyConsCompression(), SCIPcopyOrigConsCompression()
4378 - SCIPgetIntVarXor() to access integer variable of XOR constraints
4379 - SCIPcreateConsCardinality() to create a cardinality constraint
4380 - SCIPcreateConsBasicCardinality() to create a basic cardinality constraint
4381 - SCIPchgCardvalCardinality() to changes cardinality value of cardinality constraint (i.e., right hand side of cardinality constraint)
4382 - SCIPaddVarCardinality() to add a variable to a cardinality constraint
4383 - SCIPappendVarCardinality() to append a variable to a cardinality constraint
4384 - SCIPgetNVarsCardinality() to get the number of variables in a cardinality constraint
4385 - SCIPgetVarsCardinality() to get the array of variables in a cardinality constraint
4386 - SCIPgetCardvalCardinality() to get the cardinality value of a cardinality constraint (i.e., right hand side of cardinality constraint)
4387 - SCIPgetWeightsCardinality() to get the array of weights of a cardinality constraint
4388 - SCIPgetLinvarMay{Decrease,Increase}Quadratic() to get index of a variable in linear term of quadratic constraint that may be decreased
4389 without making any other constraint infeasible
4390
4391- Parameters:
4392 - add SCIPparamIsValidInt() and SCIPparamIsValidReal() to param.c/h
4393 - add missing functions SCIPisIntParamValid() and SCIPisRealParamValid() to scip.c/h
4394
4395### Command line interface
4396
4397- new command line parameter `-v` to print detailed build options
4398
4399### Interfaces to external software
4400
4401- Interfaces for Python and Java are, among others, now available via http://www.github.com/scip-interfaces
4402- Revised documentation of the SCIP C-API to group methods more comprehensively by topics
4403- dropped support for Ipopt < 3.11
4404- Additional I/O-functionalities for debugging and logging in SCIP and in the AMPL interface
4405- updated CppAD to 20160000
4406- for users of the ampl interface, the display/logfile option has been added to set the name of a
4407 file to write the SCIP log to (additionally to stdout)
4408
4409- LP Interfaces:
4410 - SCIP uses the lpi_spx2 interface by default
4411 - Improved Gurobi interface that can handle ranged rows (requires Gurobi >= 7.0.2)
4412 - the CPLEX LPI now also compiles with CPLEX 12.7.0.0
4413
4414### Changed parameters
4415
4416- 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
4417- changed value of parameter `separating/clique/cliquedensity` to 0.0 such that the separator always constructs a dense clique table
4418 which proved to be faster on the benchmarks MMM and stableset.
4419- parameters `misc/permutationseed`, `misc/permuteconss` and `misc/permutevars` changed to `randomization/permutationseed`,
4420 `randomization/permuteconss` and `randomization/permutevars`
4421- parameters `conflict/useinflp` and `conflict/useboundlp` are now of type char (before bool)
4422- all parameters of the components presolver (starting with `presolving/components/`) are now parameters of the components
4423 constraint handler (starting with `constraints/components/`)
4424
4425### New parameters
4426
4427- class randomization
4428- `branching/sumadjustweight` to adjust branching scores by adding a sum epsilon in order to keep score differences
4429 near zero, which are otherwise completely disregarded (they are adjusted to at least sum epsilon)
4430- `concurrent/∗ ` and `parallel/∗ ` for configuring the concurrent solving mode
4431- `constraints/cardinality/branchbalanced` to decide whether to use a balanced branching scheme in the enforcing of cardinality
4432 constraints
4433- `constraints/cardinality/balanceddepth` to set the maximal depth until balanced branching is turned off
4434- `constraints/cardinality/balancedcutoff` to determine that balanced branching is only used if the branching cut off value
4435 w.r.t. the current LP solution is greater than a given value
4436- `constraints/indicator/sepaperspective` to turn on separation of perspective cuts for indicator constraints
4437- `constraints/indicator/sepapersplocal` to decide whether local cuts can be used for perspective cuts for indicator constraints
4438- `constraints/quadratic/projectedcuts` to enable convex quadratics to generate gradients cuts at the
4439 projection of the point onto the region described by the constraint, which is supporting
4440- `lp/solutionpolishing` to enable LP polishing only at the root LP or always
4441- `misc/referencevalue` to pass a reference value for further analysis of the tree search, see also in `features`
4442- `presolving/qpkktref/addkktbinary` to allow the presence of binary variables for the KKT update
4443- `presolving/qpkktref/updatequadbounded` to add the KKT conditions to QPs only if all variables are bounded
4444- `presolving/qpkktref/updatequadindef` to add the KKT conditions to QPs only if the quadratic matrix is indefinite
4445- `randomization/lpseed` to set the initial seed of the LP solver
4446- `solvingphases/enabled` to activate adaptive behavior during the solution process; several further parameters
4447 in the solvingphases-section to control how to switch the parameters and whether a restart should be performed between the phases.
4448
4449### Data structures
4450
4451- new `SCIP_REGRESSION` data structure in pub_misc.h to incrementally compute a best-fit line through pairs of observations
4452- add maximum branch-and-bound tree depth constant `SCIP_MAXTREEDEPTH` (replaces SCIPgetDepthLimit() and SCIPtreeGetDepthLimit())
4453- new files heuristics.c/heuristics.h to collect methods that are frequently used by heuristics
4454- merged dive.c/pub_dive.h with heuristics.c/heuristics.h, removed dive.c/pub_dive.h
4455- separated header pub_misc.h from repeated methods for sorting and (weighted) median selection;
4456 those are also available in separate headers pub_misc_sort.h
4457 and pub_misc_select.h, but included into pub_misc.h
4458
4459Unit tests
4460----------
4461
4462- New unit testing system built on the Criterion framework
4463
4464Build system
4465------------
4466
4467### Makefile
4468
4469- All makefiles in `examples/` and `applications/` have been updated.
4470- `make.project` defines a variable `SCIP_VERSION` containing the SCIP version number
4471- revise sub-makefiles for MSVC on MinGW
4472- make shared libraries aware of their dependencies
4473- sub-makefile for CrayXC systems added
4474
4475- Places:
4476 - All objective files are now placed in `obj/static` or `obj/shared`, depending on `SHARED=false` or `SHARED=true`, respectively.
4477 - All internal and external libraries are placed in `lib/static` and `lib/shared`, the include files are in `lib/include`.
4478 - The binaries now contain an rpath to the SCIP directory, such that shared libraries are found.
4479
4480- Linking:
4481 - link binary to shared libs when compiling with `SHARED=true`
4482 - External projects (including make.project) can use the makefile variable LINKCXXSCIPALL or LINKCCSCIPALL to link all SCIP libraries.
4483 - Building with `SHARED=true` automatically generates the combined library libscipsolver.so for easier linking
4484
4485- Targets:
4486 - Running `make help` lists all makefile options.
4487 - `make install` copies now all header files
4488 - new target `dll` to build Windows dlls with MSVC
4489 - rename `dll` target to `windowslib`
4490
4491Fixed bugs
4492----------
4493
4494- fixed bug in event system: bound change events of the new focus node must be processed, even if the bound
4495 is the same as at the last focus node
4496- avoid numerically unstable (multi-)aggregations
4497- fixed bug in XML reader concerning comments
4498- the AMPL interface now writes a solve status (solve_result_num) into the .sol file
4499- in the cmpres.awk (allcmpres.sh) output, the counts in the time column are now with respect to the
4500 whole set of processed instances (as with fail and solv), while before it was with respect to the
4501 set of instances where no solver failed (eval set); thus, now proc = fail + time + solv.
4502- writing of solutions or parameters to a file now works also with the message handler set to quiet
4503- ignore lower and upper bound tightenigs beyond +/-infinity during solving
4504- time limit of SCIP-infinity is converted to LPI-infinity when setting it
4505- fix LP activity of a row that has been modified
4506
4507- Propagation:
4508 - fixed possible segmentation fault in genvbounds propagator
4509 - fixed bug with sorting of propagators in presolving: the order can be changed by calling probing; thus, there is a copy of the
4510 propagators, which is sorted by presolving priority
4511 - added missing capturing and releasing mechanism in genvbounds propagator
4512 - fix wrong propagation of product expressions
4513
4514- Constraints:
4515 - fixed wrong representation of SOC constraints in NLP
4516 - fixed a few issues within redundant constraint detection of (specialized) linear constraint handlers
4517 - fixed issue in reader_opb concerning writing of fixed variables contained in no constraints
4518
4519- Memory:
4520 - fixed memory bug in `SCIP_DIGRAPH`
4521 - improved counting of memory consumption by using more block memory and counting all allocated memory
4522 - fix memory leaks in TSP example
4523 - return `SCIP_ERROR` when a memory exception is caught in SoPlex (was `SCIP_LPERROR`)
4524 - fixed memory leak in OSiL reader
4525
4526- Objective:
4527 - fixed bug while changing the objective value of an original value after transforming the problem
4528 - fixed bug with solutions from previous runs not satisfying an objective limit
4529 - SCIPisObjIntegral() now works correctly in `SCIP_STAGE_PROBLEM`
4530
4531- Heuristics:
4532 - fixed two bugs in heur_indicator: use improvesols parameter now and update pointer to indicator constraint handler
4533 - fix wrong NLP representation of logic-or constraints in the dual value heuristic
4534 - correct handling of implicit integer variables with fractional solution value in simplerounding heuristic
4535 - fixed bug in heur_octane with uninitialized ray direction
4536
4537@page RN3_2 Release notes for SCIP 3.2
4538
4539@section RN321 SCIP 3.2.1
4540*************************
4541
4542Features
4543--------
4544
4545- new `force` parameter in (root)redcost propagator to run the propagator also with active pricers
4546
4547Performance improvements
4548------------------------
4549
4550- do not transfer solutions to original space, if SCIP is being freed
4551- modified implication graph analysis of SOS1 constraint handler; a new component allows to deduce zero fixings of variables
4552- made SOS1 constraint handler specific diving selection rule faster for the case that the SOS1 constraints do not overlap
4553- improved disjunctive cuts by the `monoidal cut strengthening` procedure of Balas and Jeroslow
4554
4555Examples and applications
4556-------------------------
4557
4558- several improvements of SCIP-Jack (STP application): extended presolving for STP variants, STP-specific branching
4559 rule, dual heuristic to generate initial LP relaxation
4560 SCIP-Jack is now competitive with problem specific state-of-the-art solvers on several well-known STP variants,
4561 e.g., the (rooted) prize-collecting Steiner tree problem.
4562- MultiObjective application renamed to PolySCIP; several improvements: better command line argument processing,
4563 overhaul of much of the source code, installation via CMake
4564
4565Interface changes
4566-----------------
4567
4568- made debug solution functionality thread safe (see debug.h for further information)
4569
4570### Deleted and changed API functions
4571
4572- add SCIPcomputeHyperplaneThreePoints() to compute a hyperplane containing three given 3-dimensional points
4573- SCIPsolveLinearProb() now uses a 1-dimensional matrix representation
4574
4575### Command line interface
4576
4577- added interactive shell command `display finitesolution` to print solution with infinite fixings removed,
4578 added reference to that method to `display solution` output if there are infinite fixings
4579- new interactive shell command `write history` to write the command line history (only when compiled with Readline)
4580
4581### Interfaces to external software
4582
4583- significantly improved Python interface to support user callbacks as well as linear and quadratic expressions
4584
4585### New parameters
4586
4587- `constraints/sos1/branchingrule` to decide whether to use neighborhood, bipartite, or SOS1 branching (this parameter
4588 replaces the old parameters `constraints/sos1/neighbranch`, `constraints/sos1/bipbranch`, and `constraints/sos1/sos1branch`)
4589- `constraints/sos1/depthimplanalysis` to limit the number of recursive calls of implication graph analysis
4590- `constraints/sos1/perfimplanalysis` to perform an implication graph analysis to deduce variable fixings and
4591 additional SOS1 constraints (this parameter replaces the old parameter `constraints/sos1/updateconflpresol`)
4592- `misc/transsolorig` for transfering transformed solutions to the original space (default: true)
4593- `propagating/rootredcost/onlybinary` to propagate root reduced costs of binary variables only
4594
4595### Data structures
4596
4597- renamed MIP matrix structure to `SCIP_MATRIX`
4598- changed the numeric values for `PRESOLTIMING` flags
4599
4600Build system
4601------------
4602
4603### Makefile
4604
4605- new target `dll` to build Windows dlls with MSVC
4606- add new compiling flag OPENSOURCE to allow/forbid the usage of third party software
4607
4608Fixed bugs
4609----------
4610
4611- fixed wrong objective sense when copying the original problem
4612- fixed a bug in merge step of cliques during clean up phase; method did not correctly handle infeasibility in the case of multiple
4613 variable-negation pairs
4614- fixed a previously untreated case in the linear cons simplification where coefficients only differ by slightly more than an epsilon
4615- fixed bug in parsing emphasis parameters which formerly led to completely wrong results
4616- fixed bug in the computation of the Wilcoxon test
4617- do not use the relative and absolute gap limit if no primal solution has been found so far
4618- fixed bug in conflict.c with wrong reset of bounds used
4619- fixed bug with transferring solutions to new runs (need to recompute objective before checking)
4620- fixed issue with infinite values when checking cuts for redundancy
4621- fixed library problems on Windows operating systems
4622
4623- Variables:
4624 - fixed wrong check when computing cuts for factorable quadratic functions bound tightening of a single variable
4625 - fixed wrong handling of loose variables in OBBT
4626 - fixed freeing of hash for binary variables
4627 - fixed bug during the computation of branching points for continuous variables which are almost fixed to +/- SCIPinfinity()
4628 - treated the case of integer variables as intermediate variables in the process of obtaining the active variable for a
4629 given binary variable
4630
4631- LP:
4632 - fixed a bug in dive.c that occurred when lpsolvefreq was set to 1; after a cutoff, the solution values of the
4633 linked LP solution might have become invalid
4634 - do not analyse an infeasible LP for conflicts during diving mode when LHS/RHS of rows were changed
4635 - use LPi infinity when reverting bound changes in conflict analysis
4636
4637- Heuristics:
4638 - fixed bug in heur_simplerounding in connection with relaxators
4639 - fixed bug in feaspump heuristic where last solution candidates were not updated correctly
4640 - fixed bug with infinite shift values in heur_shifting
4641 - fixed bug in shiftandpropagate heuristic: the heuristic did not correctly handle intermediate, global bound changes of the selected variable
4642 after its tentative fixing led to a cutoff.
4643
4644- Propagator:
4645 - (root) reduced cost propagators are not run anymore when doing branch-and-price,
4646 since they may install upper bounds on variables which might interfere with the
4647 pricing (they may be enabled again by their force parameters)
4648 - fixed too hard assertion in pseudoobj propagator
4649 - fixed a bug in shiftandpropagate where column positions after sorting are now correctly linked to their variables after sorting
4650 - fixed potential memory leak in genvbound propagator
4651
4652- Presolving:
4653 - fixed inconsistency in knapsack constraint handler data during presolving
4654 - fixed some problem with reoptimization when the problems are infeasible or have been solved in presolving
4655 - fixed endless loop in knapsack constraint handler when continuous variables change their types to binary during presolving
4656 - squares of binary variables might not have been replaced by the binary variable itself in presolve,
4657 if the variable was originally general integer and only became binary during presolve (due to bound tightening)
4658 - fixed bug in dive.c avoiding a check of constraints in the presence of indicator constraints
4659
4660- Constraints:
4661 - fixed numerical problems in computation of cuts for bivariate functions in quadratic constraint handler
4662 - fixed bug in quadratic constraint handler when computing lifted-tangent inequalities
4663 - fixed bug in nonlinear constraint handler when replacing a violated nonlinear constraint leads to an infinite
4664 - fixed bug in SOS1 constraint handler with inconsistent data structure after restart
4665 - fixed wrong handling of negated variables in bound tightening procedure of SOS1 constraint handler
4666 - fixed bug in simple fixing heuristic of SOS1 constraint handler
4667 - fixed two bugs in pseudoboolean constraint handler with wrong sorting of and constraints
4668 - fixed issue: constraints being parallel to objective function (after restart) sometimes led to wrongly stating infeasible
4669 - fixed bug during coefficient tightening in varbound constraint handler
4670 - handle cutoffs in cons_indicator detected by infeasible inequalities
4671 - fixed late change of type of slack variables in cons_indicator, if the bounds are not integral
4672 - fixed initsol and exitsol of cons_indicator, if problem has already been solved
4673 - fixed bug in cons_indicator with changing type of slackvariable
4674
4675@section RN320 SCIP 3.2.0
4676*************************
4677
4678Features
4679--------
4680
4681- added reoptimization feature for optimization problems with changed objective function or tighter feasible region
4682- the original problem can now be permuted directly after reading (if `misc/permutationseed` has value >= 0)
4683- added methods to compute strongly connected components with Tarjan's Algorithm
4684- added method to propagate implications of SOS1 variables
4685- convex quadratic contraints can now generate gradient cuts which are supporting to the feasible region
4686- SoPlex interface can now (re)store dual steepest edge weights
4687- extended expression parsing to support power, realpower and signpower operators; started support for user-defined operators
4688 in expression trees/graphs
4689- possibility to set a soft time limit which becomes active only after the first primal solution was found
4690- added matrix module for getting access to the internal mixed inter linear problem matrix
4691- better handling of large values returned by the LP solver
4692- added more checks to SCIP{alloc,realloc,duplicate}BufferArray() to handle overflows properly
4693- new plugin for reoptimizing a sequence of optimization problem that differ in the objective function, e.g., sequences arising from
4694 column generation
4695- new plugin `compr` for rearranging the search tree, currently this only works on the reoptimization tree
4696- moved assertions in comparison methods from scip.c to set.c
4697
4698- Constraints:
4699 - we can now upgrade quadratic constraints with one bilinear term to SOC constraints
4700 - we can also upgrade general quadratic constraints with a single negative eigenvalue to SOC constraints
4701
4702- Branching:
4703 - tighter reliability notions introduced for reliability branching, based on pseudo-cost relative errors
4704 and comparing candidates with the best pseudo-candidate using a 2-sample student-T test. These methods
4705 are used in disjunction with the existing reliability notion that uses a fixed number as reliability
4706 threshold for every variable before turning off strong-branching. This means, the classical method
4707 must be turned off by setting parameters minreliable and maxreliable to 0. The behavior is
4708 controlled through several parameters.
4709 - new distribution branching rule to base decisions on row activity (normal) distribution over domain space
4710 - can now output information for BAK: Branch-and-bound Analysis Kit
4711 - new score in hybrid reliability pseudocost branching that prefers nonlinear variables when solving MINLPs
4712 - new branching rule multaggr which allows to branch on general disjunctions defined by fractional multi-aggregated variables
4713 - new branching rules for SOS1 constraints for branching on a neighborhood or a complete bipartite subgraph of
4714 the conflict graph. In addition to variable domain fixings, it is sometimes also possible to add complementarity
4715 constraints to the branching nodes. This results in a nonstatic conflict graph, which may change dynamically
4716 with every branching node.
4717 - new branching rule nodereopt to reconstruct the tree after changing the objective function
4718
4719- Reader:
4720 - the MPS reader can now read semi-integer variables, they are handled by creating bound disjunction constraints
4721 - the MPS reader can now handle objective constants given as (the negation of) the RHS of the objective row
4722
4723- Separation:
4724 - obbt propagator applies now additional separation and propagation in order to learn stronger and more bound tightenings
4725 - extended probing mode to allow separation and objective coefficient changes
4726 - improved separation procedure of SOS1 constraint handler, including bound (clique) cuts and implied bound cuts
4727 - new disjunctive cut separator for SOS1 constraints
4728 - new edge-concave cut separator for quadratic constraints
4729
4730- Presolver:
4731 - Improved coordination of presolvers. There are three timings for presolvers now, FAST, MEDIUM and EXHAUSTIVE.
4732 Each presolving callback can specify one or more of these timings in which it will be called later.
4733 Within a presolving method, the current timing can be checked and the algorithms to be performed selected based on
4734 the timing. In one presolving round, first all presolving methods with timing FAST are called, sorted by priority.
4735 If they found enough reductions, a new round is started, otherwise, all presolving methods with timing MEDIUM are
4736 called. Again, with enough reductions, a new presolving round is started, too few reductions lead to running
4737 the EXHAUSTIVE presolvers. Similar to the delay concept used before, we are not neccessarily running all EXHAUSTIVE
4738 presolvers but stop as soon as one of them found enough reductions, starting a new presolving round immediately.
4739 - new presolving components for SOS1 constraints, including bound tightening and clique extension
4740 - new presolver tworowbnd for improving variable bounds and detecting redundant constraints added
4741 - new presolver dualagg for aggregating single up-/downlocked variables by a binary variable added
4742 - new presolver implfree for aggregating implied free variables added
4743 - new presolver redvub which can detect redundant variable upper bound constraints added
4744 - new presolver stuffing for fixing of singleton continuous variables added
4745
4746- Heuristic:
4747 - improved clique and variable bound heuristics
4748 - new heuristic distribution diving that bases its score function on the changes regarding solution density
4749 - variable histories can be transferred between sub-SCIPs solved by LNS heuristics and the component presolver
4750 and the main SCIP to reuse this information.
4751 - new heuristic heur_indicator that tries to make partial solutions with indicator constraints feasible. It also
4752 tries to improve them (or external solutions) by a one-opt local search.
4753 - new heuristic (heur_bound) which fixes all integer variables to their lower/upper bounds and solves the remaining LP
4754 - modified diving heuristics to handle SOS1 constraints
4755 - new primal heuristic for reoptimization 'ofins': objective function induced neighborhood heuristic
4756 - new heuristic for reoptimization which constructs solutions based in the changes between the objective function and the optimal
4757 solution before changing the objective function
4758
4759- Statistic:
4760 - extended variable branching statistics in the interactive shell by sample variance of unit gains
4761 - extended statistic output of interactive shell by more information on diving heuristic behavior
4762
4763Performance improvements
4764------------------------
4765
4766- improved treatment of nonlinearities in hybrid reliability pseudo cost branching
4767- using sparsity information of the SoPlex LP
4768
4769- Constraints:
4770 - improved vartype upgradability from continuous to implicit variables in cons_linear.c, depending on their objective coefficients
4771 - improved propagation of SOS1 constraint handler using the information from a conflict
4772
4773- Heuristics:
4774 - zi rounding heuristic uses buffer data structures, thereby decreasing total memory usage of SCIP
4775 - adjusted (hard) diving heuristics to solve fewer LPs. LP's are resolved only if a parameter-defined
4776 percentage of the variable bounds changed through domain propagation or at a predefined frequency.
4777 - some of the diving heuristics additionally consider indicator variables and SOS1 variables as candidate variables and try to
4778 make these constraint types feasible before passing a rounded solution to SCIPtrySol()
4779
4780- Presolving:
4781 - new presolving/propagation algorithm using the gcd for ranged rows and equations in cons_linear
4782 - added presolving levels (FAST, MEDIUM and EXHAUSTIVE) to allow better balancing of presolvers
4783
4784- Separation:
4785 - improved separation procedure of SOS1 constraint handler
4786 - improved separation procedure for convex quadratic constraints
4787
4788Examples and applications
4789-------------------------
4790
4791- two new applications for multi-objective optimization (PolySCIP) and the Steiner Tree Problem in Graphs
4792- new application for solving Steiner tree problems: SCIP-Jack can handle both the classical Steiner tree problem in graphs
4793 and 10 of its variants
4794
4795Interface changes
4796-----------------
4797
4798### New and changed callbacks
4799
4800- new callback function `SCIP_DECL_CONSGETDIVEBDCHGS` to provide
4801 constraint handler method to suggest dive bound changes during the generic diving algorithm, see type_cons.h for details
4802- new callback `SCIP_DECL_DIVESETGETSCORE` to implement scoring function to guide diving
4803
4804### Deleted and changed API functions
4805
4806- avoid potential comparisons of different infinity values by adjusting the LP solution value
4807- SCIPintervalSign(), SCIPintervalAbs(), SCIPintervalMax(), SCIPintervalMin(), SCIPexprgraphGetNodePolynomialMonomialCurvature(),
4808 and SCIPexprgraphTightenNodeBounds() need an infinity value to decide whether an interval is empty or not
4809- SCIPgetFeasibilityQuadratic() and SCIPgetActivityQuadratic() returns now a `SCIP_RETCODE` and needs an additional `SCIP_Real*` to
4810 store the result
4811- methods which support statistical tests in pub_misc.h, SCIPstudentTGetCriticalValue(), SCIPcomputeTwoSampleTTestValue() etc.
4812- SCIPsolveLinearProb() solves a linear problem of the form Ax=b for a regular square matrix A
4813- Added parameter `freesubscip` to SCIPapplyProximity()
4814
4815- Data structures:
4816 - Renamed method SCIPdigraphGetSuccessorsDatas() to SCIPdigraphGetSuccessorsData()
4817 - Renamed method SCIPdigraphGetNodeDatas() to SCIPdigraphGetNodeData()
4818 - Renamed method SCIPdigraphSetNodeDatas() to SCIPdigraphSetNodeData()
4819
4820- Constraint Handlers:
4821 - Renamed method SCIPconshdlrGetPropTimingmask() to SCIPconshdlrGetPropTiming()
4822 - new method SCIPconshdlrSetPropTiming()
4823 - Removed method SCIPconshdlrIsPresolvingDelayed()
4824 - Removed method SCIPconshdlrWasPresolvingDelayed()
4825 - SCIPmakeSOS1sFeasible() based on solution values, fixes variables to zero to turn all SOS1 constraints feasible
4826 - removed `delay(presol)` parameter from SCIPinclude{Conshdlr,Presol,Prop}() and added `(presol)timing` parameter
4827 - new parameter `presoltiming` for method SCIPpresolCons()
4828 - SCIPvarIsSOS1() returns whether some variable is involved in an SOS1 constraint
4829 - SCIPgetConflictgraphSOS1() gets conflict graph of SOS1 constraints
4830 - Added parameter `presoltiming` to SCIPpropCumulativeCondition()
4831 - Removed parameter `delaypos` from SCIPsetConshdlrPresol()
4832 - Added parameter `presoltiming` to SCIPsetConshdlrPresol()
4833 - Removed parameter `delaypos` from SCIPincludeConshdlr()
4834 - Added parameter `presoltiming` to SCIPincludeConshdlr()
4835 - Added parameter `consgetdivebdchgs` to SCIPincludeConshdlr() to provide a divebdchg-callback for the constraint handler
4836 to include
4837
4838- Branching Rules:
4839 - Added parameter `forcestrongbranch` to SCIPselectVarStrongBranching()
4840 - Added parameter `executebranching` SCIPexecRelpscostBranching()
4841 - Added parameters `ndomredsdown` and `ndomredsup` to SCIPgetVarStrongbranchWithPropagation()
4842
4843- LP and Cutting Planes:
4844 - Added parameters `inds` and `ninds` to SCIPgetLPBInvRow(), SCIPgetLPBInvCol(), SCIPgetLPBInvARow(), SCIPgetLPBInvACol(), and
4845 SCIPcalcStrongCG()
4846 - Added parameters `maxweight`, `weightinds`, `nweightinds`, and `rowlensum` to SCIPcalcMIR()
4847
4848- Variables:
4849 - SCIPvarGetNodeSOS1() returns node of SOS1 variable in the conflict graph
4850 - SCIPnodeGetVarSOS1() returns SOS1 variable associated to some given node in the conflict graph
4851 - Removed method SCIPvarGetNBinImpls()
4852
4853- Presolving:
4854 - Removed parameter `delaypos` from SCIPincludePresolBasic()
4855 - Added parameter `presoltiming` to SCIPincludePresolBasic()
4856 - Removed parameter `delaypos` from SCIPincludePresol()
4857 - Added parameter `presoltiming` to SCIPincludePresol()
4858 - Removed parameters `presoldelay` and `presoltiming` from SCIPincludePresol()
4859 - Removed parameters `presoldelay` and `presoltiming` from SCIPsetPropPresol()
4860
4861- Misc:
4862 - Added parameter `isequation` to SCIPaddClique()
4863 - Removed parameter `writeimplications` from SCIPwriteCliqueGraph()
4864 - Removed method SCIPallocBufferSize()
4865 - Removed method SCIPduplicateBufferSize()
4866 - Removed method SCIPreallocBufferSize()
4867 - Removed method SCIPfreeBufferSize()
4868 - Removed method callback SCIPdialogExecConflictgraph()
4869
4870### New API functions
4871
4872- started support for user-defined operators in expression trees/graphs (see SCIPexprCreateUser()),
4873 interface will likely change again in future SCIP versions
4874- new methods for mixed inter linear matrix access (see pub_matrix.h) added
4875- SCIPcomputeArraysIntersection() to compute the set intersection of two ordered arrays
4876- SCIPcomputeArraysSetminus() to compute the set difference of two ordered arrays
4877- SCIPcutGetLPActivityQuot() in pub_cutpool.h to get the potion of LP's where this cut was sharp in an optimal basis.
4878- SCIPpresolGetTiming(), SCIPpresolSetTiming(), SCIP{conshdlr,prop}GetPresolTiming(), and SCIP{conshdlr,prop}SetPresolTiming()
4879- SCIPdigraphSetNSuccessors() sets the number of successors of some digraph node to a given value
4880
4881- Diving:
4882 - SCIPcreateDiveset() to add a diveset to a heuristic. Heuristics may have multiple divesets under different names
4883 - SCIPperformGenericDivingAlgorithm() that performs diving with periodic LP resolve according to the diveset argument.
4884
4885- Constraints:
4886 - new setter function SCIPsetConshdlrGetDiveBdChgs() in scip.h to set dive bound change callback for this constraint handler
4887 - SCIPaddDiveBoundChange() to add a diving bound change to the diving bound change storage of SCIP together with the information if this is a
4888 bound change for the preferred direction or not, to be used by constraint handlers inside the getDiveBdChgs-callback
4889 - SCIPchgCoefLinear() and SCIPdelCoefLinear() to modify linear constraint during problem creation
4890
4891- Memory:
4892 - BMSallocClearBlockMemoryArray()/SCIPallocClearBlockMemoryArray() and
4893 BMSallocClearBufferMemoryArray(), SCIPallocClearBufferArray() to allocate arrays that are initialized to 0
4894 - SCIPbuffermem() to get buffer memory;
4895
4896- Sort:
4897 - added new sorting functions SCIPsortRealRealRealBoolBoolPtr(), SCIPsortDownRealRealRealBoolBoolPtr()
4898 - added new sorting functions SCIPsortIntIntIntReal(), SCIPsortDownIntIntIntReal(), SCIPsortRealIntInt(), SCIPsortDownRealIntInt()
4899
4900- Param:
4901 - SCIPwriteParam() to write a single parameter to a file
4902 - SCIPcheckParam{Bool,Char,...}() to check whether a parameter value is within the feasible domain
4903
4904- Quadratic:
4905 - SCIPchgLhsQuadratic(), SCIPchgRhsQuadratic(), SCIPchgLinearCoefQuadratic(), SCIPchgSquareCoefQuadratic(),
4906 and SCIPchgBilinCoefQuadratic() to modify quadratic constraints during problem creation
4907 - SCIPgetFeasibilityQuadratic() and SCIPgetActivityQuadratic() to get the feasibility and activity of a quadratic constraint in a given solution
4908 - SCIPaddSquareLinearization(), SCIPaddSquareSecant(), SCIPaddBilinLinearization() and SCIPaddBilinMcCormick()
4909 in cons_quadratic.h to compute linear under- and overestimation for bilinear and quadratic terms
4910
4911### Command line interface
4912
4913- extended variable branching statistics and statistic output in the interactive shell (see Statistic section)
4914- submenu for setting `vbc` settings renamed to `visual`
4915- at the end of a command line run the best solution can now be output in the orignal space
4916
4917### Interfaces to external software
4918
4919- in the AMPL interface, variable and constraint attributes (flags) can now be set via suffixes, where 0 (unset) stands
4920 for the default, 1 for TRUE and other values for FALSE; see SCIPcreateVar() and SCIPcreateCons() for their meaning;
4921 for variables, `initial` and `removable` are recognized;
4922 for constraints, `initial`, `separate`, `enforce`, `check`, `propagate`, `dynamic` and `removable` are recognized
4923- the AMPL interface now passes an initial guess, if specified, as a solution (that will be checked for feasibility) to SCIP
4924
4925### Changed parameters
4926
4927- rowrepswitch set to 2.0, so row representation is activated if LP has at least 2 times more rows than columns
4928- one can now set emphasis parameters at the beginning of a settings file; it should start with `emphasis:` and
4929 the contain the emphasis string, e.g., `emphasis: feasibility` or `emphasis: heuristics off`.
4930
4931- Renamed parameters:
4932 - `vbc/filename` to `visual/vbcfilename`
4933 - `vbc/realtime` to `visual/realtime`
4934 - `vbc/dispsols` to `visual/dispsols`
4935
4936### New parameters
4937
4938- added parameter to switch pseudo cost update in diving heuristics (enabled by default)
4939- `branching/relpscost/confidencelevel` to set the confidence level to be used by statistical tests
4940- `branching/relpscost/higherrortol` to define the highest reliability threshold for relative error based reliability
4941- `branching/relpscost/lowerrortol` to define a lower reliability threshold for relative error based reliability
4942- `branching/relpscost/nlscoreweight` for weight of nonlinear score when branching on MINLPs
4943- `branching/relpscost/usedynamicconfidence` to use a dynamic confidence level based on the amount of
4944 strong-branching simplex-iterations compared to the overall simplex iterations (default is FALSE)
4945- `branching/relpscost/usehyptestforreliability` to enable strong branching decisions based on a 2-sample student-T test of all prior
4946 pseudo-cost observations between the best pseudo-candidate and the candidate for which to decide whether strong-branching should be applied
4947- `branching/relpscost/userelerrorreliability` to enable relative error based reliability
4948- `branching/relpscost/skipbadinitcands` for skipping strong-branching candidates whose estimated gain
4949 is significantly worse than the one of the locally best (sb or pseudo) candidate
4950- `constraints/linear/multaggrremove` to perform multi-aggregations in linear constraint handler only if the constraint can be removed afterwards
4951- `constraints/linear/rangedrowpropagation` to disabled newly implemented propagtion algorithm for ranged rows and equations
4952- `constraints/quadratic/advanced/interiorcomputation` to select the way of computing and interior point for gauge cuts
4953- `constraints/quadratic/gaugecuts` to enable convex quadratics to generate gradients cuts which are supporting
4954- `constraints/soc/generalsocupgrade` to allow general quadratics to be upgraded to soc
4955- `constraints/SOS1/addcomps` to add local complementarity constraints to the branching nodes (can be used in combination
4956 with neighborhood or bipartite branching)
4957- `constraints/SOS1/addbdsfeas` to define a minimal feasibility value for local bound (clique) inequalities in order to be
4958 added to the branching node
4959- `constraints/SOS1/addcompsdepth` to define the maximal depth for adding complementarity constraints
4960- `constraints/SOS1/addcompsfeas` to define a minimal feasibility value for local complementarity constraints in order to be
4961 added to the branching node
4962- `constraints/SOS1/autocutsfromsos1` to automatically switch to separating bound cuts from SOS1 constraints if the SOS1
4963 constraints do not overlap
4964- `constraints/SOS1/autosos1branch` to switch to SOS1 branching if the SOS1 constraints do not overlap
4965- `constraints/SOS1/conflictprop` to define whether to use conflict graph propagation
4966- `constraints/SOS1/bipbranch` to branch on a complete bipartite subgraph of the conflict graph
4967- `constraints/SOS1/boundcutsdepth` to define the node depth of separating bound (clique) cuts
4968- `constraints/SOS1/boundcutsfreq` to define the frequency for separating bound (clique) cuts
4969- `constraints/SOS1/boundcutsfromgraph` to define whether to separate bound (clique) inequalities from the conflict graph
4970- `constraints/SOS1/boundcutsfromsos1` to define whether to separate bound (clique) inequalities from SOS1 constraints
4971- `constraints/SOS1/fixnonzero`: If neighborhood branching is used, then fix the branching variable (if positive in sign)
4972 to the value of the feasibility tolerance
4973- `constraints/SOS1/implcutsdepth` to define the node depth of separating implied bound cuts
4974- `constraints/SOS1/implcutsfreq` to define the frequency for separating implied bound cuts
4975- `constraints/SOS1/implprop` to define whether to use implication graph propagation
4976- `constraints/SOS1/maxaddcomps` to define the maximal number of complementarity constraints added per branching node
4977- `constraints/SOS1/maxboundcuts` to define the maximal number of bound (clique) cuts separated per branching node
4978- `constraints/SOS1/maxboundcutsroot` to define the maximal number of bound (clique) cuts separated per iteration in the root node
4979- `constraints/SOS1/maximplcuts` to define the maximal number of implied bound cuts separated per branching node
4980- `constraints/SOS1/maximplcutsroot` to define the maximal number of implied bound cuts separated per iteration in the root node
4981- `constraints/SOS1/maxextensions` to define maximal number of extensions that will be computed for each SOS1 constraint in presolving
4982- `constraints/SOS1/maxsosadjacency` to define that the adjacency matrix of the conflict graph is not created in presolving if
4983 the number of SOS1 variables is too large
4984- `constraints/SOS1/maxtightenbds` to define the maximal number of bound tightening rounds per presolving round
4985- `constraints/SOS1/neighbranch` to branch on a neighborhood of the conflict graph
4986- `constraints/SOS1/nstrongiter` to define the maximal number LP iterations to perform for each strong branching round
4987- `constraints/SOS1/nstrongrounds` to define the maximal number of strong branching rounds to perform for each node (only
4988 available for neighborhood and bipartite branching)
4989- `constraints/SOS1/sos1branch` to branch on a single SOS1 constraint, i.e., a clique of the conflict graph
4990- `constraints/SOS1/sosconsprop` to define whether to use SOS1 constraint propagation
4991- `constraints/SOS1/strthenboundcuts` to define whether to strengthen bound (clique) cuts in case bound variables are available
4992- `constraints/SOS1/updateconflpresol` to update the conflict graph during the presolving procedure
4993- `display/allviols` to print all violated constraints of the best solution during checksol in the scip shell
4994- `heuristics/indicator/improvesols` that turns on the improvement of external solutions by one-opt
4995- `heuristics/∗diving/lpresolvedomchgquot` to determine the percentage of changed domains since previous LP to trigger
4996 an LP resolve [default: 0.15] (* stands for eight diving heuristics to support this feature)
4997- `heuristics/∗diving/lpsolvefreq` to determine the frequency for resolving LP's during the execution of
4998 this heuristic [default: 1, use 0 for a dynamic setting based on the number of domain reductions]
4999 (* stands for eight diving heuristics to support this feature)
5000- `heuristics/shiftandpropagate/binlocksfirst` to set if binaries without locks should be preferred in ordering
5001- `heuristics/shiftandpropagate/maxcutoffquot` to select a maximum percentage of allowed cutoffs before stopping the heuristic (default is 0.0)
5002- `heuristics/shiftandpropagate/selectbest` to trigger if shiftandpropagate should select the best candidate in every round
5003 (set to FALSE for static order) (default is FALSE)
5004- `limits/autororestart` for triggering an automatic restart after this many nodes, or -1 for no auto restart [default is -1]
5005- `limits/softtime` to set a soft time limit (active only after first primal solution was found)
5006- `misc/allowobjprop` to allow objective function propagation
5007- `misc/allowdualreds` to allow dual reductions
5008- `misc/outputorigsol` to control whether at the end of a command line run the solution should be output in the orignal space
5009- `numerics/checkfeastolfac` to scale feasibility tolerance when checking the feasibility of best found solution
5010 after the solving process finished (e.g., checksol in scip shell)
5011- `separating/cutselrestart` for cut selection during restart copy process (`a`ge, activity `q`uotient) [default is `a`]
5012- `separating/cutselsubscip` for cut selection for sub SCIPs (`a`ge, activity `q`uotient) [default is `a`]
5013- `separating/disjunctive/maxconsdelay` to delay separation of disjunctive cuts if number of SOS1 constraints is larger than predefined value
5014- `separating/disjunctive/maxdepth` to define the node depth of separating disjunctive cuts
5015- `separating/disjunctive/maxinvcuts` to define the maximal number of disjunctive cuts investigated per iteration in a branching node
5016- `separating/disjunctive/maxinvcutsroot` to define the maximal number of disjunctive cuts investigated per iteration in the root node
5017- `separating/disjunctive/maxrank` to define the maximal permissible rank of a disjunctive cut that could not be scaled to integral coefficients
5018- `separating/disjunctive/maxrankintegral` to define the maximal permissible rank of a disjunctive cut that could be scaled
5019 to integral coefficients
5020- `separating/disjunctive/maxrounds` to define the maximal number of separation rounds of disjunctive cuts in a branching node
5021- `separating/disjunctive/maxweightrange` to define the maximal valid range of simplex tableau row weights
5022
5023### Data structures
5024
5025- new enum `SCIP_CONFIDENCE_LEVEL` for different levels of confidence for statistical tests.
5026- new struct `SCIP_DIVESET` that bundles options for SCIP's diving heuristics; all hard diving heuristics (those
5027 without `obj` at the beginning) include diveset and implement only the scoring callback.
5028- rename all file `*_vbc.?` to the more generic `*_visual.?`
5029- moved buffer memory handling to blockmemory/memory.?;
5030 remove files type_buffer.h, struct_buffer.h buffer.h buffer.c;
5031 removed functions SCIP*buffer*() from scip.? and replaced them by macros;
5032 redesigned buffer interface to be similar to block memory; added checks for strange sizes
5033
5034Testing
5035-------
5036
5037- added scripts and targets for testing with xpress (see Makefile section)
5038
5039Build system
5040------------
5041
5042### Makefile
5043
5044- new parameter `DELHEADERS` for `uninstall`-target: scip headers are only removed when invoking `make uninstall DELHEADERS=true`
5045- added scripts check_xpress.awk, check_xpress.sh, evalcheck_xpress.sh and check_cluster_xpress.sh and target
5046 `testclusterxpress` and `testxpress`
5047
5048Fixed bugs
5049----------
5050
5051- fixed bug in primal.c and tree.c by using SCIPinfinity() as a cutoffbound to delete child nodes
5052- fixed bug in lp.c which leads to wrong primal and dual feasibility
5053- fixed wrong handling of infinite activities and primal values in sepastore.c and lp.c
5054- fixed bug that led to an erroneous warning about the clock type
5055- fix behavior of `make install` which now sets symbolic links and short links to binaries and libraries
5056- fix bug which lead to wrong global bound tightenings in prop_genvbounds.c
5057- fix call to random generator for Windows operating systems in misc.c
5058- fixed again a bug in backward propagation of linear expressions in expression graph
5059- fixed bug in prop_symmetry.c, where an incorrect weak symmetry handling constraint got added.
5060
5061- NLP:
5062 - fixed bug in heur_nlpdiving.c: wrong counting of fix variables
5063 - fix wrong handling of `SCIP_NLPSOLSTAT_LOCALINFEASIBLE` solution status in nlp.c
5064 - fix characterization of logic or constraints in SCIP's NLP relaxation
5065
5066- Branching:
5067 - fixed wrong comparison when executing branching rule for external branching candidates
5068 - fix spatial branching on implicit integer variables
5069 - fix wrong comparisons of values larger/less than +/- SCIPinfinity() in branch.c, lp.c and sol.c
5070 - fixed problem with lpisrelax flag in probing mode when doing branch-and-price
5071
5072- Constraint Handlers:
5073 - try to handle fixings of multi-aggregated variable in cons_sos1 presolving and avoid error
5074 - fixed bug in pseudoboolean constraint handler about negated variables
5075 - fixed assert in cons_soc.c: now soc with 1 lhs variable are allowed
5076 - fixed wrong assert in cons_indicator (slack variables might be replaced by active variables that have nonzero objective)
5077 - fix late creation of auxiliary LP in cons_nonlinear.c, which lead to a segmentation fault with lpi_spx2.cpp
5078 - fixed bug in cons_abspower.c: do not generate cuts with infinity right-hand-side anymore
5079 - fixed setting of enforcement flag for constraints created by reformulation in nonlinear constraint handlers
5080 - fixed bug in cons_indicator with handling local bounds
5081
5082- Memory:
5083 - fix potential memory leak in SoPlex LP interfaces when setting invalid basis
5084 - fix potential memory leak in method SCIPgetConsCopy()
5085 - fix potential memory leak in method detectRedundantConstraints() of the knapsack constraint handler
5086
5087- Interval arithmetic:
5088 - fix handling of infinite intervals in SCIPintervalIsEmpty()
5089 - fixed bug in intervalarith.c: bivariate quadratic equations may have been solved wrongly if second variable is unbounded
5090
5091- Quadratic Constraints:
5092 - fix wrong sorting of bilinear terms in cons_quadratic
5093 - fix potentially tightening of LB/UB of a variable to +/- infinity in cons_quadratic
5094 - fixed bug in cons_quadratic.c which leads to an overflow when SCIP allocates memory for a dense matrix
5095 - fixed bug in cons_quadratic.c: do not generate linearization cuts for disabled constraints
5096 - fix missing clean phase of bilinear terms with zero coefficient in cons_quadratic.c
5097
5098@page RN3_1 Release notes for SCIP 3.1
5099
5100@section RN311 SCIP 3.1.1
5101*************************
5102
5103Features
5104--------
5105
5106- use clock average to reduce number of system calls via `timing/rareclockcheck` parameter
5107- added copy mechanism for conjunction constraints
5108- added revised lpi_xprs for using XPRESS as LP solver
5109
5110Performance improvements
5111------------------------
5112
5113- improved solving of LPs in OBBT propagator
5114- improved activity-delta computation and thereby propagation for linear constraints
5115- improved memory management of proximity heuristic
5116- disabled statistic timing in all subscips via new parameter `timing/statistictiming`
5117
5118Interface changes
5119-----------------
5120
5121### New and changed callbacks
5122
5123- rename array arcdatas in digraph to arcdata
5124- changes in clock type are now transferred to SoPlex
5125- corrected wrong primal bound in statistics for unbounded problems
5126- forbid to call SCIPfixVar() in `SCIP_STAGE_PRESOLVED` stage, which is not allowed since it calls SCIPchgVarLb/Ub()
5127
5128### Deleted and changed API functions
5129
5130- rename SCIPdigraphGetNodeDatas() to SCIPdigraphGetNodeData();
5131- rename SCIPdigraphSetNodeDatas() to SCIPdigraphSetNodeData()
5132- SCIPapplyProximity() has an additional parameter freesubscip, which causes the method to free
5133 the created subscip automatically at the end.
5134
5135### New API functions
5136
5137- SCIPhasPerformedPresolve() to check, e.g., whether LP duals are accessible
5138- SCIPconvertRealTo[Long]Int() to convert reals that represent integers to [long] ints.
5139- SCIPisDualfeasEQ() and related to perform checks w.r.t. to the dual feasibility tolerance
5140- SCIPdeleteSubproblemProximity() to free proximity subproblem manually as external caller
5141
5142### Command line interface
5143
5144- added dialog for writing the finite solution (calling SCIPcreateFiniteSolCopy() before writing)
5145
5146### Interfaces to external software
5147
5148- AMPL interface now returns dual multipliers if problem is an LP and presolving was turned off
5149
5150### Changed parameters
5151
5152- changed default value of parameter `heuristics/proximity/minimprove` to 0.02; previous value was 0.25
5153- changed default value of parameter `heuristics/proximity/usefinallp` to FALSE
5154
5155### New parameters
5156
5157- `timing/rareclockcheck` to call the system time less frequently, based on the current average time interval
5158 between two calls to SCIPsolveIsStopped(); the default value is FALSE
5159- `timing/statistictiming` to enable/disable all timers for statistic output of SCIP; the default value is TRUE
5160
5161### Data structures
5162
5163- renamed MIP matrix structure to `SCIP_MATRIX`
5164- changed the numeric values for `PRESOLTIMING` flags
5165
5166Build system
5167------------
5168
5169### Makefile
5170
5171- added Makefile support for cygwin 64 Bit
5172- allow to turn off block and buffer memory by the makefile parameters NOBLKMEM, NOBUFMEM, NOBLKBUFMEM;
5173 also remove the now superfluous makefiles for noblkmem, nobufmem, noblkbufmem
5174
5175Fixed bugs
5176----------
5177
5178- fixed wrong conversion of reals representing negative integer values
5179- in debug mode, SCIP checks that no NaN's are introduced in SCIPsolSetVal()
5180- fixed bug 697 (and 699), calling SCIPsolve() after the problem was already solved and SCIPfreeSolve() was called now
5181 does nothing anymore
5182- added support for character `#` in variable names in old non-linear CIP format (i.e., names without `<` and `>`)
5183- fixed bug 702, removed too hard assert when casting too big values into `SCIP_Longint`
5184- branching for continuous variables with unbounded intervals now takes `branching/clamp` into account
5185- forbid aggregations with scalar smaller feastol or larger 1/feastol
5186- fixed bug 683, not recognizing errors/segfaults especially in free stage of SCIP by improving the check scripts
5187- fixed bug where quieting a message handler also disabled writing to files other than stdout
5188- fixed bug 708, special case of implications led to a fixing
5189- fixed bug, variable bounds detected wrong infeasibility
5190- another bug fix when computing the original variable sum of a given variable in SCIPvarGetOrigvarSum()
5191- fixed setting solution value of multi-aggregated var in xml-solution case
5192- fixed bug changing the variable type of an negated variable
5193- fixed numerical troubles in SCIPcreateFiniteSolCopy()
5194- fixed bug in SCIPpermuteProb(): if called before transforming the problem, data structures were not initialized yet
5195- fixed bug in aggregation procedure if two variables were of non-binary type but for one of the variables
5196 SCIPvarIsBinary() returned true
5197- treat activities of pseudo solutions as invalid when containing positive and negative infinity contributions
5198- fixed bug in GMI example: fractionality of slack variable is now computed correctly
5199- fixed LP interface of CPLEX: functions getBInv* return the correct sign of the coefficients.
5200- fixed bug in SCIPpermuteProb(), when called in transformed stage and non-active constraints exist
5201
5202- Dual:
5203 - use dual feasibility tolerance for comparisons regarding reduced costs
5204 - fixed bug in prop_dualfixing: don't fix variables to infinite values during solving
5205 - fixed sign of the dual multipliers returned by AMPL interfaces for maximization
5206
5207- Objective and Time Limit:
5208 - fixed wrong output of status when an objective limit was imposed but not reached yet
5209 - fixed the rare case that branching was performed even though strong branching found global bound changes leading to
5210 an infeasible/objlimit LP
5211 - fixed bug that objective limit was not reset correctly during SCIPfreeTransform() for maximization problems
5212 - fixed bug that hitting the time limit while solving a pure LP and then continuing the solving process lead to
5213 not solving the LP, but always creating a single child node until maximum depth is reached
5214
5215- Heuristic:
5216 - fixed bug leading to an incorrect dual bound when solving probing LPs within a DURINGPRICINGLOOP heuristic
5217 - fixed bug in proximity heuristic which attempted to enter diving mode even at nodes without a constructed LP
5218 - fixed wrong pseudo cost updates during diving heuristic execution after backtracking
5219 - fixed bug in heur_oneopt: avoid bound violations if shift value is negative due to infeasibilities
5220 - fixed bug that reaching a solution limit by beforenode heuristics lead to disregarding the current node if the
5221 optimization process was restarted later
5222 - fixed bug in trysol heuristic not saving the best solution in maximization problems
5223
5224- Presolve:
5225 - fixed bug in presolving of abspower constraints that lead to wrong variable locks
5226 - allow to call SCIPmarkConsPropagate() in INITPRESOLVE stage
5227 - fixed bug in components presolver with handling of dual fixable variables: unboundedness was not detected,
5228 better handle components with single variables by dual fixing propagator
5229 - issues in component solving by presol_components do not lead to stopping the overall process, anymore, the component
5230 is just disregarded
5231
5232- Memory:
5233 - fixed bug with freeing problem: need to reset objective limit
5234 - fixed memory leaks in case of erroneous parsing of constraints, e.g., non-linear constraints
5235 - fixed missing memory allocation for node data in digraphs
5236
5237- Constraints:
5238 - fixed bug in cons_quadratic which leads to wrong min/max activities
5239 - removed wrong break in cons_pseudoboolean
5240 - fixed bug in cons_varbound.c using the wrong constraint side for updating an upper bound
5241 - fixed bug in presolve of cons_nonlinear: wrong constraint upgrades may have been performed due to outdated bound
5242 information in expression graph
5243 - fixed bug in cons_setppc, wrongly aggregating variables if dual-presolving was disabled
5244 - fixed bug in cons_sos1: locks and events were not initialized if constraint was added to transformed problem
5245 - fixed bug in cons_setppc with dual presolving disabled
5246 - corrected copy of disjunction constraints
5247
5248- Reading:
5249 - allow to read numbers like `42856.` in lp-format
5250 - fixed bug(?) in reader_mps: variables are now written in columns section even of they occur in no constraint
5251 and have an objective coefficient of 0 (otherwise, CPLEX and Gurobi cannot read the file)
5252 - fixed bug with reading `>=1` indicator constraints in LP-files
5253 - fixed bug in reader_lp which created two indicator constraints with the same name to trigger an equality
5254 - fixed bug when reading indicator constraints for linear constraints (equations/ranged rows) from MPS files
5255
5256@section RN310 SCIP 3.1.0
5257*************************
5258
5259Features
5260--------
5261
5262- added breadth first search node selection
5263- new node selection rule UCT which balances exploration and exploitation by considering node visits
5264- added possibility to not set a cutoff bound in the LP solver (can be enabled by setting `lp/disablecutoff` to TRUE)
5265- added missing debugging solution check for cliques
5266- added a data pointer to each node of the `SCIP_DIGRAPH`
5267- SCIPgetVarCopy() will now copy the original bounds when called for an original variable
5268- added upgrade of continuous variables to implicit variables for linear equations even if the coefficient is
5269 not equal to 1
5270- probing supports implicit binary variables
5271- added scaling to computation of relative interior point in SCIPcomputeLPRelIntPoint()
5272
5273- Solution:
5274 - added two methods to iterate over a sparse solution (`SCIP_SPARSESOLUTION`), see pub_misc.h
5275 - it is now possible to add an offset for the original problem instance, all original solutions will be initialized with
5276 this value and updated, when the offset is changed
5277 - extended and corrected dual feasibility checks for LP solution (controlled by parameter `lp/checkdualfeas`)
5278
5279- Cuts and Separation:
5280 - the rank of cuts is now stored and taken into account to improve numerical stability
5281 - added possibility to separate a cutpool w.r.t. a given solution (instead of LP-solution)
5282
5283- Branching:
5284 - new branching rule `cloud branching` that considers several alternative LP optima
5285 - additional vbc output added: branching information is printed earlier and also for nodes which were cut off
5286 - added support for strong branching with domain propagation in full strong and reliability pseudo cost branching
5287 - added strong branching with domain propagation support: in SCIPstartStrongbranch(), support for propagation can
5288 be enabled (uses the probing mode, some overhead compared to standard strong branching), after that
5289 SCIPgetVarStrongbranchWithPropagation() can be used to perform strong branching on a variable with previous domain
5290 propagation; similar to probing, valid bounds for variables are collected
5291 - strong branching with propagation can be enabled in fullstrong and relpscost branching rule
5292 - added possibility to store pricing norms of the LP solver (in addition to basis information) to speed up LP solving
5293 after a backtrack, e.g. in probing or strong branching with domain propagation
5294 - a pricer can now return that no further pricing should be done but rather early branching, even if it added variables
5295
5296- LP interface:
5297 - SoPlex (>= 1.7.0.5) can compute condition number of current basis matrix via LP interface
5298 - LPI files (lpi*.[h|c]) all moved from src/scip to src/lpi
5299
5300- Constraints:
5301 - added propagation method to cons_xor relying on Gaussian elimination, which can also produce feasible solutions
5302 - added first implication detection in cons_linear
5303 - cons_indicator can now try to construct feasible solutions from a cover
5304 - added possibility to forbid upgrading of linear constraints
5305 - new initial constraints are now added to the LP before solving a probing LP
5306 - first implementation of parsing for nonlinear constraints in CIP format
5307 - added upgrade from varbound constraints to set-packing constraints
5308 - added upgrade from bounddisjunction constraints to set-packing/logicor constraints
5309 - cumulative constraint handler adds disjunctive constraints (cumulative with capacity 1) for all jobs which cannot
5310 be processed in parallel
5311 - added new clique extraction algorithm for linear constraints
5312 - the slack variables of indicator constraints can now be scaled
5313 - added redundancy check of sides of ranged row varbound constraint
5314 - added coefficient tightening for ranged row varbound constraint
5315 - XOR constraint handler can add two extended formulations (flow/asymmetric, parameter `addflowextended/addextendedform`)
5316 - added multi-aggregation for binary variables with at most two uplocks and two downlocks, which emerge from set-
5317 partitioning or set-packing constraints
5318 - added upgrade from quadratic constraints to set-packing constraints
5319 - generalized the linking constraint handler
5320
5321- Reader:
5322 - can now read and write CIP-files with (multi-)aggregated variables
5323 - all readers now take the global parameters `reading/dynamic{conss|cols|rows}` and `reading/initialconss` into account
5324 - added reader_pbm, which writes the constraint-variable incidence matrix in pbm format (possibly scaled to given size)
5325 - reader_osil can now read SOS1 and SOS2 constraints
5326 - reader_lp and reader_mps are now able to write and-constraints in form of their (weak/strict) relaxation
5327 - added reading capability to GAMS reader (if compiling with GAMS=true, requires a GAMS system)
5328 - added capability of writing SOS1/2 constraints to GAMS reader (introduces extra variables and equations)
5329
5330- Heuristic:
5331 - new primal heuristics dual value
5332 - new LNS heuristic called `proximity`, which solves a problem in which a local branching constraint replaces the
5333 objective function which in turn is treated as additional constraint
5334 - new LP-based rounding heuristic (heur_randround) whose randomized rounding is biased towards the LP solution value;
5335 the heuristic uses the probing mode of SCIP to generate conflict clauses on the fractional variables
5336
5337- Presolving:
5338 - added new dual presolving for setppc-constraints
5339 - changed dualfix presolver to propagator such that dual fixing can also be applied during repropagation of the root node
5340 - added full-dual presolving step in setppc constraint handler
5341 - dual solution can now be displayed for pure LPs when no presolving was performed
5342 - added clique presolving for xor constraints
5343 - added presolving using pairs of variable bound constraints that use the same variables
5344 - added more presolving to cons_indicator, checking whether indicator/slack variables are aggregated
5345 - added presolve.{c,h} which should be used for all preprocessing mechanisms executed from within SCIP, corresponding to
5346 solve.{c,h} and also for presprocessing methods which can be called from different plugins or from the core to avoid
5347 code doubling
5348 - return error if variable should be fixed to infinity after presolving (LP-solvers do not handle this consistently)
5349 - in verblevel `SCIP_VERBLEVEL_FULL`, the number of non-zeros will be output for the original and presolved model
5350 - new presolving step for tightening logicor constraints using implication and clique information
5351 - several new presolving steps for linear and knapsack constraints, using gcd information and many more
5352
5353- Statistic:
5354 - added average gap based on primal-dual integral to solution statistics; can be disabled via parameter
5355 `misc/calcintegral`
5356 - the statistics now include the value of the first LP solved at the root node (without cuts)
5357 - added new statistic which distinguishes between internal nodes and leaves which got processed
5358 - new section `Root Node` in statistics, listing objective value, iterations and solving time for the first LP solved
5359 at the root node as well as final dual bound of the root node and LP iterations for processing the root node
5360 (those where listed in the `Solutions` section before, named `Root Dual Bound` and `Root Iterations`)
5361
5362Performance improvements
5363------------------------
5364
5365- allow multiaggregation of binary variables
5366- shorten conflicts and deriving global boundchanges from conflicts
5367- apply lowerbound provided by pricers already during pricing loop, stop pricing if the lower bound computed by pricing
5368 already exceeds the cutoff bound
5369- improved performance of SCIPcliquelistDel(), SCIPcliquetableAdd(), SCIPcliquetableCleanup()
5370
5371- LP Solution:
5372 - strong branching LP solutions are checked for integrality
5373 - improved LP reoptimization for branch-and-price applications
5374 - improved numerical stability checks for LP solution
5375 - faster feasibility check of LP solutions (controlled by parameters `lp/checkprimfeas` and `lp/checkdualfeas`)
5376
5377- Presolver:
5378 - improved methods SCIPlpiGetBInv{Row,Col,ACol} for row representation in SoPlex LP interface
5379 - improved performance of method SCIPsolRetransform() when called during presolving with many aggregations
5380 - minor presolving performance improvements in cons_logicor.c and cons_knapsack.c
5381 - dual fixing presolver was turned into a propagator
5382 - many presolving improvements in constraint handlers
5383 - improved dual-presolving for setppc constraints in special cases
5384
5385- Constraints:
5386 - major improvements in pseudo-boolean constraint handler
5387 - performance improvement in domain propagation by marking constraints for propagation
5388 - added more constraint upgrading possibilities
5389 - improved handling of initial constraints created during solving
5390 - disabled scaling in feasibility check of nonlinear constraint handlers
5391 - conflict consisting of exactly two binary variables will be handled as set-packing constraint instead of an logicor
5392 constraint and the corresponding clique information is globally added
5393 - fasten repropagation for set-packing and -partitioning constraints
5394 - improved merging of and-constraints
5395 - disabled multi-aggregation in linear constraint handler when coefficients differ too much
5396 - improved multi-aggregation in linear constraint handler when only one variable in the aggregation has infinity
5397 contribution
5398 - added upgradability for implicit binary variable cases for linear constraints
5399
5400Examples and applications
5401-------------------------
5402
5403- new textbook Gomory mixed integer cuts example
5404
5405Interface changes
5406-----------------
5407
5408- removed all message length parameters in message.c and for printing error messages (not needed anymore)
5409
5410### New and changed callbacks
5411
5412- Domain Propagation:
5413 - added parameter `nmarkedconss` to SCIP_DECL_CONSPROP() callback which gives the number of constraints marked
5414 for propagation (these constraints are listed first in the conss array given as parameter).
5415
5416- Primal Heuristics:
5417 - Added parameter `nodeinfeasible` to SCIP_DECL_HEUREXEC() callback which states whether the current subproblem was
5418 already detected to be infeasible. In this case, the current LP solution might not respect local bounds and the
5419 heuristic must not assume that it does.
5420
5421- Variable Pricers:
5422 - Added parameter `stopearly` to callback method SCIP_DECL_PRICERREDCOST(). This boolean pointer should be used by the pricer
5423 to state whether early branching should be performed, even if new variables were added in the current pricing round.
5424
5425- Branching Rules:
5426 - new possible return value `SCIP_DIDNOTFIND` for SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_BRANCHEXECPS(), and
5427 SCIP_DECL_BRANCHEXECEXT() callbacks to state that the branching rule searched, but did not find a branching.
5428
5429### Deleted and changed API functions
5430
5431- SCIPcalcMIR() takes an additional parameter sidetypes to determine which side of the rows to use
5432 (relevant for ranged rows)
5433- SCIPvarParseOriginal() and SCIPvarParseTransformed() now return the end of the parsed string
5434- SCIPgetConsCopy() now always captures the created constraint
5435
5436- Branching:
5437 - Added parameter `nfracimplvars` to SCIPgetLPBranchCands()
5438 - SCIPgetLPBranchCands() can be used to retrieve the number of implicit integer variables with fractional LP solution
5439 value via an additional pointer; the corresponding implicit integer variables can be accessed together with their
5440 fractionalities and solution values in the same way as binary and integer variables before; the arrays are sorted such
5441 that binary and integer variables precede the implicit integer variables; the method SCIPbranchcandGetLPCands()
5442 has been modified in the same way
5443
5444- LP and Cutting Planes:
5445 - Added parameter `sidetypes` to SCIPcalcMIR() to specify the specify row side type to be used.
5446 - Added parameter `cutrank` to SCIPcalcMIR() and SCIPcalcStrongCG() which stores the rank of the returned cut;
5447 via SCIProwChgRank() the rank of a cut can be changed (default rank is 0)
5448 - Added parameter `infeasible` to SCIPaddCut() which is a pointer to store whether the cut is infeasible for the
5449 local bounds.
5450 - SCIPgetLPObjval() now returns the LP value of the current (suboptimal) basis if the iteration limit is hit during LP
5451 solving (instead of -infinity); this value is not necessarily a valid dual bound and must not be used as such, but can
5452 be used as an objective estimate, e.g., if strong branching is simulated using the probing mode
5453 - removed parameter `normtype` from function SCIPcomputeLPRelIntPoint()
5454
5455- Misc:
5456 - Added parameter `lazyconss` to SCIPwriteMIP() to swith writing removable rows as lazy constraints.
5457 - Added parameter `enablepropagation` to SCIPstartStrongbranch(), which can be used to enable strong branching
5458 with domain propagation.
5459 - SCIPstartStrongbranch() has a new parameter `propagate` to enable or disable propagation support for strong branching
5460 - New method SCIPgetVarStrongbranchWithPropagation() which performs strong branching with propagation on a variable.
5461 - Added parameter `endptr` to SCIPparseVar() which stores the final string position after parsing.
5462
5463### New API functions
5464
5465- added SCIPdebugCheckConss() to the debugging mechanism and therefore created a `SCIP_SOL` (in original space) in debug.c
5466- before copying solutions to the original solution candidate storage, infinite solution values can now be removed using SCIPcreateFiniteSolCopy()
5467- SCIPsortLongPtrRealBool(), SCIPsortLongPtrRealRealBool(), SCIPsortLongPtrRealRealIntBool() and corresponding
5468 methods for sorting, insertion and deletion
5469- SCIPstoreSolutionGap() in scip.c, to store the gap when the first and last solution is found
5470- SCIPwriteCliqueGraph() which allows to write a graph with node weights for fractional variables
5471
5472- Separation:
5473 - SCIPconshdlrIncNCutsFound(), SCIPsepaIncNCutsFound() and SCIPsepaIncNCutsFoundAtNode() to increase the number of found cuts
5474 - SCIPseparateSolCutpool() to separate a cutpool w.r.t. a given solution
5475
5476- Constraint Handlers:
5477 - New method SCIPconshdlrGetStrongBranchPropTime() which returns the time used for domain propagation methods
5478 of the constraint handler during strong branching.
5479 - New method SCIPconsIsMarkedPropagate() which returns whether a constraint is marked for propagation.
5480 - New methods SCIPconsAddUpgradeLocks() and SCIPconsGetNUpgradeLocks() to increase or get the number of upgrade
5481 locks of a constraint.
5482 - New method SCIPgetNCheckConss() which returns the number of checked constraints.
5483
5484- Data structures:
5485 - New methods SCIPsparseSolGetFirstSol() and SCIPsparseSolGetNextSol() to get the first sparse solution
5486 or iterate over the sparse solutions, respectively.
5487 - New methods for the `SCIP_QUEUE` data structure in pub_misc.h to handle a (circular) queue, e.g., SCIPqueueCreate(),
5488 SCIPqueueFree(), SCIPqueueInsert(), SCIPqueueRemove(), SCIPqueueFirst(), SCIPqueueIsEmpty(), SCIPqueueNElems()
5489 - New method SCIPgmlWriteNodeWeight() to write a node section including weight to a .gml graph file.
5490 - New methods for hash tables: SCIPhashtableRemoveAll(), SCIPhashtableGetNElements(), SCIPhashtableGetLoad()
5491 - New methods in pub_misc.h to handle a resource activity, e.g., SCIPactivityCreate(), SCIPactivityFree(),
5492 SCIPactivityGetVar(), SCIPactivityGetDemand() ...
5493 - New methods for digraphs: SCIPdigraphResize() to resize the graph and SCIPdigraphSetNodeDatas() and
5494 SCIPdigraphGetNodeDatas() to set and get the data attached to the nodes.
5495
5496- Domain Propagation:
5497 - New method SCIPpropGetStrongBranchPropTime() which returns the time spent by a domain propagator during strong branching.
5498 - New methods SCIPmarkConsPropagate() and SCIPunmarkConsPropagate() to (un)mark a constraint for propagation.
5499
5500- LP and Cutting Planes:
5501 - New methods SCIPchgRowLhsDive() and SCIPchgRowRhsDive() to change left and right hand side of a row during diving.
5502 - Added parameter `cutoff` to SCIPsolveDiveLP(), SCIPsolveProbingLP(), and SCIPsolveProbingLPWithPricing()
5503 which is a pointer to store whether the diving/probing LP was infeasible or the objective limit was reached.
5504 - SCIPgetFirstLP{Dual/Lower}boundRoot() which return the value of the first LP solved at the root node
5505 - SCIPgetNRootFirstLPIterations() which returns the number of LP iterations for the first LP solved at the root node
5506 - SCIPlpiGetNorms(), SCIPlpiSetNorms() and SCIPlpiFreeNorms() for getting the LP pricing norms from the LP
5507 solver, loading them back into the solver and freeing the data
5508 - New method SCIPgetFirstLPTime() and SCIPgetNRootFirstLPIterations() to return time and iterations for the first LP solve
5509 and SCIPgetFirstLPDualboundRoot() and SCIPgetFirstLPLowerboundRoot() to return the first root LP dual and lower bound.
5510 - New method SCIPprintDualSol() which prints the dual solution for a pure LP (works only with preprocessing disabled).
5511 - New method SCIPisCutApplicable() which returns whether a cut is good enough to be applied.
5512
5513- Message Handler:
5514 - the main output routine of message.c (`bufferMessage` now handleMessage) has been rewritten: it now does not need
5515 a copy of the string to be output anymore, which makes the code much simpler (and also faster); it is passed a
5516 function pointer to the output function and uses it to directly output the (buffered) messages
5517 - New generic messagehandler output callback method SCIP_DECL_MESSAGEOUTPUTFUNC().
5518 - Removed parameter `msglength` from callback method SCIP_DECL_ERRORPRINTING().
5519 - New method SCIPmessageVPrintError() to print an error message.
5520 - Removed method SCIPmessagePrintWarningHeader().
5521
5522- Parameters:
5523 - New method SCIPparamGetCharAllowedValues() to get the allowed values for a char parameter.
5524 - New method SCIPgetParam() to get the parameter with a given name.
5525
5526- Variables:
5527 - SCIPapplyProbingVar() in prop_probing.h
5528 without deteriorating its objective value
5529 - SCIPshrinkDisjunctiveVarSet(), which takes an set of variables with corresponding bounds and boundtypes, and
5530 tries to derive global boundchanges and also to shorten this set of variables by using cliqe, implication and
5531 variable bound information
5532 - SCIPselectVarStrongBranching() to get the variable that fullstrongbranching would select
5533 - New method SCIPvarGetValuehistory() to get the value-based history of a variable.
5534
5535- Misc:
5536 - New method SCIPdoNotMultaggr() which returns whether multi-aggregation was disabled.
5537 - New method SCIPcreateFiniteSolCopy() to create a copy of a solution with infinite fixings removed.
5538 - New method SCIPadjustImplicitSolVals() which sets implicit integer variables to an integer value in the given
5539 solution without deteriorating its objective value.
5540 - New method SCIPcopyOrig() to copy the original problem. Analoguosly, use SCIPcopyOrigProb(), SCIPcopyOrigVars(),
5541 and SCIPcopyOrigConss() to copy original problem data, variables, or constraints, respectively.
5542 - New method SCIPwriteCliqueGraph() to write the clique graph in GML format into a given file
5543 - New method SCIPaddOrigObjoffset() to add an offset to the objective function.
5544 in original space and updates all orignal solutions correspondingly
5545 - New method SCIPcopyImplicationsCliques() to copy implications and cliques to a copied SCIP instance.
5546 - New method SCIPgetOpenNodesData() which returns all unprocessed nodes.
5547 - Added parameter `endline` to SCIPprintDisplayLine() to switch printing a newline symbol at the end of the line.
5548 - New method SCIPgetNLimSolsFound() returning the number of feasible primal solution respecting the objective limit.
5549
5550### Command line interface
5551
5552- allow dialog option to write clique graph
5553- dual solution values can now be obtained in the interactive shell after solving a pure
5554 LP without presolving
5555
5556### Interfaces to external software
5557
5558- new SoPlex 2.0 interface, can be enabled with `LPS=spx2`
5559- add support for SOS1 and SOS2 constraints to AMPL interface (see `interfaces/check/testset/SOS/sos?a.mod` for example)
5560- added copy of GAMS interface from COIN-OR/GAMSlinks project; GAMS-reader in SCIP can now read model instances from .gms files
5561- beta version of a python interface for the scipoptsuite is now available under interfaces/python
5562- beta version of a Java native interface is now available under `interfaces/jni`
5563
5564### Changed parameters
5565
5566- parameter `branching/scorefunction` has new value `q` for for `q`uotient branching score function
5567- replaced parameter `lp/checkfeas` by two parameters `lp/checkprimfeas` and `lp/checkdualfeas` to decide on primal and dual
5568 feasibility checks individually
5569- removed all local parameters `reading/(READER)/dynamic{conss|cols|rows}` and replaced them by global parameters
5570 `reading/dynamic{conss|cols|rows}`
5571- changed default value of parameter `numerics/dualfeastol` to 1e-7 for safer dual bounds from LP solver
5572- new possible values for parameter `heuristics/shiftandpropagate/sortkey` for sorting variables w.r.t. their norm,
5573 default changed from `u` to `v`, which means sorting downwards by violations
5574
5575- Constraints:
5576 - changed type of parameters `constraints/bivariate/scaling`, `constraints/quadratic/scaling`, `constraints/soc/scaling`
5577 from boolean to character
5578 - changed default for `constraints/{abspower,bivariate,nonlinear,quadratic,soc}/scaling` to off
5579 - changed default max coefficient for big-M constraint to be initial from 1e6 to 1e9
5580
5581- Separation:
5582 - changed default value of gomory cut separation parameter `separating/gomory/maxrank` from 0 to 3, to take also gomory
5583 cuts that could not be scaled to integral coefficients, with maximal rank 3 into account
5584 - remove parameter `separating/closecuts/relintnormtype`
5585
5586### New parameters
5587
5588- `branching/checksol` and `branching/heursbsol` to specify whether the strong branching LP solution
5589 should be checked for feasibility and whether a simple rounding heuristic should be run on this solution
5590- `branching/firstsbchild` and `branching/forceall` to specify the first child node to be
5591 investigated during strong branching (`u`p, `d`down, `a`uto) and whether always both children should be solved (only for
5592 strong branching with domain propagation, per default, the second child is not looked at when the first is infeasible)
5593- `conflict/fullshortenconflict` to decide whether we want to stop shortening a conflict set, when no
5594 global bound changes can be found anymore
5595- `conflict/maxvarsdetectimpliedbounds` to decide whether the a valid conflict of what maximal length
5596 will be used to derive global bound changes
5597- `constraints/{linear,knapsack}/detectcutoffbound` and `constraints/{linear,knapsack}/detectlowerbound`
5598 to enable/disable detection of constraint parallel to the objective function that will add an cutoffbound or an
5599 lowerbound respectively and these constraints will be prevented from entering the LP
5600- `constraints/and/upgraderesultant` to upgrade resultants of and constraints from binary to implicit binary variables, default is TRUE
5601- `constraints/abspower/scaling` and `constraints/nonlinear/scaling`
5602- `constraints/indicator/scaleslackvar` for scaling of the slack variable in indicator constraints
5603- `constraints/indicator/trysolfromcover` for trying to construct a feasible solution from a cover
5604- `constraints/linear/checkrelmaxabs` for checking linear constraints with a side of 0.0 relative to
5605- `constraints/linear/detectpartialobjective` to enable/disable the detection of sub-equations of the objective function
5606- `constraints/logicor/strengthen`, should pairwise constraint comparison try to strengthen constraints by removing superflous non-zeros?
5607- `constraints/xor/addextendedform` to add an extended formulation in XOR-constraints
5608- `constraints/xor/addflowextended` to add use the extended flow formulation in XOR-constraints
5609- `heuristics/<heurname>/lplimfac` for LNS heuristics to limit the number of LPs solved in a subproblem
5610 the maximum absolute value in the activity instead of 1.0
5611- `heuristics/shiftandpropagate/fixbinlocks` for fixing binary variables with no locks in one direction to the corresponding bound
5612- `heuristics/shiftandpropagate/collectstats` which decides whether variable statistics are collected
5613- `heuristics/shiftandpropagate/impliscontinuous` to decide whether implicit integer variables are treated as continuous variables
5614- `heuristics/shiftandpropagate/preferbinaries` and `heuristics/shiftandpropagate/stopafterfeasible`,
5615 which decide whether binaries should be shifted first and the shifting should be stopped when no violations are left
5616- `lp/disablecutoff` to toggle usage of LP cutoff bound (0: enabled, 1: disabled, 2: auto = disabled if pricers are used)
5617- `misc/calcintegral` (default TRUE) to trigger calculation of primal-dual integral
5618- `misc/finitesolutionstore` to switch whether infinite fixings should be removed from solutions before
5619 copying them to the original solution store
5620- `misc/permuteconss` and `misc/permutevars` to control whether variables and/or constraints should be permuted, if permutationseed != -1
5621- `presolving/components/feastolfactor` to increase the feasibility tolerance in all sub-SCIPs, when solving a component
5622- `propagating/obbt/conditionlimit` to discard instable LP bases
5623- `reading/(READER)/initialconss` that determines whether model constraints are initial
5624- `reading/cipreader/writefixedvars` for disabling printing of fixed variables in CIP format
5625- `reading/lpreader/aggrlinearization-ands` and `reading/mpsreader/aggrlinearization-ands` to enable/disable
5626 the printing of the weak or strict relaxation of and-constraints in LP and MPS format, respectively
5627- `reading/lpreader/linearize-and-constraints` and `reading/mpsreader/linearize-and-constraints` to
5628 allow and-constraints to be linearized when printing in LP and MPS format, respectively
5629- `separating/feastolfac` to allow dynamic decrease of relaxation feasibility tolerance depending on feasibility to applied cuts,
5630 i.e., allow relaxation solutions to have a primal infeasibility of at most this factor times the infeasibility of applied cuts
5631- `separating/gomory/sidetypebasis` to decide whether the sides of ranged rows should be determined from the basis status
5632- `separating/oddcycle/cutthreshold` to run odd cycle separation if not enough cuts have been found
5633- `separating/zerohalf/delayedcuts` to use the delayed cutpool for the zerohalf separator
5634- `write/allconss` to enable that all constraints are written
5635- `write/genericnamesoffset` when writing a generic problem to define an offset on the variable numbering
5636
5637### Data structures
5638
5639- New structure to store value-based branching and inference history (see pub_history.h).
5640- new data structure for (circular) queues (`SCIP_QUEUE`)
5641- hash tables will now increase dynamically
5642- Moved LP solver interfaces to subdirectory `src/lpi`.
5643
5644Testing
5645-------
5646
5647- added McNemar tests and Wilcoxon signed rank tests to cmpres.awk evaluation scripts
5648- added passing MEM option of testgams(cluster) target as workspace option to GAMS jobs
5649- extended test scripts by statistical tests
5650
5651Build system
5652------------
5653
5654### Makefile
5655
5656- default flag for ZIMPL is now `auto`, which means that it is built if and only if GMP is available (GMP=true)
5657- fixed make install for older Mac systems where install command does not have option -t
5658- dropped support for Ipopt < 3.10
5659
5660Fixed bugs
5661----------
5662
5663- fixed bug when adding (global) clique, implications or variable bound information in solving stage that lead to
5664 global bound changes which contradict local bounds and therefore need to be stored as pending bound changes
5665- unlinking a solution now copies solution values smaller than SCIPepsilon() avoiding some feasible solution in the
5666 transformed problem to be infeasible in the original problem
5667- fixed bug when flushing the warning buffer when SCIP is closed
5668- fixed bug when a bound change contradicts a local bound and is stored as pending, but the contradicting local
5669 bound becomes global afterwards (--> node where pending bound change is valid can be cut off)
5670- fixed statistics bug: externally given solutions and new solutions found while transforming existing ones
5671 are now listed in line `other solutions` of primal heuristics statistics
5672- fixed bug in random generators SCIPgetRandomInt() and SCIPgetRandomReal() for large intervals
5673- make sure that bound changes of negated original variables are correct
5674
5675- Branching:
5676 - fixed bug w.r.t. changing the variable branching priority beyond the problem stage
5677 - allow again branching on continuous variables with huge bounds
5678
5679- Separation:
5680 - fixed bug in sepa_cgmip computeObjWeightSize() w.r.t. equal sized rows
5681 - fixed wrong bound calculation in sepa_rapidlearning
5682 - fixed bug in flowcover separator to exclude unconstrained rows in aggregation
5683
5684- LP and Interfaces:
5685 - fixed bug that lead to resolving the LP after diving instead of restoring the buffered solution
5686 - fixed rare bug with conflict analysis and LP/LPI having different states after diving
5687 - fixed several bugs in lpi_grb
5688 - fixed wrong strong branching results in lpi_grb.c and an invalid write
5689 - fixed bug in handling max-function in ampl interface; added support for min-function
5690
5691- Presolving:
5692 - fixed bug in prop_dualfix w.r.t. to fixing of variables to infinity after presolving
5693 - fixed wrong presolving finished status which sometimes occurred when the time limit was hit during presolve
5694 - fixed bug where a limit on presolving rounds was exceeded by 1
5695 - fixed minor bugs in presolving in cons_setppc.c and cons_logicor.c
5696 - fixed minor bug in cons_linear w.r.t. disabled presolving
5697
5698- Propagators:
5699 - fixed bug in genvbounds propagator occurring when objective offset or scale changes after a restart
5700 - fixed bug in genvbounds propagator by replacing non-active variables on right-hand side after presolving
5701
5702- Readers:
5703 - fixed memory bug in reader_mps
5704 - fixed several minor bugs with handling of memory when writing aggregated variables (reader_lp, reader_mps)
5705 - fixed bug in reader_lp when writing bilinear terms (product sign was missing)
5706 - fixed bug in reading indicator constraints in mps-format
5707 - nonlinear readers now create auxiliary objective variables and constraints always as initial and not removable
5708 in order to avoid unbounded LPs due to loose variables with infinite best bound
5709
5710- Constraints:
5711 - fixed several bugs where variables or constraints were not freed correctly
5712 - do not multi-aggregate variables if the constant would be a huge value in order to avoid numerical troubles
5713 - fixed bug with infinite multi-aggregation constants
5714 - fixed output of aggregated variables in indicator constraints in lp and mps-format
5715 - improved handling of initial constraints: constraints which are initial, but added during the search to an already
5716 treated node are kept and added to the LP at every node where they are active
5717 - fixed bug in cons_superindicator concerning names of upgraded constraints
5718 - fixed bug in cons_indicator with trying to create solution in problem stage
5719 - fixed bug in cons_orbitope with fixing upper right triangle in non-root nodes
5720
5721Miscellaneous
5722-------------
5723
5724- new SCIP Optimization Suite homepages
5725
5726@page RN3_0 Release notes for SCIP 3.0
5727
5728@section RN302 SCIP 3.0.2
5729*************************
5730
5731Features
5732--------
5733
5734- reading erroneous CIP files can now output some indication of syntax errors
5735- can now run splint on core files
5736- cons_xor now uses the integral variable in propagation
5737- allowed to switch on/off the solution debugging
5738
5739Performance improvements
5740------------------------
5741
5742- improved SCIPlpiAdd{Cols,Rows}() in SoPlex LPi
5743
5744Examples and applications
5745-------------------------
5746
5747Interface changes
5748-----------------
5749
5750### New API functions
5751
5752- SCIPmarkColNotRemovableLocal() and SCIPmarkRowNotRemovableLocal() to forbid removal of an column/row
5753 from the LP in the current node
5754- SCIPmessageVPrintError()
5755
5756### Command line interface
5757
5758- can now output the solutions in the solution pool in the interactive shell
5759
5760### Interfaces to external software
5761
5762- updated Mosek LP interface to compile with Mosek 7
5763
5764Fixed bugs
5765----------
5766
5767- fixed bugs in solution counting
5768- fixed fieldtypes in sorting template
5769- fixed bug concerning the userinterrupt flag, which was not reset
5770- fixed solution collection when counting solutions
5771- fixed bug with storing original solutions
5772- fixed bug with infinite multi-aggregation constants
5773- fixed bug that removing reverse implication did not reset closestvblpcount
5774- fixed bug that duplicate solutions stopped copying of solutions to original solution candidate store
5775- forbid branching on variables with huge bounds; such huge values cannot be enumerated with fixed precision
5776 floating point arithmetics
5777- fixed bug that Ipopt's error message was not fully shown due to exiting before the message handler buffer was emptied
5778- unlinking a solution now copies solution values smaller than SCIPepsilon() avoiding some feasible solution in the
5779 transformed problem to be infeasible in the original problem
5780- allow to add columns (rows) with nonzero indices beyond current number of rows (columns) in SoPlex LPi
5781- updated get.ASL script to cope with broken ftp access to netlib server
5782
5783- Memory:
5784 - fixed bugs with freeing C++ object data for problem and variables
5785 - fixed memory leak in lp.c (probably never occurred so far since array was not used)
5786 - fixed bug in sepa_zerohalf.c where the maxcuts(root) parameters led to an invalid memory allocation call
5787
5788- LP:
5789 - fixed assert in solve.c with branched status and LP reached the objective limit
5790 - fixed bug in heur_oneopt.c and heur_clique.c which was caused by side-effects when calling SCIPconstructLP(); when
5791 adding new variables in this method (e.g. adding new variables needed for a relaxation), this changes the variables
5792 array of SCIP
5793 - fixed problem that diving did not save status for infeasible LPs
5794 - fixed bug in SCIPlpComputeRelIntPoint() with wrong iteration limit and with wrong recompution
5795 - fixed bug that old LP size was not updated for deadend if no LP was solved
5796
5797- Expressions:
5798 - fixed issues with ungraceful termination when encountering unsupported expression operands in AMPL interface
5799 - fixed bug in backward propagation of linear expressions in expression graph
5800
5801- Propagation:
5802 - fixed potential performance issue with tree depth always assumed to be zero when propagating in probing mode
5803 - fixed bug in prop_vbound w.r.t. creation of variables during the search
5804 - fixed several bugs in propagation of cons_xor: need to take integral variables into account
5805 - fixed bug in cons_abspower.c handling infinity values in propagation
5806 - fixed bug in cons_and.c when a constraint was not correctly propagated which led to wrong dual-presolve reductions
5807 - fixed bug in cons_abspower: wrong infinity check when propagating bounds
5808
5809- Presolving:
5810 - fixed bug that the number aggregated variables were not counted in presol_inttobinary.c
5811 - fixed bug in presol_domcol: locks are now checked to see whether rounding was forbidden for a variable
5812
5813- Reader:
5814 - fixed bug in reader_gms.c w.r.t. writing nonlinear expressions with polynomials with constants
5815 - fixed bugs in parsing bounds from CIP-files, in reader_gms and AMPL interface
5816 - fixed bug when reading a mps formated file with a missing bound in the bound section
5817
5818- Constraints:
5819 - fixed bug in cons_bounddisjunction with satisfied literal of multi-aggregated variable
5820 - fixed bug in upgrade method of cons_soc
5821 - fixed issue with negated variables in cons_xor.c
5822 - fixed several asserts in cons_xor presolving
5823 - fixed bug in cons_xor.c calling method on null pointer row
5824 - fixed bug using a too hard comparison on the objective-infeasible-decision in constraint enforcement
5825 - fixed possible cycling in enforcement of nonlinear constraints due to too early removal of newly added cuts from LP
5826 - fixed bug wrongly removing constraints locally while counting
5827 - fixed bugs in cons_bivariate.c when the nonlinear function is not differentiable on the boundary of the domain
5828 - fixed bug in cons_indicator.c:SCIPmakeIndicatorFeasible() with handling fixed variables
5829 - fixed bug in cons_integral: check integrality of implicit integer variables when a solution is checked for feasibility
5830 - fixed bug in Undercover with `pseudo-`quadratic constraints
5831 - fixed bug with quadratic constraints not being upgraded
5832 - fixed bug in intervalarith.c: bivariate quad. equations may have been solved wrongly if second variable is unbounded
5833
5834- Separation:
5835 - fixed bug in sepa_zerohalf.c not copying the displays to the subscip, but still changing a display parameter there
5836 - fixed iteration limit determination in sepa_closecuts
5837 - fixed bug in sepa_closecuts: need to make sure that variable values of separation point satisfy bounds
5838 - fixed bugs in sepa_oddcylce: number of arcs have to be adjusted, handle implicit binary variables,
5839 fixed bug in heuristic separation method, fixed asserts
5840 - fixed wrong bound calculation in sepa_rapidlearning
5841
5842@section RN301 SCIP 3.0.1
5843*************************
5844
5845Features
5846--------
5847
5848- added delayed cutpool which only gets separated if the sepastore is empty after a separation round
5849- sepa_cgmip can now take the objective row into account
5850- added possibility to run clang compiler
5851- statistics now include output on number of solutions that respect objective limit
5852
5853Performance improvements
5854------------------------
5855
5856- also copying active tight cuts from the delayed cut pool when calling SCIPcopyCuts()
5857- sort genvbounds only when root node is finished; apply more often
5858
5859Examples and applications
5860-------------------------
5861
5862Interface changes
5863-----------------
5864
5865- when using an objective limit, heuristic characters are not displayed any longer for worse solutions
5866
5867### Deleted and changed API functions
5868
5869- fixed spelling in the method name SCIPgmlWriteClosing()
5870
5871### New API functions
5872
5873- SCIPgetNLimSolsFound() to get number of solutions that respect the objective limit
5874
5875Fixed bugs
5876----------
5877
5878- fixed issue with applying the effective root depth during the search
5879- fixed bug concerning usage of dualbound and lowerbound
5880- fixed bug trying to color probing nodes, which are not added to the vbc output anymore
5881- fixed bug in sorting template
5882- fixed bug leading to removing a ranged row parallel to the objective function, although one of the sides was still needed
5883- fixed a bug correcting the binvarssorted flag in cons_linear.c
5884- fixed bug in cons_varbound.c not resolving multi-aggregated variables
5885- relaxed assert in SCIPvarCh{Lb,Ub}{Global,Local} that new bound must be tighter to feastol
5886- fixed contra-intuitive behavior when using SCIP with objective limits and solution limit at the same time;
5887 SCIP now only stops when sufficiently many solutions better than the objective limit have been found
5888- fixed bug when adding binary implications with non-vartype binary variables
5889- fixed bug adding binary implications on binary variables with type != `SCIP_VARTYPE_BINARY`
5890- fixed bug concerning different tolerances for reached objective limit in case of pricing with fastmip
5891
5892- LP:
5893 - fixed bug which disabled iteration limit in SCIPlpSolveAndEval()
5894 - ensure consistency of LP bounds during OBBT diving, i.e., that lower <= upper holds exactly
5895 - set lpsolstat to `SCIP_LPSOLSTAT_NOTSOLVED` in SCIPchg{Lp,Dual}feastol()
5896 - use tighter dual feasibility tolerance for LPs solved during optimization-based bound tightening
5897 - fixed bug with unflushed LP arising from global bound changes in strong branching
5898
5899- Constraints:
5900 - fixed issue with deleting varbound constraints in case the bound change was not applied
5901 - fixed bugs in parsing dis-/conjunctive constraints
5902 - fixed bug with handling of empty logicor and bounddisjunction constraints
5903 - fixed issue in cumulative constraint and separation
5904 - fixed bug when sorting knapsack constraints with the same weights
5905 - fixed bug resulting in trying to delete an upgraded linear constraint a second time in exitpre callback
5906 - fixed minor bug in conjunctive constraint handler printing wrong constraint
5907 - fixed bug in disjunctive constraint handler when enforcing a constraint
5908 - fixed behaviour change of indicator constraint handler when solving another instance after solving one using the
5909 interactive shell
5910 - fixed several issues in cumulative constraint handler
5911 - fixed bug in cumulative constraint handler w.r.t. getting active variables
5912 - fixed bug in cumulative constraint handler concerning conflict analysis
5913
5914- LPI and Interfaces:
5915 - fixed bug in CppAD in connection with abspower constraints
5916 - fixed bug in CppAD when using signpower functions with expression pointers that do not fit into an unsigned int
5917 - better handling of generalized (Lagrangian) variable bounds that are not in the LPI
5918 - fixed wrong basis rstat values in CPLEX LPI
5919 - fixed bug with LP not being flushed after bound changes on columns that are not in the LPI
5920 - methods SCIPlpiIs{PrimalFeasible,DualFeasible,DualUnbounded}() in SoPlex LPi now check that the LP is not perturbed,
5921 which may happen when stopping due to iteration or time limit
5922 - fixed inconsistencies between methods SCIPlpiIs{PrimalFeasible,DualFeasible,Optimal,...} in SoPlex LPi
5923
5924- Propagation:
5925 - fixed bug when adding linear constraints with non active variables in solving process, during propagation this
5926 resulted in changing the row, which is not possible for unmodifiable constraints/locked rows
5927 - fixed small issue in pseudo objective propagator w.r.t. propagating the lower bound globally
5928 - fixed bug in cons_orbitope: in rare cases one cannot repropagate
5929 - fixed bug of wrong result code in propagation in prop_genvbound.c
5930
5931- Presolve:
5932 - fixed bug in copying nonlinear constraints during presolve (resulted
5933 in wrongly declaring instances as infeasible when using component presolve)
5934 - fixed bug in copying nonlinear constraints during presolve (nonlinear part was not copied)
5935
5936- Heuristics:
5937 - fixed wrong solving status (OPTIMAL) in case an unbounded solution was provided or found by heuristic before presolve
5938 - fixed bug in heur_subnlp running with tightened tolerances: sumepsilon must be tightened like feastol and epsilon
5939 - fixed bug in nlp diving heuristic for fractional variables with values slightly outside of their domain
5940
5941- Numerics:
5942 - fixed several numeric issues
5943 - fixed numerical bug in conflict.c relaxing bounds while keeping an infeasibility proof
5944 - fixed feasibility decision bug when replacing inactive variables by their active counterparts, which might change the
5945 redundancy status of a bounddisjunction constraint due to numerics
5946 - fixed numerical bug adding a relaxed bound for conflict analysis in cons_varbound
5947 - fixed numerical bug in conflict analysis of genvbounds propagator
5948
5949@section RN300 SCIP 3.0.0
5950*************************
5951
5952Features
5953--------
5954
5955- SCIPcomputeLPRelIntPoint() with normtype=`s` now uses homogenized LP for computing rel.int. point too and allow to
5956 set relaxrows = FALSE
5957- new column showing the pseudo objective value
5958- digraph structure added to misc.c and pub_misc.h that can be used to handle directed graphs, compute undirected
5959 components in the graph and sort these components (almost) topologically
5960- SCIP does now print an info message when the root LP could not be solved or is unbounded
5961- added counter and clock for SCIPcopy() calls
5962- correct initialization of steepest edge weights with SoPlex 1.6.0.4
5963- parameters can now be fixed, which means that their value cannot be changed unless they are unfixed, first;
5964 the fixing status of a parameter is copied to sub-SCIPs, which allows to ensure that certain parameters
5965 are also not changed when, e.g., heuristics change emphasis settings or also specific parameters
5966- automatic transfer of original solutions (e.g., provided by the user, from solution pool, after restart, from heuristic
5967 adding original solution during solve) to the transformed space (might fail due to, e.g., dual fixings)
5968- added possibility to use GUBs for lifting knapsack cuts (disabled)
5969- added pre- and post-conditions in doxygen documentation for all methods of scip.{c,h}
5970- added zeroobj heuristic that solves a copy of the problem without an objective function and with quite strict limits
5971 on the number of nodes and LP iterations
5972- complete reworking of the vbounds propagator: it now takes into account variable bounds, cliques and implications,
5973 stores bounds of variables which were changed and performs a forward propagation from these bounds, i.e., tries to
5974 derive new bounds for other variables; during propagation, bound changes are propagated in an (almost) topological order
5975
5976- Constraints:
5977 - full version of cumulative constraint handler
5978 - new constraint handler `superindicator` for indicator constraints with slack constraints of arbitrary type
5979 - implemented first clique lifting procedure in cons_setppc.c (by default is off)
5980 - the conjunction and disjunction constraint handlers are now able to parse their CIP output format
5981
5982- Memory:
5983 - better handling of memory limits, in particular for large problems
5984 - estimate memory consumption for sub-SCIP and do not copy them if close to memory limit
5985
5986- Presolve:
5987 - time for initpre and exitpre methods is now also measured in presolving time
5988 - added dual presolving for and-constraints difficult instances (no guarantees)
5989 - oneopt can now be called before presolving
5990 - added a presolving step in the disjunctive constraint handler, removing disjunction, where a sub-constraint was
5991 deleted, which means this sub-constraint is redundant, which again means it is always TRUE or will be enforced by
5992 another constraint
5993 - added new presolver convertinttobin, which converts bounded integer variables to their binary representation, e.g.
5994 for integer variable 0 <= x <= 10 the binary variables y0, y1, y2 and y3 are created, such that
5995 1 y0 + 2 y1 + 4 y2 + 8 y3 <= 10 and x = 1 y0 + 2 y1 + 4 y2 + 8 y3
5996 - added new presolver gateextraction, which tries to find and-gates/constraints which are linearized
5997 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
5998 constraints e.g. (x + y + z >= 1, x + y <= 1, x + z <= 1 and y + z <= 1 => x + y + z == 1));
5999 gate-extractor is also able to detect logicor constraints and set-packing/-partitioning constraints with the same
6000 variables, to upgrade these both constraints to a set-partitioning constraint
6001 - added new presolver components, that searches for independent components in the problem structure and solves
6002 these components as sub-SCIPs when they are small enough (per default <= 20 discrete variables, nodelimit of 10000)
6003 - added new presolver domcol that looks for dominated columns in a MIP and tries to fix them
6004
6005- Reader:
6006 - CNF reader now creates feasibility instances per default, usage of an objective has to be set by a parameter
6007 - added reader for MI(NL)Ps in OSiL (Optimization Services Instance Language) format
6008
6009- Statistic:
6010 - new statistics and new statistic output messages
6011 - number of presolving calls of plugins is counted and displayed in the statistics,
6012 can be accessed via SCIPpresolGetNCalls() and SCIP{prop/conshdlr}getNPresolCalls()
6013 - the statistics shows for a branching rule the number of calls for LP, extern and pseudo candidates
6014 - new switch `SCIP_STATISTIC` and new macros SCIPstatisticMessage(), SCIPstatisticPrintf() and SCIPstatistic() to output
6015 statistic and execute code lines which are only needed therefor. Works as `SCIP_DEBUG` and SCIPdebugXyz()
6016 - added statistics on the number of cuts/rows that have actually been applied to the lp for each constraint handler and separator;
6017 use SCIPcreate(Empty)RowCons() and SCIPcreate(Empty)RowSepa() to support the statistics.
6018
6019- NLP:
6020 - new propagators obbt and genvbounds for MINLP
6021 - new NLPI parameter `SCIP_NLPPAR_FASTFAIL` to enable convergence checks in NLP solver to stop early on seemingly
6022 - added nlpdiving heuristic that comprises several diving heuristics using an NLP relaxation
6023
6024Performance improvements
6025------------------------
6026
6027- improved scaling by choosing the smallest scaler
6028- if first root lp is solved and the optimality is rejected by SCIP, there won't be an unnecessary solving of the lp
6029 from scratch again
6030- several performance improvements for Pseudo-Boolean optimization, pseudo objective propagator
6031- streamlined initlp functions in cons_indicator, cons_sos1, cons_sos2 (add rows only if needed)
6032- improved time used for adding implications
6033- speed up in SCIPboolarrayExtend() in misc.c replacing a for loop with BMSmoveMemoryArray() call
6034- speed up in var.c changing some recursive calls into iterative calls and reducing the number of VARFIX event that are
6035 thrown for fixation, aggregation or multi-aggregations
6036- revised reduced cost propagator
6037- increased performance in SCIPcliqueAddVar(), adding a variable to a clique
6038- tighten primal and dual feasibility tolerances independently if they are not reached in LP solving
6039
6040- Probing:
6041 - if probing reached the end of all variables it will restart the probing cycle correctly
6042 - improved probing by ordering the variables differently and applying the one-branch before the zero-branch
6043
6044- Constraints:
6045 - improved scaling of linear constraints, linear constraints with integral variables will now be scale with
6046 1e+06/MAX(maximal absolute coefficient, 1.0) instead of 1e+03/MAX(maximal absolute coefficient, 1.0);
6047 if all coefficients are in absolute value equal they will be scaled by that
6048 - added clique presolving for and-constraints, which checks if two operands or one operand and the resultant are in a
6049 clique and then fixes the resultant to 0 and in the former case we can delete the and-constraint too
6050 - speed up in linear constraint handler replacing aggregated variables
6051 - when all nonlinearities have been fixed and the number of nonfixed variables is 1 in cons_nonlinear/cons_quadratic/
6052 cons_bivariate, handle it by a bound change instead of adding a linear constraint
6053
6054- Separation:
6055 - automatically turn off separation in sepa_oddcycle if it was too unsuccessful within the last calls
6056 - use faster Dijkstra variants in sepa_oddcycle
6057 - improved tcliquegraphAddImplicsVars() in sepa_clique.c to faster add possible variables
6058 - changed emphasis settings: knapsack disaggregation is now allowed in fast presolving, CG-MIP separator disabled in
6059 aggressive separation
6060
6061- Reader:
6062 - improved lp-, mps-, opb-reading time
6063 - speed up mps reader asking parameters only once
6064
6065- Heuristics:
6066 - added parameters mincoveredrel and mincoveredabs to heur_undercover to only run if problem is sufficiently nonlinear
6067 - improved intdiving heuristic by activating backtracking to a different fixing value
6068 - heur_undercover treats indicator constraints as nonlinear and fixes the binary variable for linearization
6069
6070Examples and applications
6071-------------------------
6072
6073- new examples for scheduling and usage of the callable library with nonlinear problems
6074- the error messages are not handled via the message handler anymore; per default the error message a written to stderr
6075
6076Interface changes
6077-----------------
6078
6079- introduced basic inclusion and creation methods to simplify usage of the SCIP library
6080- allowed to start diving mode even if LP is not flushed, not solved, or not solved to optimality
6081- changed the message handler system within SCIP heavily such that it is thread save
6082- the resolve propagation methods for the constraint handler and propagator getting a new parameter called relaxedbd;
6083 explaining/resolving this relaxed bound is sufficient
6084- default integer comparer SCIPsortCompInt() (see pub_misc.h)
6085
6086- LP interface:
6087 - SoPlex LPI supports setting of `SCIP_LPPAR_DUALFEASTOL` when using SoPlex version 1.6.0.5 and higher.
6088
6089- Problem:
6090 - Forbid problem modifications in `SCIP_STAGE_{INIT,EXIT}PRESOLVE` (see pre-conditions for corresponding methods in scip.h).
6091
6092- Miscellaneous:
6093 - New macro SCIPdebugPrintCons() to print constraint only if `SCIP_DEBUG` flag is set.
6094 - all objscip *.h file now use the default SCIP interface macros (this should avoid errors when changing the interface)
6095
6096### New and changed callbacks
6097
6098- Constraint Handler:
6099 - Added a propagation timing parameter `proptiming` to SCIP_DECL_CONSPROP(), giving the current timing at which
6100 this method is called (also to the corresponding c++ wrapper classes).
6101 - New optional callback methods in constraint handlers: `SCIP_DECL_CONSGETVARS` and `SCIP_DECL_CONSGETNVARS`.
6102 These callbacks, if implemented, should return an array of all variables and the number of all variables used
6103 by the given constraint, respectively. (This method might, e.g., be called by a presolver)
6104
6105- NLP Solver Interface:
6106 - New NLPI callback SCIP_DECL_NLPISETMESSAGEHDLR() to set message handler in NLP solver interfaces.
6107
6108- Propagator:
6109 - Added a propagation timing parameter `proptiming` to SCIP_DECL_PROPEXEC(), giving the current timing at which this method is
6110 called (also to the corresponding c++ wrapper classes).
6111
6112- Plugin management:
6113 - added `basic` inclusion methods which have only fundamental data of the plug-ins as arguments; added setter functions
6114 for all non-fundamental callbacks of the plug-ins; the plug-in types with basic inclusion functions are:
6115 readers, constraint handlers, conflict handlers, presolvers, propagators, heuristics, separators, relaxation handlers,
6116 branching rules, node selectors and pricers; these methods should make the usage easier, sparing out optional callbacks and
6117 parameters: e.g., SCIPincludeConshdlrBasic();
6118 - To extend the basic functionalities, there are setter method to add
6119 optional callbacks. For example SCIPsetConshdlrParse(), SCIPsetPropCopy() or SCIPsetHeurInitsol().
6120
6121- Constraint Handlers:
6122 - Added basic creation methods for all constraints types, e.g., SCIPcreateConsBasicLinear(); these methods should make the usage easier,
6123 sparing out optional callbacks and parameters.
6124
6125### Deleted and changed API functions
6126
6127- SCIPcomputeCoverUndercover() now has an additional parameter coverbd
6128- tcliqueMaxClique has an additional parameter to store the number of used branch-and-bound nodes
6129- the code in `src/dijkstra` and `src/xml` has been changed to (increasingly) conform to the SCIP coding style;
6130 all function (and variable) names have been changed (do not contain `_` anymore).
6131- renamed SCIPstairmap*Core() to SCIPstairmap*Stair()
6132
6133- Conflict Analysis:
6134 - Added parameter `relaxedbds` to conflict handler callback method SCIP_DECL_CONFLICTEXEC(). This array contains
6135 bounds which are sufficient to create a valid conflict
6136
6137- Constraint Handler:
6138 - Added a parameter `restart` to the SCIP_DECL_CONSEXITSOL() callback method, indicating whether this call was
6139 triggered by a restart.
6140 - Added a parameter `relaxedbd` to SCIP_DECL_CONSRESPROP() callback method. If explaining a given bound change
6141 (index), it is sufficient to explain the reason for reaching the `relaxedbd` value, see above
6142 - Removed parameters `isunbounded`, `isinfeasible` and `result` from SCIP_DECL_CONSINITPRE() and SCIP_DECL_CONSEXITPRE()
6143 callback methods. It is not allowed to determine unboundedness or infeasibility in these callbacks, anymore.
6144 - added a `SCIP_CONS*` parameter to SCIPcreateConsDisjunction() which can represent the linear relaxation of the whole
6145 disjunction constraint as a conjunction constraint, or `NULL`
6146 - remove problematic function cons_indicator:SCIPsetSlackVarIndicator()
6147 - Renamed SCIPgetCountedSparseSolutions() to SCIPgetCountedSparseSols() in cons_countsols.{c,h}.
6148
6149- Counting:
6150 - Changed the counting system within SCIP heavily. New method for `SCIP_SPARSESOL` usage, SCIPsparseSolCreate(),
6151 SCIPsparseSolFree(), SCIPsparseSolGetVars(), SCIPsparseSolGetNVars(), SCIPsparseSolGetLbs(), SCIPsparseSolGetUbs()
6152 in (pub_)misc.{c,h}.
6153
6154- Cuts and Separation:
6155 - removed `targetscip` parameter from SCIPconvertCutsToConss(), now this function can only convert cuts on one instance,
6156 otherwise use SCIPcopyCuts()
6157 - added `ncutsadded` parameter to SCIPcopyCuts() to be able to store the number of copied/converted cuts
6158 - New functions SCIPcreateEmptyRowCons(), SCIPcreateEmptyRowSepa(), SCIPcreateRowCons(), and SCIPcreateRowSepa() that allow
6159 to set the originating constraint handler or separator of a row respectively; this is, for instance, needed for statistics
6160 on the number of applied cuts. If rows are created outside a constraint handler or separator use SCIPcreateRowUnspec() and
6161 SCIPcreateEmptyRowUnspec(). The use of SCIPcreateEmptyRow() and SCIPcreateRow() is deprecated.
6162 - New functions SCIProwGetOrigintype(), SCIProwGetOriginCons(), and SCIProwGetOriginSepa() to obtain the originator
6163 that created a row.
6164
6165- LP:
6166 - new parameter numerics/lpfeastol for primal feasibility tolerance used in LP solver
6167 - SCIPcomputeLPRelIntPoint() takes two new arguments giving a time and iteration limit
6168 - SCIPcolGetStrongbranchLPAge(), SCIPgetVarStrongbranchLPAge(), SCIPgetNLPs(), SCIPgetNPrimalLPs(), SCIPgetNDualLPs(),
6169 SCIPgetNBarrierLPs(), SCIPgetNResolveLPs(), SCIPgetNPrimalResolveLPs(), SCIPgetNDualResolveLPs(), SCIPgetNNodeLPs(),
6170 SCIPgetNNodeInitLPs(), SCIPgetNDivingLPs(), SCIPgetNStrongbranchs(), SCIPgetNRootStrongbranchs() now return a longint
6171 instead of an integer
6172
6173- Message Handler and Printing:
6174 - New callback method SCIP_DECL_MESSAGEHDLRFREE() which is called when the message handler is freed.
6175 - The old callback method SCIP_DECL_MESSAGEERROR() was replaced by the callback method SCIP_DECL_ERRORPRINTING().
6176 - the follwing methods additionally need the SCIP pointer as parameter to make the output thread save:
6177 SCIPprintVersion(), SCIPsetMessagehdlr(), SCIPgetMessagehdlr() and SCIPwarningMessage()
6178 - the error printing method can be replaced using the method SCIPmessageSetErrorPrinting(); the default error message
6179 printing can be recoverd via SCIPmessageSetErrorPrintingDefault() (see pub_message.h)
6180 - Changed the message handler system within SCIP heavily such that it is thread-safe. SCIPcreateMessagehdlr() in
6181 scip.{c,h} was replaced by SCIPmessagehdlrCreate() in pub_message.h/message.c with a changed parameter list;
6182 see pub_message.h and type_message.h.
6183 - removed method SCIPcreateMesshdlr(), please use SCIPmessagehdlrCreate() (see pub_message.c)
6184 - removed method SCIPfreeMesshdlr(), please use SCIPmessagehdlrRelease() (see pub_message.c)
6185 - Error messages (SCIPerrorMessage()) are not handled via the message handler anymore; per default the error
6186 message is written to stderr.
6187 - the following methods need an additional message handler: SCIPdispLongint(), SCIPdispInt(), SCIPdispTime(), all message
6188 handler methods (see pub_message.h), SCIPhashtablePrintStatistics(), SCIPhashmapPrintStatistics(), SCIPlpiCreate()
6189 - SCIPprintCons() does not print termination symbol `;\n` anymore; if wanted, use SCIPinfoMessage() to print `;\n` manually
6190 - remove SCIPcolPrint() and SCIProwPrint(), please use SCIPprintCol() SCIPprintRow() see scip.h
6191 - method SCIPprintError() does not need the file stream anymore. The error is written via the error message callback.
6192
6193- Nonlinear expressions, relaxation, and solver interface:
6194 - Method SCIPexprtreeRemoveFixedVars() is not public anymore.
6195 - Renamed SCIPmarkNonlinearitiesPresent() to SCIPenableNLP()
6196 - Renamed SCIPhasNonlinearitiesPresent() to SCIPisNLPEnabled().
6197 - removed SCIPmarkContinuousNonlinearitiesPresent(),
6198 renamed SCIPhasContinuousNonlinearitiesPresent() to SCIPhasNLPContinuousNonlinearity() and allow call only during
6199 initsolve and solve,
6200
6201- Parameters:
6202 - Replaced SCIPparamSet*() by SCIPchg*Param()
6203 + replaced SCIPparamSetBool() by SCIPchgBoolParam()
6204 + replaced SCIPparamSetInt() by SCIPchgIntParam()
6205 + replaced SCIPparamSetLongint() by SCIPchgLongintParam()
6206 + replaced SCIPparamSetReal() by SCIPchgRealParam()
6207 + replaced SCIPparamSetChar() by SCIPchgCharParam()
6208 + replaced SCIPparamSetString() by SCIPchgStringParam()
6209
6210- Presolving:
6211 - Removed parameters `isunbounded`, `isinfeasible` and `result` from SCIP_DECL_PRESOLINITPRE() and
6212 SCIP_DECL_PRESOLSEXITPRE(). It is not allowed to determine unboundedness or infeasibility in these callbacks, anymore.
6213
6214- Propagator:
6215 - changed parameters of function SCIPpropagateCutoffboundVar() in prop_pseudoobj.{c,h}
6216 - Added a parameter `restart` to SCIP_DECL_PROPEXITSOL() callback method, indicating whether this call was triggered
6217 by a restart.
6218 - Added a parameter `relaxedbd` to SCIP_DECL_PROPRESPROP() callback method. If explaining a given bound change
6219 (index), it is sufficient to explain the reason for reaching the `relaxedbd` value.
6220 - Removed parameters `isunbounded`, `isinfeasible` and `result` from SCIP_DECL_PROPINITPRE() and
6221 SCIP_DECL_PROPEXITPRE() callback methods. It is not allowed to determined unboundedness or infeasibility in
6222 these callbacks, anymore.
6223
6224- Sort and Copy:
6225 - The methods SCIPsortedvecInsert*() have an additional parameter which can be used to receive the position where
6226 the new element was inserted, if this is not of interest a `NULL` pointer can be given
6227 - new parameter in SCIPcopyPlugins() to indicate whether the message handler from the source SCIP should be passed to the
6228 target SCIP (only the pointer is copied and the usage counter of the message handler is increased)
6229 - New parameter in SCIPcopy() to indicate whether the message handler from the source SCIP
6230 should be passed to the target SCIP (only the pointer is copied and the usage counter of the message handler is
6231 increased). In multi theaded enviroment this parameter needs to be set to FALSE.
6232
6233- Variable usage:
6234 - rename SCIPvarGetBestBound() to SCIPvarGetBestBoundLocal()
6235 - rename SCIPvarGetWorstBound() to SCIPvarGetWorstBoundLocal()
6236 - Method SCIPvarGetProbvarSum() is not public anymore, use SCIPgetProbvarSum() instead.
6237 - Replaced method SCIPvarGetRootRedcost() by SCIPvarGetBestRootRedcost().
6238
6239### New API functions
6240
6241- setup timer to all plugins and therefore SCIP<plugin-type>GetSetupTime() methods in all pub_plugin-type.h to ask
6242 for this time (, e.g. SCIPeventhdlrGetSetupTime() in pub_event.h)
6243- new GML(Graph Modeling Language) methods SCIPgmlWriteOpening(), SCIPgmlWriteCosing(), SCIPgmlWriteArc(), SCIPgmlWriteEdge(),
6244 SCIPgmlWriteNode() that write to a given GML file
6245- new LPI method SCIPlpiGetObjsen() to query objective sense
6246- SCIPpermuteIntArray() in pub_misc.h and misc.c for permuting an integer array
6247- SCIPcalcBinomCoef() in pub_misc.h and misc.c which calculates a binomial coefficient up to 33 over 16
6248- SCIPheurPassSolAddSol() in heur_trysol.c; solution which are passed via this method are just without any feasibility check
6249- SCIPgetGlobalPseudoObjval() which returns the global pseudo objective value which is all variables
6250 set to their best (w.r.t. the objective function) global bound
6251- SCIPhashGetKeyStandard() which returns the element itself as the key, SCIPhashKeyEqPtr(),
6252 SCIPhashKeyValPtr() which do the hash-comparison/-conversion on a pointer in pub_misc.h
6253- SCIPhashtableClear() which removes all elements of a hash table
6254- SCIPisUpdateUnreliable() to check whether an iteratively updated value should be recomputed from scratch
6255 (e.g., for activities; uses new parameter `misc/num_recompfac`)
6256- SCIPisHugeValue() to check whether a value is huge and should be handled separately from other values
6257 (e.g., in activity computations) and SCIPgetHugeValue() to get the smallest value counting as huge
6258- SCIPfixParam() and SCIPunfixParam() to fix and unfix a parameter, respectively;
6259 the fixing status of a parameter can be requested by SCIPparamIsFixed();
6260- SCIPsetBasePointClosecuts() to set the base point for close cut separation
6261- SCIPchgCutoffboundDive() to change the cutoffbound in diving mode
6262- SCIPupdateCutoffbound() which can be used to pass a cutoff bound
6263
6264- Presolving:
6265 - SCIPpropIsPresolDelayed() which return if a propagator is delay during presolving
6266 - Added method SCIPisPresolveFinished() which returns whether the presolving process would be stopped after the
6267 current presolving round, given no further reductions will be found, can be used to ensure that a presolver is called very late
6268
6269- Memory:
6270 - added forgotten implementation of SCIPfreeMemorySize(), SCIPfreeMemorySizeNull() in scip.h and BMSfreeMemorySize(),
6271 BMSfreeMemorySizeNull() in memory.h
6272 - SCIPmemccpy() in pub_misc.h and misc.c which copies either a specified number of charcters of a source
6273 string to a destination string or until it hits a stoping character
6274 - BMSmoveMemory(), BMSmoveMemoryArray(), BMSmoveMemorySize() and corresponding BMSmoveMemory_call() in
6275 memory.{h,c} too move memory elements
6276
6277- Conflict Analysis:
6278 - SCIPisConflictAnalysisApplicable() which return FALSE is the conflict will not runs; can be used
6279 to avoid unnecessary initialization of the conflict analysis
6280 - SCIPaddConflictRelaxedLb(), SCIPaddConflictRelaxedUb() and SCIPaddConflictRelaxedBd(); these methods
6281 can be used to give for a bound change which is part of an explanation a relaxed bound; this means the relaxed bound
6282 is already efficient to be part of a valid explanation
6283 - SCIPisConflictVarUsed() returns TRUE if the given bound change is already part of the conflict set;
6284 that is the bound change is redundant;
6285 - SCIPgetConflictVarLb() and SCIPgetConflictVarUb() returning the lower/upper bound of the given
6286 variable within the current active conflict set
6287
6288- Variable usage:
6289 - SCIPvarsGetProbvar() in pub_var.h and var.c, which returns for a given array of variables the active, fixed
6290 or multiaggregated representation
6291 - SCIPgetActiveVars() in scip.{h,c}, which returns for a given array of variables the active counterparts
6292 - SCIPgetNObjVars() which returns the number of variables which have a non-zero objective coefficient
6293 - SCIPenableVarHistory() and SCIPdisableVarHistory() which can be used to turn off and on the collection
6294 of variables statistics which is used for example for branching
6295 - SCIPbranchVarHole() which branches a variable w.r.t. a given domain hole
6296 - SCIPvarGetAggregatedObj() which computes for a (not active) variable the corresponding objective value
6297 - SCIPsolIsOriginal() that returns whether a solution is defined on the original variables
6298 - SCIPgetVarImplRedcost() which returns the implied reduced costs
6299 - SCIPvarGetBestRootSol(), SCIPvarGetBestRootRedcost(), SCIPvarGetBestRootLPObjval() which return the best
6300 combination for a variable w.r.t. root solution value, root LP objective value and root reduced cost
6301 - SCIPhaveVarsCommonClique() in scip.{h,c}, to check for common clique information on two given variables
6302 - added basic creation methods SCIPcreateVarBasic() and SCIPcreateProbBasic() and setter functions for
6303 non-fundamental callbacks of variables and problems.
6304 - added new methods SCIPvarGetBestBoundGlobal() and SCIPvarGetWorstBoundGlobal().
6305
6306- Constraint Handler:
6307 - added public wrapper functions for calling constraint handler callback methods for a single constraint:
6308 SCIPactiveCons(), SCIPdeactiveCons(), SCIPinitlpCons(), SCIPsepalpCons(), SCIPsepasolCons(), SCIPpropCons(),
6309 SCIPrespropCons(), SCIPenfopsCons(), SCIPenfolpCons()
6310 - added basic creation methods for all constraint handlers
6311 - SCIPchgCapacityKnapsack() which can be used to change the capacity of a knapsack constraint
6312 - SCIPconsIsAdded() which returns whether a constraint was already to a SCIP instance
6313 - SCIPconshdlrGetNCutsApplied() in pub_cons.h to get the number of cuts applied to the lp
6314 - SCIPconshdlrIncNAppliedCuts() in cons.h to increase the number of applied cuts (used by sepastore.c)
6315 - SCIPchgVarName() and SCIPchgConsName() which can be used to change name of variables and
6316 constraints in problem creation stage
6317 - New methods SCIPgetConsVars() and SCIPgetConsNVars() which return for a given constraint the involved variables and
6318 the number of variables if the corresponding constraint supports this (optional) callbacks
6319 (corresponding callbacks need to be implemented, see above)
6320
6321- Message Handler:
6322 - SCIPmessagehdlrCapture() which captures a given message handler (increases number of uses)
6323 - SCIPmessagehdlrRelease() which releases and possibly frees a given message handler (decreases number of uses)
6324 - SCIPsetMessagehdlrLogfile() which can be used to write into a log file
6325 - SCIPsetMessagehdlrQuiet() which can be used to turn the screen output on and off
6326
6327### Command line interface
6328
6329- in the interactive shell, parameters can be fixed and unfixed with `fix` (instead of `set`), e.g., `fix heuristics rens freq TRUE`;
6330- new shell command `change minuc` to minimize the number of unsatisfied constraints
6331
6332### Interfaces to external software
6333
6334- beta-version of a MATLAB interface can be found under interfaces/matlab
6335- beta-version of a AMPL interface can be found under interfaces/ampl
6336
6337### Changed parameters
6338
6339- `branching/fullstrong/reevalage` changed from an integer to a longint parameter
6340
6341- Removed parameters:
6342 - `separating/closecuts/separootonly`
6343 - `constraints/quadratic/defaultbound`
6344 - `separating/cgmip/nodelimit`
6345
6346### New parameters
6347
6348- `constraints/%s/timingmask` for changing the timingmask for calling the propagtion method of all constraint plugins
6349- `constraints/and/dualpresolving` by default set to TRUE, enabling dual-presolving on and-constraints
6350- `constraints/indicator/{sepacouplingcuts,sepacouplinglocal}` to enable separation of (local) cuts
6351- `constraints/indicator/{maxsepacuts,maxsepacutsroot}` to restrict the number of separated cuts
6352- `constraints/indicator/dualreductions` to enable dual presolving/propagation steps
6353- `constraints/setppc/cliquelifting`, `constraints/setppc/addvariablesascliques`,
6354 `constraints/setppc/cliqueshrinking`, first for enabling/disabling the clique lifting algorithm in cons_setppc.c,
6355 second parameter is for trying to create extra clique constraints in lifting algorithm, third parameter is for trying
6356 to decrease the number of variable in a clique constraint in the lifting algorithm
6357- `limits/totalnodes` that allows to stop at the correct node if a restart occured; therefore the new
6358 `SCIP_STATUS_TOTALNODELIMIT` is added
6359- `lp/{rootiterlim,iterlim}` to set a limit on the LP iterations spend in the initial root LP and each
6360 LP resolve, respectively
6361- `misc/transorigsols` by default set to TRUE, that switches whether SCIP tries to transfer original
6362 solutions into the transformed space (in initsol and if a heuristic adds an original solution during solving)
6363- `numerics/hugeval` that defines the smalles value counting as huge (see new method SCIPisHugeValue())
6364- `numerics/recompfac` which denotes the factor, by which the absolute of an iteratively updated value has
6365 to be decreased in order to recompute the value from scratch
6366- `presolving/convertinttobin/maxdomainsize` by default is set to `SCIP_LONGINT_MAX`, which deternmines
6367 the domainsize for which integers are converted to their binary representation
6368- `presolving/convertinttobin/onlypoweroftwo` by default is set to FALSE, that parameter allows you to
6369 only convert integer variables with a domainsize of 2^p-1 to their binary representation
6370- `presolving/convertinttobin/samelocksinbothdirections` by default is set to FALSE, that parameter allows
6371 you to convert only integer variables to their binary representation, which have the same amount of up- and downlocks
6372- `presolving/gateextraction/sorting` by default is set to 1, that parameter determines if you want to try
6373 to extract big-gates(-1) or small-gates(1) at first by ordering bigger/smaller logicor constraint up front, or use
6374 them as they are (0)
6375- `presolving/gateextraction/onlysetpart` by default is set to FALSE, that parameter allows you to
6376 only extract set-partitioning and no and-constraints
6377- `presolving/gateextraction/searchequations` by default is set to TRUE, that parameter allows you to
6378 search for logicor constraints and set-packing/-partitioning constraints with same variables
6379- `propagating/%s/timingmask` for changing the timingmask for calling the propagtion method of all propagator plugins
6380- `propagating/probing/maxdepth` to set the maximal depth until the probing propagation is executed
6381- `reading/cnfreader/useobj` to state whether an artificial objective, depending on the number of clauses
6382 a variable appears in, should be used, by default set to FALSE, old default behavior of reader corresponds to TRUE
6383- `separating/cgmip/{minnodelimit,maxnodelimit}` to determine node limit.
6384- `separating/closecuts/maxlpiterfactor` for iteration limit in relative interior point computation
6385- `separating/oddcycle/maxunsucessfull` to automatically turn off separation
6386- `oncepernode` in Rounding and Simple Rounding heuristic
6387
6388### Data structures
6389
6390- new data structure for binary trees (`SCIP_BT` and `SCIP_BTNODE` in pub_misc.h)
6391- renamed data structure `SCIP_STAIRMAP` to `SCIP_PROFILE`
6392- added new stages `SCIP_STAGE_INITPRESOLVE`, `SCIP_STAGE_EXITPRESOLVE` and `SCIP_STAGE_FREE`; renamed `SCIP_STAGE_FREESOLVE`
6393 to `SCIP_STAGE_EXITSOLVE`
6394- Changed the counting system within SCIP heavily. `SPARSESOLUTION` was renamed to `SCIP_SPARSESOL` and moved
6395 from cons_countsols.h to struct_misc.h
6396
6397Testing
6398-------
6399
6400- the check script now recognizes MIQCP and MINLP instances
6401- make test now also checks instances in wbo, cnf, osil and fzn format
6402- renamed parameter SCRDIR of `make testgams` to CLIENTTMPDIR and changed its default to `/tmp`
6403
6404Build system
6405------------
6406
6407### Makefile
6408
6409- CppAD source code is now distributed with SCIP (`src/cppad`), so that `lib/cppad` is not used anymore;
6410 the default for EXPRINT has changed from none to cppad
6411
6412Fixed bugs
6413----------
6414
6415- fixed bug with strong branching with the LP status for conflict analysis
6416- fixed bug w.r.t. adding a value to the objective offset of the transformed problem
6417- fixed wrong assert in feasibility pump stage 3
6418- fixed bug in solve.c, applied bounding for the initial lp was only done if root-lp-solution was valid but another
6419 solution could also have been added
6420- primal solutions with infinite objective value are now automatically discarded
6421- all plugins that solve sub-SCIPs now do not stop the whole solution process if there has been an error
6422- fixed bug in cip reader, wrong use of SCIPstrtok()
6423
6424- Variables:
6425 - fixed bug in shiftandpropagate w.r.t. SCIPconstructLP() which can have the side effect that variables are created
6426 - method SCIPvarGetProbvarSum() (and thus also SCIPgetProbvarSum()) returns +/-infinity if the variable resolves to a
6427 variable fixed to +/-infinity (depending on the sign of the scalar) but does not multiply with the scalar, anymore
6428 - better handling of infinite solution values for aggregated and negated variables
6429 - fixed bug that disabled multi-aggregation of two integer or implicit integer variables
6430 - fixed bug in sol.c with requesting values of transformed variables in original solution; previously this had only
6431 been handled in SCIPgetSolVal(), now the handling has been moved to SCIPsolGetVal()
6432 - fixed several bugs writing an mps file in the reader_mps.c, e.g. writing fixed variables which are not (yet) removed
6433 and writing integer variables even with an objective value of 0, if they only exist in non-linear constraints
6434
6435- Separation:
6436 - fixed minor bugs with respect to counting generated and lifted cuts in sepa_oddcycle
6437 - fixed bug in sepa_clique.c, could not handle only empty cliques, that were not removed
6438
6439- Heuristics:
6440 - fixed potential bugs in shiftandpropagate heuristic concerning the transformation update of a variable with free status
6441 - fixed bug in heur_zirounding with computation of up/downslacks
6442 - fixed bug in mutation heuristic with unnecessary aborts due to a wrong memory limit
6443 - fixed potential bug in fix-and-infer heuristic with variables being fixed to infinite value
6444 - fixed bug in diving heuristics with variables being fixed to values outside their domain
6445 - fixed bug in simple rounding heuristic with column generation for variables with strictly positive lower bound
6446 - made Octane heuristic numerically more stable to avoid asserts being caused by cancellation
6447 - fixed bug in mutation heuristic with variables being fixed to infinite values
6448 - do not run heur_shiftandpropagate if there is no LP
6449
6450- LP Interface:
6451 - fixed bug in Cplex LPI: after running simplex, solisbasic flag was always true, which might be wrong if Cplex hit a
6452 time limit
6453 - fixed bug in SCIP probing mode with cleared LPI state but solved LP
6454 - fixed assert with `LPI=none` (need to count rows/cols in lpi_none)
6455 - fixed bug in SoPlex LPI where objective sense was not correct after reading LP from file in SCIPlpiReadLP()
6456
6457- Constraints:
6458 - fixed bug in scip.c adding a constraint in SCIPgetConsCopy() to the constraint hashmap
6459 - fixed bug in cons_linear w.r.t recalculation of unreliable activities
6460 - fixed bug in cons_linear concerning huge activity values: besides infinite contributions, we now also treat huge
6461 contributions separately, count their occurences in a constraint and provide a relaxed activity value
6462 - fixed bug in cons_xor.c parsing a constraint
6463 - fixed count of propagations in cons_indicator and only try to propagate if variables are not yet fixed
6464 - fixed some bugs in cons_disjunction.c (wrong assert, forgotten deletion of constraint, wrong SCIPreleaseCons() call)
6465
6466Miscellaneous
6467-------------
6468
6469- first release of GCG, a generic branch-cut-and-price solver built on top of SCIP
6470- first release of UG, a framework for solving mixed integer programs, mixed integer
6471 nonlinear programs and constraint integer programs in parallel
6472- new SCIP T-shirts
6473- renamed ZIB Optimization Suite to SCIP Optimization Suite
6474
6475@page RN2_1 Release notes for SCIP 2.1
6476
6477@section RN212 SCIP 2.1.2
6478*************************
6479
6480Performance improvements
6481------------------------
6482
6483- fixed performance issue in debug mode, where SCIPvarGetLPSol_rec() calculated a value to often, which in the end lead
6484 to exponential growth in running time
6485- force cuts from linearizations of convex constraint in NLP relax solution into LP, thus allowing faster proving of
6486 optimality for convex NLPs
6487
6488Fixed bugs
6489----------
6490
6491- fixed bug in varAddTransitiveImplic() in var.c, when adding implications on special aggregated, namely negated, variables
6492- fixed issue if a primal solution leads to a cutoff of the current focus node
6493- fix compilation issues with zlib 1.2.6
6494- fixed bug in SCIPsolveKnapsackExactly(), trying to allocate too much memory which led to an overflow and later to a segmentation fault
6495- fixed bug in sepa_rapidlearning, carrying on the optimization process, when already solved
6496
6497- Heuristics:
6498 - fixed bug in heur_undercover.c, where a variable with fixed bounds but not of status `SCIP_VARSTATUS_FIXED` was wrongly handled
6499 - fixed bug in heur_oneopt.c which forgot to check LP rows if local rows are present
6500
6501- Constraints:
6502 - fixed bug in SCIPsolveKnapsackExactly()
6503 - fixed bug in cons_quadratic where bounds on activity of quadratic term were not always invalidated when quadratic variables were removed
6504 - fixed bug in cons.c, where after a restart the arrays for all initial constraints were corrected in the initsol process
6505 instead of the initpre process, this was to late because you might change the status in presolving which lead to an assert()
6506 - fixed bug in NLP representation of abspower constraints handling (x+a)^2 with nonzero a
6507 - fixed bug parsing an and-constraint in cip format
6508 - fixed bug in cons_setppc, did not handle new constraints with inactive variables
6509 - fixed bug in cons_xor.c which did not copy the artificial integer variable (used for the lp relaxation)
6510
6511@section RN211 SCIP 2.1.1
6512*************************
6513
6514Features
6515--------
6516
6517- the pseudo objective propagator can be forced to propagate if active pricers are present; this can be done
6518 if for all (known or unknown) variables follows that: they have positive (negative) objective coefficient
6519 and the global lower (upper) bound is zero.
6520
6521Performance improvements
6522------------------------
6523
6524- improvements in undercover heuristic
6525- improve SCIPintervalSolveBivariateQuadExpressionAllScalar() for ax=0 case if x has 0 in the interval for the linear coef.
6526- better domain propagation for quadratic constraints that consist of `non-overlapping` bilinear terms only
6527- ensure that a fixing of a variable in an abspower constraint is propagated to a fixing of the other variable
6528- improvements in undercover heuristic, e.g., bound disjunction constraints are considered when setting up the covering problem
6529
6530Interface changes
6531-----------------
6532
6533### Changed parameters
6534
6535- changed parameter `propagating/pseudoobj/maxcands` to `propagating/pseudoobj/minuseless` (see prop_pseudoobj.c)
6536 due to revision of the pseudo objective propagator
6537
6538### New parameters
6539
6540- added parameters `heuristics/undercover/coverbd` and `heuristics/undercover/fixingorder`
6541
6542Fixed bugs
6543----------
6544
6545- fixed numeric issue in aggregations
6546- fixed pseudo cost computation
6547- fixed bug with setting type of slack variables to be implicitly integral
6548- fixed bug when copying problem data in c++ case returned with the result `SCIP_DIDNOTRUN`
6549- fixed computation of counter which state the changes since the last call of a presolver
6550- fixed handling of unbounded solutions, including double-checking their feasibility and that the primal ray is a
6551 valid unboundedness proof and reoptimizing the LP with modified settings if the solution is not feasible
6552- fixed compilation issues with negate() function in intervalarith.c on exotic platforms
6553- fixed bug in SCIPsortedvecDelPos...() templates
6554- pseudo objective propagator does not propagate it active pricers are present
6555- fixed bug in heur_shiftandpropagate.c concerning the treatment of unbounded variables
6556- workaround for trying to add variable bounds with to small coefficients
6557
6558- Reading and Writing:
6559 - gams writer now also substitutes $-sign from variable/equation names
6560 - fixed bug in reader_mps.c: INTEND marker is now also written, if COLUMNS section ends with non-continous variables
6561 - fixed bug in flatzinc reader w.r.t. boolean expressions
6562
6563- Constraints:
6564 - fixed constraint flags evaluation within the ZIMPL reader (reader_zpl.c)
6565 - fixed bug in SCIPmakeIndicatorFeasible() in cons_indicator.c
6566 - fixed bug with conflict clause modification in cons_indicator
6567 - fixed bug in cons_bounddisjunction with uninitialized return values
6568 - fixed bug in cons_orbitope with calling conflict analysis
6569 - fixed bug in nlpi_oracle w.r.t. changing linear coefs in a NLP constraint
6570
6571@section RN210 SCIP 2.1.0
6572*************************
6573
6574Features
6575--------
6576
6577- New original solution storage capability, which allows transfering solutions between SCIP runs
6578- SCIP-CPX is now threadsafe
6579- comparison of solutions now also works for original solutions
6580- can now compute the relative interior point of the current LP
6581- interval arithmetics for power, log, exp, bivariate quadratic expressions should be rounding safe now
6582- LP iterations in resolving calls can now be limited w.r.t. the average number of LP iterations in previous calls
6583 (after the root node); this is currently only done for the initial LP solve at a node and the corresponding parameter
6584 resolveiterfac is set to -1 (no limit) per default
6585- it is now possible in `SCIP_STAGE_TRANSFORMED` to call SCIPaddVarLocks() (i.e. to lock variables in initialization methods)
6586- changed computation of optimality gap which is now done in the same way as described in the MIPLIB 2010 paper: the gap
6587 is 0, if primalbound (pb) and dualbound (db) are equal (within tolerances), it is infinity if pb and db have opposite
6588 signs and (this changed), if both have the same sign, the difference between pb and db is devided by the minimum of
6589 the absolute values of pb and db (instead of always the dual bound)
6590- functionality to use the bound flipping ratio test of SoPlex is available (requires at least version 1.5.0.7)
6591- there exists now a solution candidate store for the original problem; during transformation these solutions are tried;
6592 during free the transformed problem the best feasible solution of the transformed problem are copied to the solution
6593 candidate store of the original problem; this useful if you solve several problems iteratively, solutions get now
6594 carried over automatically.
6595- reworked concept of lazy bounds: they can now also be used for problems where constraints and objective together
6596 ensure the bounds; to allow this also for diving heuristics that might change the objective and thus destroy this
6597 property, lazy bounds are explicitly put into the LP during diving and removed afterwards
6598- `SCIP_HASHMAP` now works also without block memory
6599- The variable deletion event is now a variable specific event and not global, anymore.
6600- All timing flags are now defined type_timing.h.
6601- all C template files are now called <plugintype>_xyz.{c,h} instead of <plugintype>_xxx.{c,h}
6602
6603- Separators and Cuts:
6604 - reorganized computation of scores in cut filtering: instead of the computation at the time of addition, scores are now
6605 only computed w.r.t. the current LP solution and when cut filtering is performed; one can now fill the cut storage
6606 with cuts that were separated for different solutions
6607 - New separator for close cuts and a new function to compute relative interior points of the LP
6608 - added first version of sepa_closecuts.{c,h} to separate cuts w.r.t. a point that is closer to the integral polyhedron
6609
6610- Constraints:
6611 - implement possibility to force a restart in cons_indicator if enough indicator variables have been fixed
6612 - the xor constraint handler can now parse its constraints
6613 - the bounddisjunction constraint handler can now parse its constraints
6614 - the knapsack, setppc and soc constraint handler can now parse their constraints
6615 - the varbound constraint handler can now parse its constraints
6616 - added beta version of variable deletion: for branch-and-price application, variables can now be completely deleted
6617 from the problem; variables that are deletable have to be marked with SCIPvarMarkDeletable(), constraint handlers can
6618 implement the new `SCIP_DECL_DELVARS` callback that should remove variables from the constraints; at the moment, only
6619 the linear, the setppc and the knapsack constraint handler support this callback; furthermore, when using this
6620 feature, all used plugins have to capture and release variables they store in their data, this is currently only done
6621 for the aforementioned constraint handlers as well as the and, the varbound and the logicor constraint handler; for
6622 more details about this feature, see the FAQ
6623 - added pseudoboolean constraint handler (cons_pseudoboolean.{c,h})
6624 - added first version of cons_disjunction.{c,h} which allows a disjunction of constraints
6625 - added constraint handler for (absolute) power constraints (cons_abspower.{c,h}) to handle equations like z = sign(x)abs(x)^n, n > 1
6626
6627- Heuristics:
6628 - new heuristic vbounds which use the variables lower and upper bounds to fix variable and performs a neighborhood search
6629 - added vbound heuristic (heur_vbounds.{c,h})
6630 - added clique heuristic (heur_clique.{c,h})
6631
6632- Reading and Writing:
6633 - added writing for wbo files
6634 - added writing for pip files (linear, quadratic, polynomial nonlinear, polynomial abspower, polynomial bivariate, and
6635 and constraints)
6636 - CIP format variable characters defined, e.g. `SCIP_VARTYPE_INTEGER_CHAR`
6637 - Improved support for wbo format for weighted PBO problems, IBM's xml-solution
6638 format and pip and zimpl format for polynomial mixed-integer programs
6639 - New reader for (standard) bounds on variables
6640 - Extended reader for CIP models to handle various new constraints, including all types of linear constraints
6641 - flatzinc reader is now capable to read cumulative constraints
6642 - changed opb(/wbo) reader which now creates pseudoboolean constraints instead of linear- and and-constraints, only a
6643 non-linear objective will create and-constraints inside the reader and while reading a wbo file the topcost constraint
6644 is created as well
6645 - added clock for determine the time for reading
6646 - added reader for variable bounds (reader_bnd.{c,h})
6647 - Removed method SCIPreadSol(); call solution reading via SCIPreadProb() which calls the solution reader for .sol files.
6648
6649- Nonlinear:
6650 - Major extensions for nonlinear CIP, new option for n-ary branching on nonlinear variables (within pseudocost branching rule)
6651 - added BETA version of constraint handler for nonlinear constraints (cons_nonlinear.{c,h}) to handle nonlinear
6652 equations given by algebraic expressions using operands like addition, multiplication, power, exp, log, bivariate
6653 nonlinear constraints; currently no trigonometric functions
6654 - added BETA version of constraint handler for bivariate nonlinear constraints (cons_bivariate.{c,h}) to compute tight
6655 estimators for 1-convex and convex-concave bivariate nonlinear functions (given as expression tree)
6656 - the gams writer can now write nonlinear, abspower and bivariate constraints
6657 - Extended writer for GAMS and pip format to write more types of nonlinear constraints
6658 - the pip and zimpl reader now create nonlinear constraints for polynomials of degree > 2
6659
6660- Presolving:
6661 - new dual presolving methods in cons_setppc and cons_logicor
6662 - new presolving step `removeConstraintsDueToNegCliques` in locigor constraint handler which updates logicor constraints
6663 to setppc constraints if a negated clique inside this constraint exist, by default is off
6664 - new presolving step in cons_knapsack (detectRedundantVars, deleteRedundantVars) which determines redundant variables
6665 in knapsack constraint with or without using clique information
6666 - cons_logicor is now able to replace all aggregated variables in presolving by there active or negation of an active
6667 variable counterpart
6668 - prop_pseudoobj is now working in presolving as well
6669 - implement presolving in exitpre() in cons_orbitope and cons_indicator
6670
6671- Propagators:
6672 - added counter for number calls and timing for resolve propagation calls for constraint handler and propagators
6673 - Propagators are now also called in node presolving
6674 - the probing presolver presol_probing.{c.h} is now a propagator prop_probing.{c,h}, all corresponding parameters moved as well
6675 - the redcost separator sepa_redcost.{c.h} is now a propagator prop_redcost.{c,h}, all corresponding parameters moved as well
6676 - outsourced propAndSolve() method in solve.c which calls domain propagation and solving of the lp and relaxation
6677
6678- Statistic:
6679 - solutions which are given by the user from the outside are now marked by `#` in the output
6680 - the `Solving Time` is now spitted into presolving, solving and reading time
6681 - Presolvers section has new column `AddCons` which states the number of added constraint
6682 - Constraints section has new column named \#ResProp which show the number of resolve propagation calls of certain
6683 constraint handler
6684 - Constraint Timing section has a new column \#ResProp which states the time spend in resolve propagation method of the
6685 constraint handler
6686 - improved output of propagators in display statistics
6687 - new section `Propagator Timing` which shows the time spend in different callbacks of the propagator
6688 - rearranged first two columns of Propagators section; \#Propagate and \#ResProp stating the number of call for
6689 propagation and resolve propagation; the Time column is moved into the new section Propagator Timings
6690 - Constraints section has new column named `MaxNumber` which the maximum number of active constraint of a certain
6691 constraint handler
6692 - 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
6693 solving LPs with zero iterations (only refactorization)
6694 - The display of statistics for presolvers, propagators, constraints and LP solving has changed.
6695
6696Performance improvements
6697------------------------
6698
6699- Reorganized filtering process of separation storage (allows adding cuts for different solutions)
6700- Improved presolving for various constraint handlers
6701- Improved propagation methods for variable bound constraints
6702- Improved performance for quadratic constraints
6703- performance improvements in prop_vbounds
6704- child selection rules now get also applied when the relaxation value is equal to the bound changed in branching
6705- added dual reduction to cons_cumulative.c
6706- for continuous variables, the pseudo costs update and the pscost branching rule now use the same strategies for
6707 updating the pseudo costs and estimating the improvement in the LP bound
6708- only perform probing if the variables are locked
6709- performance and memory consumption improvements in xmlparse.c
6710- Improved knapsack cover cuts
6711- avoid very long separation times of LEWIs in cons_knapsack for very large minimal covers
6712- used SCIPallocMemoryArray() instead of SCIPallocBlockMemoryArray() which leads to fewer memory consumption in
6713 getLiftingSequence() in cons_knapsack, also improved cache use bei using an extra array instead blockmemory chunks
6714- switched FASTMIP from 1 to 2 for CPLEX and changed default pricing rule back to steepest edge pricing instead of
6715 quickstart steepest edge pricing
6716- made sorting method more robust
6717- LNS heuristics now use SCIPcopy() by default
6718- considering inactive variables in undercover heuristic; limiting effort for solving covering problem
6719- if during probing mode the LP relaxation is solved from scratch, e.g., when calling the shiftandpropagate heuristic
6720 before root node solving, then we clear the resulting LP state, since it might be a bad starting basis for the next
6721 solve of the LP relaxation (controlled by new parameter `lp/clearinitialprobinglp`)
6722- included LP simplifier into SoPlex LP interface, applied when solving from scratch (lpi_spx.cpp)
6723- new presolving steps in varbound constraint handler, tightening bounds, coefficients, sides and pairwise presolving
6724
6725Interface changes
6726-----------------
6727
6728- Miscellaneous:
6729 - The emphasis setting types now distinguish between plugin-type specific parameter settings (default, aggressive, fast, off),
6730 which are changed by SCIPsetHeuristics/Presolving/Separating(), and global emphasis settings (default, cpsolver, easycip,
6731 feasibility, hardlp, optimality, counter), which can be set using SCIPsetEmphasis().
6732
6733### New and changed callbacks
6734
6735- added propagator timings `SCIP_PROPTIMING_BEFORELP`, `SCIP_PROPTIMING_DURINGLPLOOP` and `SCIP_PROPTIMING_AFTERLPLOOP` for
6736 all propagation callbacks (see propagators and constraint handlers) which lead to calling the propagation methods of a
6737 propagator before the lp is solved, during the lp loop and after the lp solving loop
6738
6739- Conflict Analysis:
6740 - Added parameter `separate` to conflict handler callback method SCIP_DECL_CONFLICTEXEC() that defines whether the conflict
6741 constraint should be separated or not.
6742
6743- Constraint Handler:
6744 - The new constraint handler callback SCIP_DECL_CONSDELVARS() is called after variables were marked for deletion.
6745 This method is optional and only of interest if you are using SCIP as a branch-and-price framework. That means,
6746 you are generating new variables during the search. If you are not doing that just define the function pointer
6747 to be `NULL`.
6748 If this method gets implemented you should iterate over all constraints of the constraint handler and delete all
6749 variables that were marked for deletion by SCIPdelVar().
6750
6751- NLP Solver Interface:
6752 - The callbacks SCIP_DECL_NLPIGETSOLUTION() and SCIP_DECL_NLPISETINITIALGUESS() got new parameters to get/set values of
6753 dual variables.
6754 - The callback SCIP_DECL_NLPICOPY() now passes the block memory of the target SCIP as an additional parameter.
6755
6756- Presolving:
6757 - New parameters `isunbounded` and `isinfeasible` for presolving initialization (SCIP_DECL_CONSINITPRE(),
6758 SCIP_DECL_PRESOLINITPRE(), SCIP_DECL_PROPINITPRE()) and presolving deinitialization (SCIP_DECL_CONSEXITPRE(),
6759 SCIP_DECL_PRESOLEXITPRE(), SCIP_DECL_PROPEXITPRE()) callbacks of presolvers,
6760 constraint handlers and propagators, telling the callback whether the problem was already declared to be
6761 unbounded or infeasible. This allows to avoid expensive steps in these methods in case the problem is already
6762 solved, anyway.
6763
6764 Note, that the C++ methods
6765 - scip::ObjConshdlr::scip_presol() corresponding to SCIP_DECL_CONSPRESOL()
6766 - scip::ObjConshdlr::scip_initpre() corresponding to SCIP_DECL_CONSINITPRE()
6767 - scip::ObjPresol::scip_initpre() corresponding to SCIP_DECL_PRESOLINITPRE()
6768 - scip::ObjProp::scip_initpre() corresponding to SCIP_DECL_PROPINITPRE()
6769 - scip::ObjConshdlr::scip_exitpre() corresponding to SCIP_DECL_CONSEXITPRE()
6770 - scip::ObjPresol::scip_exitpre() corresponding to SCIP_DECL_PRESOLEXITPRE()
6771 - scip::ObjProp::scip_exitpre() corresponding to and SCIP_DECL_PROPEXITPRE()
6772 are virtual functions. That means, if you are not adding the new parameters, your code will still compile, but these methods are not executed.
6773 - Propagators are now also called in during presolving, this is supported by the new callback methods SCIP_DECL_PROPINITPRE(),
6774 SCIP_DECL_PROPEXITPRE(), and SCIP_DECL_PROPPRESOL().
6775 - The new parameters `nnewaddconss` and `naddconss` were added to the constraint handler callback method SCIP_DECL_CONSPRESOL()
6776 and the presolver callback method SCIP_DECL_PRESOLEXEC(). These parameters were also added to corresponding C++ wrapper
6777 class methods (scip_presol() in objconshdlr.h and scip_exec() in objpresol.h)
6778
6779- Problem Data:
6780 - The callback SCIP_DECL_PROBCOPY() got a new parameter `global` to indicate whether the global problem or a local version is copied.
6781
6782### Deleted and changed API functions
6783
6784- implemented SCIPlpiGetPrimalRay() in SoPlex interface that has become available with SoPlex version 1.5.0.2
6785- allowed calling SCIPgetRowSolActivity() in `SCIP_STAGE_SOLVED`, since LP is still available
6786- various extensions and modifications for expressions and expression trees (too much to state here)
6787- The result value `SCIP_NEWROUND` has been added, it allows a separator/constraint handler to start a new separation round
6788 (without previous calls to other separators/conshdlrs).
6789- SCIPcalcNodeselPriority() got a new parameter `branchdir`, which defines the type of branching that was performed: upwards, downwards, or fixed.
6790
6791- Constraint Handlers:
6792 - Method SCIPincludeQuadconsUpgrade() of quadratic constraint handler got new parameter `active` to indicate whether the upgrading method is active by default.
6793 - Method SCIPseparateRelaxedKnapsack() in knapsack constraint handler got new parameter `cutoff`, which is a pointer to store whether a cutoff was found.
6794
6795- Nonlinear expressions, relaxation, and solver interface:
6796 - SCIPcreateNLPSol() now creates a `SCIP_SOL` that is linked to the solution of the current NLP relaxation
6797 - Various types and functions dealing with polynomial expressions have been renamed to use the proper terms `monomial` and
6798 `polynomial` in nonlinear expressions (nlpi/∗expr*); results in many renamings of types, structs and methods.
6799 - The methods SCIPnlpGetObjective(), SCIPnlpGetSolVals(), and SCIPnlpGetVarSolVal() have been removed, use SCIPgetNLPObjval(),
6800 SCIPvarGetNLPSol() and SCIPcreateNLPSol() to retrieve NLP solution values instead.
6801 SCIPcreateNLPSol() now returns an error if NLP or NLP solution is not available
6802 - Removed methods SCIPmarkRequireNLP() and SCIPisNLPRequired(), because the NLP is now always constructed if nonlinearities
6803 are present.
6804 - SCIPgetNLP() has been removed and NLP-methods from pub_nlp.h have been moved to scip.h, which resulted in some renamings, too.
6805 - renamed SCIPexprtreeEvalSol() to SCIPevalExprtreeSol() and now located in scip.h.
6806 - renamed SCIPexprtreeEvalIntLocalBounds() to SCIPevalExprtreeLocalBounds() and now located in scip.h.
6807 - renamed SCIPexprtreeEvalIntGlobalBounds() to SCIPevalExprtreeGlobalBounds() and now located in scip.h.
6808 - The functions SCIPnlpiGetSolution() and SCIPnlpiSetInitialGuess() got additional arguments to get/set dual values.
6809 - The method SCIPgetNLPI() got a new parameter `nlpiproblem`, which is a pointer to store the NLP solver interface problem.
6810
6811- Timing:
6812 - SCIPincludeProp() got additional parameters to set the timing mask of the propagator and the new callbacks and parameters
6813 related to calling the propagator in presolving.
6814 - SCIPincludeConshdlr() got additional parameters to set the variable deletion callback function and the timing mask for
6815 propagation.
6816 - removed parameters timelimit and memorylimit from SCIPapplyRens()
6817 - The parameters `timelimit` and `memorylimit` were removed from SCIPapplyRens().
6818
6819- Problem Data:
6820 - The method SCIPcopyProb() got a new parameter `global` to indicate whether the global problem or a local version is copied.
6821
6822- Writing and Parsing Constraints:
6823 - The methods SCIPwriteVarName(), SCIPwriteVarsList(), and SCIPwriteVarsLinearsum() got a new boolean parameter `type`
6824 that indicates whether the variable type should be written or not.
6825 - The methods SCIPparseVarName() and SCIPparseVarsList() got a new output parameter `endptr` that is filled with the position
6826 where the parsing stopped.
6827 - The method SCIPwriteVarsList() got additionally a new parameter `delimiter` that defines the character which is used for delimitation.
6828
6829- Variables:
6830 - SCIPmarkDoNotMultaggrVar()/SCIPvarMarkDoNotMultaggr() now allow to mark negated and aggregated variables
6831 - SCIPgetVarCopy() got a new parameter `success` that will be FALSE if method is called after problem creation stage and no hash map is
6832 given or no image for the given variable is contained in the given hash map.
6833 - SCIPchgVarType() got an extra boolean parameter to store if infeasibility is recognized while upgrading a variable from continuous
6834 type to an integer type.
6835 - SCIPdelVar() got a new parameter `deleted`, which stores whether the variable was successfully marked to be deleted.
6836
6837### New API functions
6838
6839- information about the quality of the solution of an LP (currently the condition number of the basis matrix) can now be:
6840 + requested from the LPI (currently only available for CPLEX): methods SCIPlpiGetRealSolQuality() and
6841 + SCIPprintLPSolutionQuality() command display lpsolquality in interactive shell display column lpcond to show
6842 + estimate on condition number, if available
6843- SCIPround() and SCIPfeasRound() to round to nearest integer
6844- SCIPsortRealRealIntInt() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
6845- SCIPsortRealIntLong(), SCIPsortPtrPtrRealInt() and corresponding sorting/inserting/deleting methods in
6846 pub_misc.h and necessary defines in misc.c
6847- SCIPcomputeLPRelIntPoint() to compute relative interior point of the current LP
6848- SCIPstartSolvingTime() and SCIPstopSolvingTime() which can be used to start or stop the solving time clock
6849- SCIPstrToRealValue() and SCIPstrCopySection() in pub_misc.h; these methods can be used to convert a string
6850 into a `SCIP_Real` value and to copy a substring.
6851- SCIPgetBinvarRepresentatives() which gets binary variables that are equal to some given binary variables,
6852 and which are either active, fixed, or multi-aggregated, or the negated variables of active, fixed, or multi-aggregated variables
6853- SCIPhasPrimalRay() and SCIPgetPrimalRayVal() that return whether a primal ray is stored and which value a
6854 given variable has in the primal ray, respectively
6855- SCIPsetConsModifiable()
6856- SCIPsetParam() which is a generic parameter setter method, independent of the parameter type
6857- SCIPpropInitpre(), SCIPpropExitpre(), SCIPpropPresol() which initializes, exists and executes the presolving phase
6858- SCIProwGetAge() to access the age of a row (pub_lp.h/lp.c)
6859- SCIPsolGetOrigObj() in pub_sol.h which returns for a solution in the original problem space the objective value
6860- SCIPretransformSol() in scip.h that allows to retransform a solution to the original space
6861- SCIPlpiClearState() to LP interfaces for clearing basis information in the LP solver
6862- SCIPgetSubscipDepth() to access the depth of the current SCIP as a copied subproblem
6863- SCIPdebugAddSolVal() and SCIPdebugGetSolVal() to add/get values to/from a debug solution
6864- SCIPsepastoreRemoveInefficaciousCuts() to remove non-efficious cuts from the separation storage
6865
6866- Nodes:
6867 - SCIPnodeGetParent() to get parent node of a node
6868 - SCIPnodesSharePath() in pub_tree.h that determines whether two nodes are on the same leaf-root path
6869 - SCIPnodesGetCommonAncestor() in pub_tree.h that finds the common ancestor node for two given nodes
6870
6871- Read and Write:
6872 - SCIPgetReadingTime() which returns the time for reading in seconds
6873 - SCIPparseVarsLinearsum(), SCIPparseVarsPolynomial() and SCIPwriteVarsPolynomial() and for writing and
6874 parsing polynomials in constraint handler writing/parsing methods
6875
6876- Memory:
6877 - SCIPcreateMesshdlrPThreads() and SCIPfreeMesshdlrPThreads() for allocating and deleting necessary memory
6878 for message handlers for parallel pthread version
6879 - SCIPallocClearMemoryArray() and BMSallocClearMemoryArray() for allocating cleared memory arrays in scip.h and memory.h
6880
6881- Intervals:
6882 - SCIPintervalPowerScalarInverse() to solve an equation y = x^p for given bounds on y and scalar exponent p
6883 - SCIPintervalQuadBivar() to compute tight bounds on a bivariate quadratic form
6884 - SCIPintervalSolveBivariateQuadExpressionAllScalar() to compute tight bounds on the solutions of a bivariate quadratic equation
6885
6886- Variables:
6887 - SCIPcomputeVarCurrent{L,U}b{Local,Global}() to compute local or global lower or upper bounds of a
6888 multiaggregated variable from the bounds of the aggregation variables
6889 - SCIPbranchVarValNary() for n-ary variable branching
6890 - SCIPgetNegatedVars() which returns all negated variables for a given array of variables, if the negated
6891 variables are not existing yet, they will be created
6892 - SCIPgetNTotalVars() that returns the total number of created vars, icluding variables that were deleted in the meantime
6893 - SCIPvarGetHashkey(), SCIPvarIsHashkeyEq(), SCIPvarGetHashkeyVal() in pub_var.h which can be used for `SCIP_HASHTABLE` of variables
6894 - SCIPvarGetNBdchgInfosLb() and SCIPvarGetNBdchgInfosUb() in pub_var.h returning the number of lower or upper bound changes on the active path
6895 - SCIPvarGetBdchgInfoLb() and SCIPvarGetBdchgInfoUb() returning the bound change information at the given position
6896 - SCIPvarMarkDeletable() to mark a variable to be deletable completely from the problem (for
6897 branch-and-price); can only be called before the variable is added to the problem
6898 - SCIPvarMarkNotDeletable() that marks a variable to be non-deleteable (used within SCIP for forbidding
6899 deletion of variables contained in solution, LP bases, (multi)aggregation, ...)
6900 - SCIPvarIsDeletable() that returns whether a variable is marked to be deletable (each variable is per default non-deletable)
6901
6902- NLP:
6903 - SCIPgetNLPVarsNonlinearity() to get for each variable in the NLP the number of NLP rows in which this variable appears in a nonlinear way
6904 - SCIPnlrowGetDualsol(), SCIPgetNLPVarsLbDualsol(), SCIPgetNLPVarsUbDualsol() to retrieve dual values from an NLP solution
6905 - SCIPgetNLPFracVars() to get the fractional variables in an NLP solution
6906
6907- Propagator:
6908 - SCIPpropSetPresolPriority() which changes the presolving priority of a given propagator
6909 - SCIPpropGetPresolPriority(), SCIPpropGetPresolTime(), SCIPpropWasPresolDelayed(), SCIPpropGetNFixedVars(),
6910 SCIPpropGetNAggrVars(), SCIPpropGetNChgVarTypes(), SCIPpropGetNChgBds(), SCIPpropGetNAddHoles(), SCIPpropGetNDelConss(),
6911 SCIPpropGetNAddConss(), SCIPpropGetNUpgdConss(), SCIPpropGetNChgCoefs(), SCIPpropGetNChgSides(), SCIPpropGetTimingmask(),
6912 SCIPpropDoesPresolve() which return corresponding presolving information
6913 - SCIPpropGetNRespropCalls() and SCIPconshdlrGetNRespropCalls() which return the number of times a
6914 propagator or a constraint handler was called for resolving a propagation
6915 - SCIPpropGetRespropTime() and SCIPconshdlrGetRespropTime() which return time spent for resolving a
6916 propagation within a propagator or a constraint handler
6917 - SCIPcheckCumulativeCondition(), SCIPpropCumulativeCondition() and SCIPrespropCumulativeCondition() in
6918 cons_cumulative.h; these methods can be used to check, propagate, or resolve the propagation of a cumulative condition
6919 - SCIPpropagateCutoffboundVar() in prop_pseudoobj.h which can be used to propagate the cutoff bound for the given variables
6920
6921- Constraints:
6922 - added to linear constraint handler SCIPsetUpgradeConsLinear(), which (de-)activates the possibility to
6923 upgrade a linear constraint to a specialized linear constraint (e.g. knapsack)
6924 - SCIPconvertCutsToConss() and SCIPcopyCuts() to scip.{c,h} for copying cuts to linear constraints
6925 - SCIPaddCoefLogicor() to add a variable to a logic or constraint
6926 - SCIPfindOrigCons() which return a original constraint with the given name or `NULL`
6927 - SCIPconshdlrGetNAddConss() which returns the number of added constraints during presolving by a given constraint handler
6928 - SCIPpresolGetNAddConss() which returns the number of added constraints during presolving by a given presolver
6929
6930### Command line interface
6931
6932- New funtionalities in the interactive shell (modify current CIP instance, write NLP relaxation)
6933- added dialog `write nlp` to write current NLP relaxation to a file
6934- new dialog `change freetransproblem` to free transformed problem in the interactive shell before changing the problem
6935- it is possible to change bounds of a variable in the interactive shell
6936- it is possible to add a constraint to a problem in the interactive shell
6937
6938### Interfaces to external software
6939
6940- Improved SOPLEX interface (LP simplifier)
6941- Improved CPLEX interface, including measures for numerical stability
6942
6943### Changed parameters
6944
6945- change default value of parameter `nodeselection/restartdfs/selectbestfreq` 100
6946- moved parameters for pseudoboolean constraints from opb-reader to pseudoboolean constraint handler
6947- changed possible parameter values of `branching/pscost/strategy` from `bri` to `cdsu`: default is now `u`, i.e., to
6948 estimate the LP gain by a branching for external branching candidates (esp. continuous variables) the same way as
6949 their pseudo costs are updated
6950- added possible value `d` for `constraints/soc/nlpform` to choose a convex division form for SOC constraint
6951 representation in NLP
6952- renamed parameter `constraints/quadratic/linearizenlpsol` to `constraints/quadratic/linearizeheursol` and do
6953 linearizations in every solution found by some heuristic
6954- renamed parameter `constraints/quadratic/mincutefficacyenfo` to `constraints/quadratic/mincutefficacyenfofac` and
6955 interpret it as a factor of the feasibility tolerance
6956- removed fastmip setting 2, which means the dualsolution would not be calculated but because SCIP always asks for the
6957 dual solution, the lp would be reoptimized to calculate them; so it had no real effect
6958- all parameters in cons_indicator and cons_sos1 have been converted to lower case!
6959- changed default value of parameter `separating/gomory/maxroundsroot` to 10
6960- changed default value of parameter `separating/gomory/maxsepacutsroot` to 50
6961- removed parameter `heuristics/subnlp/nlpsolver`, use `nlp/solver` instead
6962
6963### New parameters
6964
6965- `branching/delaypscostupdate` to delay the update of pseudo costs for continuous variables behind the separation round: default is TRUE
6966- `branching/lpgainnormalize` to set the strategy how the LP gain for a continuous variable is normalized when updating the
6967 variables pseudocosts: default is to divide LP gain by reduction of variable's domain in sibling node
6968- `branching/pscost/nchildren` and `branching/pscost/nary*` to enable and customize n-ary branching on
6969 external branching candidates (e.g., in spatial branching for MINLP)
6970- `conflict/bounddisjunction/continuousfrac` which defines the maximum percantage of continuous variables
6971 within a conflict create by the bounddisjunction conflict handler
6972- `conflict/separate` which enables or disables the separation of conflict constraints
6973- `constraints/{nonlinear,quadratic,soc,abspower}/sepanlpmincont` to specify minimal required fraction
6974 of continuous variables in problem to enable linearization of convex constraints in NLP relaxation solution in root
6975- `constraints/indicator/forcerestart` and `constraints/indicator/restartfrac` to control forced restart in cons_indicator
6976- `constraints/indicator/generatebilinear` to generate bilinear (quadratic) constraints instead of indicator constraints
6977- `constraints/indicator/maxconditionaltlp` to enable a quality check for the solution of the alternative LP
6978- `constraints/indicator/removeindicators` to remove indicator constraints if corresponding vub has been added
6979- `constraints/linear/nmincomparisons` and `constraints/linear/mingainpernmincomparisons` to influence
6980 stopping criterium for pairwise comparison of linear constraints
6981- `constraints/pseudoboolean/decompose`, for pseudoboolean constraints to transform pseudoboolean constraints into linear- and and-constraints
6982- `constraints/quadratic/binreforminitial` to indicate whether linear (non-varbound) constraints added due to reformulation of products with
6983 binary variables in a quadratic constraints should be initial (if the quadratic constraint is initial), default is FALSE
6984- `constraints/quadratic/checkfactorable` to disable check for factorable quadratic functions (xAx = (ax+b)*(cx+d)) in quadratic constraints
6985 and not to use of this information in separation (generates lifted tangent inequalities according to Belotti/Miller/Namazifar if also
6986 linear vars are present)
6987- `constraints/quadratic/disaggregate` to split a block-separable quadratic constraint into several quadratic constraint
6988- `constraints/quadratic/maxproprounds` and `constraints/quadratic/maxproproundspresolve` to limit the
6989 number of propagations rounds for quadratic constraints within one propagation round of SCIP solve or during SCIP presolve
6990- `constraints/varbound/presolpairwise` that allows pairwise presolving of varbound constraints, default is TRUE
6991- `heuristics/shiftandpropagate/onlywithoutsol` to switch whether the heuristic should be called in case a primal solution is already present
6992- `limit/maxorigsol` which defines the size of the solution candidate store (default value is 10)
6993- `lp/resolverestore` controlling how LP solution is restored after diving: if TRUE by resolving them,
6994 if FALSE by buffering them; if `lp/freesolvalbuffers` is TRUE, we free the buffer memory each time (FALSE by default)
6995- `lp/clearinitialprobinglp` to clear LP state at end of probing mode, if LP was initially unsolved
6996- `lp/resolveitermin` and `lp/resolveiterfac` to limit the number of LP iterations in resolving calls:
6997 resolveiterfac is a factor by which the average number of iterations per call is multiplied to get the limit, but the
6998 limit is at least resolveitermin; default is -1 (no limit) for resolveiterfac and 1000 for resolveitermin
6999- `lp/resolverestore` and `lp/freesolvalbuffers` possibility to buffer and restore LP solution after diving without
7000 having to resolve the LP; currently turned off, because performance impact is unclear;
7001- `misc/improvingsols` which states whether only solutions which have a better (or equal) primal bound
7002 as the best known are checked; this is of interest if the check of a solution is expensive; default value is FALSE
7003- `misc/resetstat` which state if the statistics should be reseted if the transformed problem is freed
7004 (in case of a benders decomposition this parameter should be set to FALSE) default value is TRUE
7005- `nodeselection/restartdfs/countonlyleafs` in node selector restart dfs which can be used to select the counting process of processed nodes
7006- `presolving/donotaggr` to deactivate aggregation of variables globally
7007- `pricing/delvars` and `pricing/delvarsroot` that define, whether variables created at a node / the
7008 root node should be deleted when the node is solved in case they are not present in the LP anymore
7009- `propagating/%s/maxprerounds` for all propagators which allows to change to maximal number of rounds
7010 of presolving where this propagator participates in
7011- `propagating/%s/presoldelay` for all propagators which allows to change if the presolving call of the given propagator should be delayed
7012- `propagating/%s/presolpriority` for all propagators which allows to change the priority of calling the given propagator
7013- `propagating/pseudoobj/propfullinroot` for allowing to propagate all variables in the root node,
7014 instead of stopping after `maxcands` which is set by a parameter as well
7015- `reading/gmsreader/bigmdefault` and `reading/gmsreader/indicatorreform` reader_gms is now able to write indicator
7016 constraints (reformulated either via big-M or sos1)
7017- `reading/gmsreader/signpower` to enable writing sign(x)abs(x)^n as the rarely used gams function signpower(x,n)
7018- `separating/closecuts/maxunsucessful` to turn off separation if we can not find cuts
7019- `timing/reading` to add reading time to solving time
7020
7021### Data structures
7022
7023- split off `PARAMEMPHASIS` from `PARAMSETTING` (in pub_paramset.c/paramset.c)
7024- new data structure `SCIP_STAIRMAP`
7025- add expression graph data structures and methods for reformulation, domain propagation, simple convexity check on
7026 nonlinear expressions and simplification for expression trees and graphs
7027
7028Testing
7029-------
7030
7031- New scripts for running tests with GAMS
7032- added scripts check_gams.sh, evalcheck_gams.sh and check_gams.awk and target `testgams` in Makefile
7033- adjusted all test scripts to use the same new optimality gap computation as in SCIP
7034- added Makefile option `VALGRIND=true` to enable running the SCIP checks (make test) through valgrind; valgrind errors
7035 and memory leaks are reported as fails
7036- moved *.test and *.solu files to subdirectory testset in check directory and adjusted test scripts
7037
7038Build system
7039------------
7040
7041### Makefile
7042
7043- Variables:
7044 - via `PARASCIP=true` as a `Makefile` option it is possible to compile SCIP threadsafe in DEBUG-mode, (in OPT-mode it's
7045 only necessary if non-default messagehandler or CppAD is used)
7046 - the `make` parameter `PARASCIP=true` leads to threadsafe message handlers where you need to call
7047 SCIPcreateMesshdlrPThreads() and SCIPmessageSetHandler()/SCIPmessageSetDefaultHandler() and SCIPfreeMesshdlrPThreads();
7048 therefore we need to link with pthread library
7049 - new variable $(INSTALLDIR) in Makefile which define installation directory for the libraries, $(INSTALLDIR)/lib/,
7050 binary, $(INSTALLDIR)/bin and include headers, $(INSTALLDIR)/include, the default value is the empty string
7051
7052- Linking:
7053 - Linking against Clp and Ipopt has been simplified. Only the directory where the
7054 package has been installed need to be provided now. For details see the INSTALL file.
7055 - to link against IPOPT, only the base directory of an Ipopt installation need to be specified now; additionally, if
7056 building with gnu compilers, the Ipopt libraries directory is stored in the SCIP binary, which should make it easier
7057 to run with Ipopt shared libraries
7058 - to link against Clp, only the base directory of an Clp installation needs to be specified now
7059
7060- Targets:
7061 - New targets `(un)install` in Makefile, support for valgrind in testing environment
7062 - new target `make libs` which compiles only the libraries
7063 - new target in Makefile `install` performs `make` and copies using the install command the include headers, binary, and
7064 libraries
7065 - new target in Makefile `uninstall` removes libraries, binary and include headers form `INSTALLDIR`
7066 - removed target `lintfiles`, this target is now imitated by the `lint` target and a none empty variable `FILES`
7067
7068Fixed bugs
7069----------
7070
7071- 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
7072- fixed bug trying to print big messages bigger than `SCIP_MAXSTRLEN`
7073- fixed bug w.r.t. counting feasible solutions and turned of sparse solution test
7074- LP solution status is now checked when checking root LP solution. Otherwise, due to different time measurements, it
7075 might happen that the LP solving was stopped due to the time limit, but SCIP did not reach the limit, yet.
7076- fixed bug trying to tighten multiaggregated variables, which have only one active representation and this variable is already tightened
7077- fixed possible buffer overrun in tclique_graph.c
7078- fixed issue with interactive shell in case (user) plugins are included after the default plugins
7079- fixed bug where mutiaggregating leads to an aggregation and both variables were of implicit or integral type
7080- fixed bug in conflict.c, where LPi was manipulated, but not marked as not solved
7081
7082- Tree:
7083 - fixed assertion in tree.c w.r.t. node estimation
7084 - 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
7085
7086- Bounds:
7087 - fixed bug which occured when changing a bound in the solving stage when this variables got upgraded from continuous to
7088 a integer type, where the bounds of this variable were still not integral; due to that SCIPchgVarType() has changed (see above)
7089 - fixed bug in handling of lazy bounds that resulted in putting the bounds explicitly into the LP
7090
7091- Separation:
7092 - fixed assert in sepa_clique.c which is currently not valid because implicit binary variables in cliques are ignored
7093 - fixed bug in sepa_zerohalf.c concerning inconsistent construction of solution array of variables and fixed wrong assert about variable bounds
7094
7095- Constraints:
7096 - fixed not correct merging of variable in logicor constraint handler and changed the name of the method to a common
7097 name used by other constraint handlers too(findPairsAndSets->mergeMultiples)
7098 - fixed bugs in changing the initial and checked flags for constraints in original problem
7099 - fixed bug in cons_linear.c, when scaling a constraint maxabscoef was not set correctly, furthermore the correction of
7100 maxabscoef was not handled correctly
7101 - fixed bug in cons_indicator.c trying to copy a constraint where the pointer to the linear constraint did not point to
7102 the already transformed linear constraint (, happend when SCIPcopy() is used after transforming before presolving)
7103 - fixed numerical bug in linear constraint handler: polishing of coefficients after fixing variables led to wrong
7104 results for continuous variables fixed to a close-to-zero value.
7105 - fixed bug in cons_bounddisjunction where branching on multiaggregated variables was tried while all aggregation variables are fixed
7106 - fixed bug in presolving of cons_logicor.c: adding variable implications can lead to further reductions; added call to applyFixings()
7107 - fixed bug in cons_countsols.c w.r.t. none active variables
7108 - fixed bug in cons_linear.c, scaling could have led to wrong values
7109
7110- Reader:
7111 - fixed bug in reader_fzn.c w.r.t. cumulative constraints
7112 - fixed bug in reader_mps.c: if a variables first occurence is in the bounds section, then the corresponding variable bound was lost
7113 - fixed several issues in flatzinc reader
7114 - deactived checking of zero solution in Zimpl reader when no starting values are provided
7115 - reader_lp is now able to read lines longer than 65534 characters
7116
7117- Memory:
7118 - fixed bug in copying NLPI interfaces that use block-memory (NLPI copy used block memory from source SCIP)
7119 - fixed memory leak in reader_pip.c
7120 - fixed memory leak in coloring part of maximum clique algorithm (tclique_coloring.c)
7121 - fixed memory leak in coloring part of maximum clique algorithm (tclique_coloring.c) in a better way
7122
7123- Numerics:
7124 - fixed bug which occured when the dual farkas multipliers were not available in the lpi because the LP could only be
7125 solved with the primal simplex due to numerical problems
7126 - fixed bug in ZI round heuristic that led to infeasible shiftings for numerically slightly infeasible rows with close-to-zero coefficients
7127 - fixed numerical issue in octane heuristic: close-to-zero values for ray direction could have led to bad computations
7128
7129- Propagation:
7130 - fixed bug in propagation of indicator constraints: cannot fix slack variable to 0 if linear constraint is disabled/not active
7131 - fixed bug in cons_linear.c while sorting the eventdatas during the binary variable sorting for propagation
7132 - fixed bug and wrong assert in heur_shiftandpropagate.c when relaxing continuous variables from the problem
7133 - fixed bug in cons_orbitope:resprop() for the packing case
7134 - fixed wrong changing of wasdelayed flag for propagators
7135 - fixed bug using wrong sign in infinity check in prop_pseudoobj
7136 - fixed bug in redcost propagator: can only be called if the current node has an LP
7137 - fixed bug w.r.t. infinity loop during propagation
7138
7139Miscellaneous
7140-------------
7141
7142- The interface contains several additional callback functions and parameters for plugins. Some effort may be required to compile your old
7143 projects with SCIP 2.1. For details see section `Changes between version 2.0 and 2.1` in the doxygen documentation.
7144
7145@page RN2_0 Release notes for SCIP 2.0
7146
7147@section RN202 SCIP 2.0.2
7148*************************
7149
7150Performance improvements
7151------------------------
7152
7153- improved twoopt-heuristic by considering larger search domains
7154- 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)
7155- calculation of node priority now also works when variable's relaxation value is equal to a bound
7156- fixed issue w.r.t. calling primal heuristics after presolving detected infeasibility
7157
7158- Constraints:
7159 - fasten propagation in cons_knapsack.c due to negated clique partitions
7160 - recalculating only needed partitions in cons_knapsack.c, not always both
7161
7162- Memory:
7163 - reduced memory usage of shift-and-propagate heuristic
7164 - knapsack constraints are now separated faster; SCIPsolveKnapsackExactly() now works faster and requires less memory
7165 - fasten knapsack separation by replacing SCIPallocBuffer(Array) through SCIPallocBlockMemory(Array)
7166 - improved runtime and memory consumption in SCIPsolveKnapsackExactly() in cons_knapsack.c
7167
7168Fixed bugs:
7169----------
7170
7171- fixed `make/make.project`
7172- fixed wrong assert in plugins that use SCIPcopy()
7173- fixed bug in DINS w.r.t. column generation
7174- fixed bug in var.c where a possible multiaggregation was resolved to an aggregation but the variables types were not
7175 checked to prefer more general types for aggregating; possible memory loss removed
7176- fixed bug in prop_vbounds.c w.r.t. infinity lower and upper bound of variable bound variables
7177- fixed bug w.r.t. setting wall clocks
7178- fixed wrong assert in var.c (replaced `==` through SCIPsetIsEQ()), real values do not have to be exactly the same when
7179 computed in different function
7180- fixed bug in SCIPsolveIsStopped() where it could happen that TRUE was reported if a nodelimit was reached but
7181 checknodelimits had been set to FALSE
7182- fixed three bugs when writing in fzn format (wrongly splitted writing buffer, wrong variables was used, floats were printed to short)
7183- fixed bug in conflict.c, infeasibility analysis with big values led to wrong result
7184
7185- Heuristics:
7186 - fixed bug in DINS heuristic that occured when the incumbent solution value is outside the variable's current domain
7187 - fixed behavior of LNS heuristics when the subproblem aborts: continue in optimized mode, stop in debug mode
7188 - fixed segmentation fault in heur_subnlp.c which occured if resolving the NLP with a tighter feasibility tolerance
7189 failed with a solver error
7190 - fixed bug in heur_subnlp.c where constraints forbidding variable fixations where added if a cutoff was used in the subproblem
7191 - fixed bug in heur_subnlp.c where wrong constraints forbidding variable fixations where added in case of general integers
7192
7193- NLP:
7194 - fixed bug in changing quadratic coefficients of a row in the NLP
7195 - fixed various small bugs in nonlinear expressions code
7196 - fixed removal of fixed linear variables from a nonlinear row: a fixed variable may have not been removed if there was
7197 also a multiaggregated variable
7198
7199- LP:
7200 - implemented SCIPlpiGetPrimalRay() in SoPlex interface that has become available with SoPlex version 1.5.0.2
7201 - fixed two bugs at nodes with unbounded LP relaxation: don't check lp rows of infinite solution; don't analyze conflict
7202 due to primal cutoff bound of -infinity
7203 - fixed wrong assumption that an optimal LP solution in the root is optimal for the problem if there are no active
7204 pricers, need to check also whether all variables are in the LP
7205
7206- Constraints:
7207 - fixed bug in reader_cip regarding reading of very long constraints
7208 - fixed bug while after restarting possible the aggregted variables were not removed in setppc constraints
7209 - fixed bug in cons_knapsack: in seldom circumstances the relaxation of a linear constraint can detect infeasibility,
7210 which was not handled properly
7211 - fixed bug w.r.t. to pricing variables in case new initial constraints come in during the price and cut loop
7212 - fixed bug in cons_soc.c w.r.t. upgrading from quadratic constraints with finite left-hand-side
7213 - fixed bug caused by not (correctly) counting boundchanges in cons_varbound.c
7214 - fixed bug in sorting mechanism in cons_xor.c
7215 - fixed wrong (neg)cliquepartition check in cons_knapsack.c when deleting a coefficient
7216 - fixed bug in cons_quadratic: in seldom cases, fixed variables may have been substituted out wrongly in presolve
7217 - fixed bugs in cons_countsols.c w.r.t. collecting feasible solutions and forbidding a found solution
7218 - fixed bug in cons_linear.c: multiaggregated variables were not removed when adding during solve, leading to a failing
7219 assert in tightenBounds due to an unsuccessful bound tightening
7220
7221- Memory:
7222 - fixed bug concerning overflow in memsize calculation in set.c
7223 - fixed memory leak in SoPlex LP interface when requesting an unbounded solution
7224 - fixed memory leak in SoPlex LP interface when solving with LP scaling
7225 - fixed memory leaks in reader of TSP example
7226
7227@section RN201 SCIP 2.0.1
7228*************************
7229
7230Performance improvements
7231------------------------
7232
7233- SCIP with SoPlex as LP solver now uses auto pricing by default (start with devex, switch to steepest
7234 edge after some iterations); this fixes timeouts on instances where devex converges very slowly
7235- fixing lifting of new knapsack items which are negated items of already included items, this could lead to very long presolving
7236- fixed performance issue in presolving w.r.t. to computing the number of new fixings, aggregated,
7237 and so on before a constraint handler presolver is called
7238- in case of adding constraints during pricing with initial flag set to
7239 TRUE, we add now these constraints after the pricing round to the LP
7240- changed parameter values in clique separator in order to avoid very large branch-and-bound trees
7241
7242Interface changes
7243-----------------
7244
7245### New and changed callbacks
7246
7247- allow access of transformed constraints in `SCIP_STAGE_TRANSFORMED`
7248
7249### Changed parameters
7250
7251- replaced parameter `constraints/quadratic/minefficacy` by `constraints/quadratic/minefficacysepa` and `constraints/quadratic/minefficacyenfo`
7252- added possible values `a` and `e` for `constraints/soc/nlpform` to enable automatic choice and convex exponential-sqrt
7253 form for SOC constraint representation in NLP
7254
7255Fixed bugs
7256----------
7257
7258- fixed bug w.r.t. looseobjval; the counting of number of loose variables in the LP data structure was incorrect in case
7259 a variable got aggregated or multi-aggregated
7260- fixed bug in copy method of objvardata which should only create a new `SCIP_VARDATA` if the implemented subclass create
7261 a copy of the given objvardata object
7262- fixed bug in lp.c where in case of objlimit reached and fastmip not all variables where priced because of an incorrect
7263 dual solution
7264- fixed bugs in binpacking example w.r.t. empty struct and not initializing an array
7265- fixed bugs in sepa_clique.c concerning incorrect way to ignore implicit binary variables in cliques and non-active
7266 variables in implications
7267- fixed some bugs w.r.t. to casting pointer arrays
7268- fixed bug in vars.c which handled arrays with parts of original variables during resolving to active variables (using
7269 SCIPvarsGetProbvarBinary) wrong
7270- fixed bug in nlp.c: nlrowSearchQuadElem was using SCIPquadelemSortedFind() incorrectly
7271
7272- Branching:
7273 - fixed assertion w.r.t. to probing during the propagation round of a branch-and-bound node
7274 - fixed computation of node's objective value estimate when branching on continuous variables (see
7275 SCIPtreeCalcChildEstimate(), SCIPtreeBranchVar())
7276 - fixed bug in statistic w.r.t. number of calls for external branching candidates
7277 - fixes to branching on continuous variables
7278
7279- Reader:
7280 - fixed bug in reader_gms.c: linear coefficients for quadratic variables were not printed if they had no
7281 square-coefficient
7282 - fixed bug in reader_mps: indicator constraints do not output the slack variables anymore
7283
7284- Constraints:
7285 - fixed bugs in SCIPcopyConss: copy all active constraints (including disabled ones), *valid was not initialized to TRUE
7286 - fixed bug in debug.c w.r.t. checking of constraints and continuous variables
7287 - fixed bug in cons.c which didn't allow the changing of the separation and enforcement flag of a constraint in the
7288 problem stage
7289 - corrected behavior of the copy function in cons_indicator.c: create artificial linear constraint if linear constraint
7290 was deleted
7291 - fixed bug in cons_indicator.c: presolving cannot delete linear constraints; several other minor bugfixes
7292 - fixed bugs in cons_bounddisjunction where the branching during the constraint enforcement was done incorrectly
7293 - fixed bugs in cons_orbitope.c: orbitopal fixing for the packing case had two bugs; also fixed one wrong assert
7294 - fixed bugs in cons_sos?.c: take average of objestimate
7295 - fixed bug in cons_logicor, implications on none `SCIP_VARTYPE_BINARY` variable were handled wrong
7296 - fixed bug in cons_linear while trying to add a conflict without any variables
7297 - fixed bug in cons_indicator.c: creating constraints in transformed stage is now possible
7298
7299- LP Interface:
7300 - fixed bug w.r.t. memory allocation for all values of a column in lpi_cpx.c
7301 - fixed bugs in SCIPnlpiOracleChgLinearCoefs() and SCIPnlpiOracleChgQuadCoefs() for the case where new coefficients where
7302 added
7303 - fixed bugs in lpi_none.c w.r.t. debug and opt mode
7304 - fixed bug in lpi_cpx.c w.r.t. to wrong handling in case the crossover did not succeed
7305
7306- Heuristics:
7307 - fixed bug in heur_subnlp when initialized starting values of a fixed variable in the NLP of the subscip
7308 - fixed bug in heur_undercover: removed option globalbounds, since we are not allowed to relax bounds at a probing node
7309 - fixed bug in heur_shiftandpropagate where some variables were initialized too late
7310 - fixed numerical issue in some heuristics: nearly-integral values that are between the feasibility and the integrality
7311 tolerance might not have been rounded correctly
7312 - fixed bug in heur_guideddiving: best solution is now copied to avoid deletion in case of many new solutions
7313 - fixed bug in DINS heuristic, information storage for binary variables could lead to bad memory access in column
7314 generation applications
7315 - fixed bug in heur_shiftandpropagate.c: Now, the heuristic checks rows for global infeasibility at the beginning. This
7316 check is only relevant if presolving is disabled.
7317 - fixed bug in heur_subnlp when forbidding a particular combination of integer variables in the main problem
7318
7319@section RN200 SCIP 2.0.0
7320*************************
7321
7322Features
7323--------
7324
7325- added relaxation structure to SCIP, it represents global relaxation information independent from a specific relaxator;
7326 at the moment, it contains information about the relaxation solution stored in the variables: objective value and
7327 validness
7328- SCIP may now be manually restarted
7329- SCIPsolveKnapsackExactly() got a new 12. parameter `SCIP_Bool* success` which stores if an error occured during
7330 solving(normally a memory problem)
7331- SCIP can now handle problems with continuous variables w.r.t. to counting (the projection to the integral variables
7332 are counted)
7333- an XML-parser is available in the src/xml subdirectory
7334- We do not distinguish between block memory for the original and the transformed problem anymore. The same
7335 block memory is now used in both problem stages.
7336- added new sorting method SCIPsortLongPtr(), SCIPsortDownLongPtr() and all corresponding methods
7337- added new sorting method SCIPsortRealIntPtr(), SCIPsortDownRealIntPtr() and all corresponding methods
7338
7339- Heuristics:
7340 - SCIP can now copy instances (e.g. for heuristics)
7341 - new undercover heuristic for MINLPs: fixes variables such as to obtain a linear or convex subproblem and solves this
7342 - primal heuristics may now already be called before presolving, using the new timing point
7343 `SCIP_HEURTIMING_BEFOREPRESOL`. Note that solutions that are added before/during presolving, will be retransformed to
7344 the original space.
7345 - primal heuristics may now be called during presolving, using the new timing point `SCIP_HEURTIMING_DURINGPRESOLLOOP`
7346 - added heuristic zirounding (heur_zirounding.{c,h})
7347 - added heuristic twoopt (heur_twoopt.{c,h})
7348 - added new NLP heuristic (heur_subnlp.{c,h}) which solves the sub-NLP that is obtained by fixing all discrete variables
7349 in the CIP and applying SCIP's presolving
7350 - feasibility pump heuristic now implements all functionality for feasibility pump 2.0
7351
7352- Reader:
7353 - can now read XML-solution files as used by CPLEX
7354 - the MPS reader can now read MIQPs and MIQCPs where a quadratic objective function can be specified by a QMATRIX or
7355 QUADOBJ section and the quadratic part of a quadratic constraint by a QCMATRIX
7356 - the MPS reader can now write quadratic and SOC constraints
7357 - the GAMS reader can now write SOC constraints
7358 - added support for bool_gt, bool_lt, bool_ge, bool_le, bool_ne, bool_not, int_times, int_minus, int_plus, int_negate,
7359 float_times, float_minus, float_plus, float_negate constraints to flatzinc reader
7360 - the LP reader (.lp files) can now read MIQPs and MIQCPs and write quadratic and SOC constraints
7361 - the LP reader (.lp files) and MPS reader can now read semicontinuous variables, they are handled by creating bound
7362 disjunction constraints
7363 - added new reader for polynomial mixed-integer programs (reader_pip.{c,h}) as used in the POLIP
7364
7365- Indicator constraints:
7366 - SCIP can now handle indicator constraints (reading (from LP, ZIMPL), writing, solving, ...) see \ref cons_indicator.h.
7367 - the indicator constraint can now decompose the problem, i.e., not add the linear constraint to the problem if all of
7368 its variables are continuous
7369 - can now read and write indicator constraints in the (extended) MPS format
7370 - cons_indicator tries to adapt solutions to get feasible during check
7371 - cons_indicator allows to store information on other linear constraints that might help to separate cuts
7372
7373- Constraint handlers:
7374 - Solution counting extended to constraint integer programs, this also
7375 includes constraint integer programs which contain continuous variables
7376 - The solution behavior of SCIP can be diversified by randomly permuting constraints and variables or randomly
7377 determining a set of branching variables with a unique high priority
7378 - `negated cliques` (1<=i<=n : sum (x_i) >= n-1) were added and we are using them now inside the knapsack constraint
7379 handler, the cliquepartitioning which is returned by SCIPcalcCliquePartition() contains now integer != 0, negatives ones
7380 indicates a negated clique and positive ones indicates a normal clique
7381 - SCIP is now able to detect in DEBUG-mode whether a constraint or variables which will be added, was also created in
7382 the same scip instance, if not an error is thrown
7383 - cons_knapsack is now able to detect negated cliques due to negated cliques on knapsack constraints
7384 - SCIP is now able to write non-linear opb-files(linear instances with and-constraints)
7385 - New constraint handlers for linking constraints (only Beta), cumulative constraints, and for breaking orbitopal symmetries
7386 - `negated cliques` handling in knapsack constraint handler got changed due to the new method
7387 SCIPcalcNegatedCliquePartition() resulting in new consdata members `negcliquepartition`, `negcliquepartitioned` and
7388 `nnegcliques`; changed SCIPcalcCliquePartition() so all cliquepartitions (calculated by SCIPcalcCliquePartition() or
7389 SCIPcalcNegatedCliquePartition(), which uses the first one) contain again not negative integers
7390 - `and`, `knapsack`, `linear`, `logic`, `or`, `quadratic`, `setpp`, `varbound`, `xor` and `clique` constraint handlers
7391 can handle implicit binary variables
7392 - knapsack constraint handler is now able to pairwise presolving constraints
7393 - constraint handlers `logicor`, `and`, `or` can parse their output
7394 - constraint handler `or` can copy its constraints
7395 - added packing/partitioning orbitope constraint handler for symmetry handling (cons_orbitope.{c,h})
7396 - added constraint handler for second order cone constraints (cons_soc.(c|h))
7397 - added constraint handler cons_linking.{c,h} (see cons_linking.c for more details)
7398 - cons_quadratic can make solutions in CONSCHECK feasible for the quadratic constraints by moving values of linear
7399 variables and passing the modified solution to the trysol heuristic
7400 - constraint handler can now register their upgrade functions for quadratic constraints to cons_quadratic (similar to
7401 LINCONSUPGD)
7402
7403- Separation:
7404 - New separators for oddcycle cuts and Chvatal-Gomory cuts using sub-MIPs
7405 - modified implementation of separation algorithms in cons_knapsack.c according to results of diploma thesis; including
7406 super-additive lifting (disabled)
7407 - uncommented decomposeProblem() in sepa_zerohalf.c (in default settings, not used anyway): was not adapted to the case
7408 that contiuous variables are allowed in a row
7409 - new separator rapid learning (sepa_rapidlearning.{c,h}) that produces conflicts, global bound changes, primal
7410 solutions and initializes inference values for branching
7411 - added Chvatal-Gomory cuts separated with a sub-MIP (sepa_cgmip.{c|h})
7412 - added reader for 'Weigted Boolean Optimization': problems (reader_wbo.{c,h}), this reader needs the reader_opb files
7413 - new separator oddcycle (sepa_oddcycle.{c,h}) separates oddcycle inequalities using the implication/conflict graph and
7414 dijkstra-algorithm based on binary heaps (dijkstra/dijkstra_bh.{c,h})
7415
7416- Branching:
7417 - Branching on externally given candidates, the \ref BRANCH 'branching rules' have a second new callback method
7418 (see type_branch.h for more details): SCIP_DECL_BRANCHEXECEXT(x) can be used to branch on external branching candidates,
7419 which can be added by a user's `relaxation handler` or `constraint handler` plugin, calling SCIPaddExternBranchCand().
7420 - added branchcands for relaxator solution, that can be added by the relaxator and used by branching rules
7421 - added relaxsol to variables, s.t. a relaxator can store a solution on which branching or separation can be done
7422 - SCIP can now branch on relaxation solutions that are either installed to the relaxsol field of the variables or added
7423 to the list of relaxation candidates, e.g., by constraint handlers. Branching on relaxation solutions is performed if
7424 the enforcement resulted in an unresolved infeasibility and there are no LP branching candidates, but before pseudo
7425 solution branching. The branching rules leastinf, mostinf, random and pscost implement the callback for branching on
7426 relaxation candidates.
7427 - SCIP can branch on continuous variables. The branching value x' must not be one of the bounds. Two children (x <= x',
7428 x >= x') will be created.
7429 - the vbc visualization adds the branching type (lower or upper bound change) and the new bound to the node information
7430 - the vbc visualization adds the new bound of the branched variable to the node information
7431
7432- Statistic:
7433 - added statistic information about the first primal solution to SCIP statistic; in the statistic output a new line
7434 appears with this information
7435 - now the statistic displays the number of calls of the feasibility checking method of each constraint handler and the
7436 running time of it
7437
7438- Propagation:
7439 - New rounding and propagation heuristics
7440 - New propagator for variable bounds
7441 - primal heuristics may now be called directly after the node's propagation loop, using the new timing point
7442 `SCIP_HEURTIMING_AFTERPROPLOOP`
7443 - following methods SCIPinferVarUbProp(), SCIPinferVarLbProp(), SCIPinferVarLbCons(), SCIPinferVarUbCons() have a new 6th
7444 parameter `SCIP_Bool force` which allows bound tightening even if the difference to the newbound is below bound
7445 strengthening tolerance
7446 - added propagator for variable lower and upper bounds (prop_vbounds.{c,h}); adjusted cons_varbound.c, var.c, and,
7447 implics.c to work correctly with the new propagator
7448
7449- Nonlinear CIPs:
7450 + Improved constraint handler for quadratic constraints
7451 + New constraint handler for second order cone constraints
7452 + New MINLP heuristics (undercover, subnlp)
7453 + Preliminary support for non-linear relaxations (via expression trees)
7454 + Automatic branching on solutions from arbitrary relaxations and on continuous variables
7455
7456Performance improvements
7457------------------------
7458
7459- improved `settings/emphasis/cpsolver.set` to decrease time per node
7460- reworked access to pseudo solution and inference value of variables in order to reduce function calls
7461- changed default value of parameter `nodeselection/restartdfs/selectbestfreq` to 0; this means if the current node has
7462 no children the node with the best bound is selected (SCIPgetBestboundNode())
7463- added a dual reduction step in cons_knapsack.c
7464- fasten check for common cliques in SCIPcliquelistsHaveCommonClique
7465- SCIP with CPLEX as LP solver now uses quickstart steepest edge pricing as default instead of steepest edge pricing
7466- avoid unnecessary domain propagation and LP resolve at nodes with infeasible LP relaxation
7467- improved zerohalf cut separator: more than one delta is tested for MIR cuts, better handling of dense base
7468 inequalities, faster scaling of fractional coefficients in rows (now enabled), improved parameter settings (presolving)
7469
7470- LP solution:
7471 - in root node, first LP solution is checked for feasibility to avoid expensive setup
7472 - avoided restarting if LP solution is feasible
7473 - separators are not called any longer for an integral initial LP solution
7474
7475Examples and applications
7476-------------------------
7477
7478- New branch-and-price example which includes Ryan/Foster branching (binpacking example)
7479- New example illustrating the use of an event handler (`example/Eventhdlr`)
7480
7481Interface changes
7482-----------------
7483
7484- Enhanced user interface for callable library: manual restarts, predefined settings and many other features
7485- Support of wbo format for weighted PBO problems, IBM's xml-solution format and pip format for polynomial mixed-integer programs
7486- Extended reader for Flatzinc models
7487- new API for 'expressions interpreter': code that evaluates expression trees, including first and second derivatives
7488- NLP solver interface (NLPI) now independent of SCIP like LPI
7489- SCIP can now maintain a central NLP relaxation of the problem (similar to LP)
7490- SCIP can now manage a list of external codes (e.g., LP or NLP solver, ZIMPL)
7491- lp.h/lp.c and the lpi's were changed according to the changes mentioned below.
7492- adding and deletion of rows to the separation storage and to the LP can now be catched by events
7493 (`SCIP_EVENTTYPE_ROWADDEDSEPA`, `SCIP_EVENTTYPE_ROWDELETEDSEPA`, `SCIP_EVENTTYPE_ROWADDEDLP`, `SCIP_EVENTTYPE_ROWDELETEDLP`)
7494
7495### New and changed callbacks
7496
7497- new callback SCIP_DECL_BRANCHEXECRELAX(), together with new parameter in SCIPincludeBranchrule() for branching on a
7498 relaxation solution
7499
7500- Copying a SCIP instance:
7501 - Constraint handlers have two new callback methods. One for copying the constraint handler plugins
7502 SCIP_DECL_CONSHDLRCOPY() and the other for copying a constraint itself, SCIP_DECL_CONSCOPY().
7503 - All plugins, like \ref BRANCH `branching rules` and \ref HEUR `primal heuristics`, have a new callback method (see, e.g.,
7504 type_branch.h and type_heur.h for more details):
7505 - SCIP_DECL_BRANCHCOPY(x), SCIP_DECL_HEURCOPY(x) etc.
7506 - When copying a SCIP instance, these methods are called to copy the plugins.
7507 - The main problem has a new callback method (see type_prob.h for more details) SCIP_DECL_PROBCOPY(x) when copying a
7508 SCIP instance, this method is called to copy the problem's data.
7509 - Variables have a new callback method (see type_var.h for more details) SCIP_DECL_VARCOPY(x) when copying a SCIP
7510 instance, this method is called to copy the variables' data.
7511
7512- Restarts:
7513 - The callback SCIP_DECL_PROBEXITSOL(x) in the main problem has one new parameter (see type_prob.h for more details):
7514 - The parameter `restart` is `TRUE` if the callback method was triggered by a restart.
7515
7516### Deleted and changed API functions
7517
7518- All C++ objects and constructors have a SCIP pointer, now.
7519- added parameter scip to ObjCloneable::clone()
7520- changes in a row can now be catched via row events (SCIPcatchRowEvent(), SCIPdropRowEvent(),
7521 `SCIP_EVENTTYPE_ROWCOEFCHANGED`, `SCIP_EVENTTYPE_ROWCONSTCHANGED`, `SCIP_EVENTTYPE_ROWSIDECHANGED`)
7522- added new parameter `varcopy` to SCIPcreateVar() to add the function for copying variable data
7523- in case of using SCIPwriteTransProblem() the currently (locally) valid problem is written this now also includes the
7524 local constraints
7525
7526- Settings:
7527 - The predefined setting files like `settings/cuts/off.set,aggressive.set,fast.set` have been replaced by
7528 interface methods like SCIPsetHeuristics(), SCIPsetPresolving(), SCIPsetSeparating(), and SCIPsetEmphasis() in
7529 \ref scip.h and by user dialogs in the interactive shell like
7530 `SCIP> set {heuristics|presolving|separating} emphasis {aggressive|fast|off}` or
7531 `SCIP> set emphasis {counter|cpsolver|easycip|feasibility|hardlp|optimality}`
7532 - All functions for setting user parameters of different types like SCIPparamSetBool(), SCIPparamSetChar(),
7533 SCIPparamSetInt(), SCIPparamSetLongint(), and SCIPparamSetString() in pub_paramset.h have a new parameter
7534 `quiet` it prevents any output during the assign to a new value.
7535
7536- NLP:
7537 - NLPIs can now be used without generating a SCIP instance (i.e., do not require a SCIP pointer), code moved into src/nlpi
7538 - NLPIs can now be managed like other SCIP plugins, i.e., they can be included into the SCIP core and accessed by
7539 methods SCIPincludeNlpi(), SCIPfindNlpi(), SCIPgetNNlpis(), SCIPgetNlpis(), SCIPsetNlpiPriority()
7540
7541- Intervalarithmetic:
7542 - method SCIPgetVarPseudocostCurrentRun() now returns the pseudocost value of one branching direction, scaled to a unit
7543 interval, old method now called SCIPgetVarPseudocostValCurrentRun()
7544 - renamed SCIPintervalScalarProductRealsIntervals()/SCIPintervalScalarProduct() by
7545 SCIPintervalScalprodScalars()/SCIPintervalScalprod() and redesigned them in intervalarith.c including new methods
7546 SCIPintervalScalprodScalarsInf/Sup()
7547
7548- Branching:
7549 - The usage of strong branching changed. Now, SCIPstartStrongbranch() and SCIPendStrongbranch() must be
7550 called before and after strong branching, respectively.
7551 - The methods SCIPgetVarPseudocost() and SCIPgetVarPseudocostCurrentRun() in \ref scip.h now return the pseudocost value of
7552 one branching direction, scaled to a unit interval. The former versions of SCIPgetVarPseudocost() and
7553 SCIPgetVarPseudocostCurrentRun() are now called SCIPgetVarPseudocostVal() and SCIPgetVarPseudocostValCurrentRun(), respectively.
7554 - The methods SCIPgetVarConflictScore() and SCIPgetVarConflictScoreCurrentRun() in \ref scip.h are now called
7555 SCIPgetVarVSIDS() and SCIPgetVarVSIDSCurrentRun(), respectively.
7556 - The methods SCIPvarGetNInferences(), SCIPvarGetNInferencesCurrentRun(), SCIPvarGetNCutoffs(), and
7557 SCIPvarGetNCutoffsCurrentRun() are now called SCIPvarGetInferenceSum(), SCIPvarGetInferenceSumCurrentRun(),
7558 SCIPvarGetCutoffSum(), and SCIPvarGetCutoffSumCurrentRun(), respectively. Furthermore, they now return
7559 `SCIP_Real` instead of `SCIP_Longint` values.
7560 - The method SCIPgetVarStrongbranch() has been replaced by two methods SCIPgetVarStrongbranchFrac() and
7561 SCIPgetVarStrongbranchInt().
7562
7563- Copying a SCIP instance:
7564 - Every new callback method resulted in a new parameter of the include function for the corresponding plugin,
7565 e.g., SCIPincludeBranchrule() has two new parameters `SCIP_DECL_BRANCHCOPY((*branchcopy))` and
7566 `SCIP_DECL_BRANCHEXECREL((*branchexecrel))`. In the same fashion, the new callbacks
7567 `SCIP_DECL_VARCOPY` and `SCIP_DECL_PROBCOPY` led to new parameters in SCIPcreateVar() and SCIPcreateProb() in
7568 scip.c, respectively.
7569 - W.r.t. to copy and the C++ wrapper classes there are two new classes. These are `ObjCloneable` and `ObjProbCloneable`.
7570 The constraint handlers and variables pricers are derived from `ObjProbCloneable` and all other plugin are derived from `ObjCloneable`.
7571 Both classes implement the function `iscloneable()` which return whether a plugin is clone able or not. Besides that each class has a
7572 function named `clone()` which differ in their signature. See objcloneable.h, objprobcloneable.h, and the TSP example for more details.
7573 - SCIPincludeHeur() and SCIPincludeSepa() in \ref scip.h, as well as scip::ObjSepa() and scip::ObjHeur(), have a new parameter:
7574 `usessubscip`: It can be used to inform SCIP that the heuristic/separator to be included uses a secondary SCIP instance.
7575 - The argument success in `SCIP_DECL_CONSCOPY` has been renamed to valid.
7576
7577- Heuristics:
7578 - SCIPcutGenerationHeuristicCmir() in sepa_cmir.h has three new parameters:
7579 - `maxmksetcoefs`: If the mixed knapsack constraint obtained after aggregating LP rows contains more
7580 than `maxmksetcoefs` nonzero coefficients the generation of the c-MIR cut is aborted.
7581 - `delta`: It can be used to obtain the scaling factor which leads to the best c-MIR cut found within
7582 the cut generation heuristic. If a `NULL` pointer is passed, the corresponding c-MIR cut will already be
7583 added to SCIP by SCIPcutGenerationHeuristicCmir(). Otherwise, the user can generate the cut and add it to SCIP
7584 on demand afterwards.
7585 - `deltavalid`: In case, the user wants to know the best scaling factor, i.e., `delta` passed is not `NULL`,
7586 `deltavalid` will be `TRUE` if the stored scaling factor `delta` will lead to a violated c-MIR cut.
7587
7588### New API functions
7589
7590- added SCIPcalcNegatedCliquePartition() to scip.c to calculate a clique partition on negations of all given binary
7591 variables
7592- SCIPpermuteArray() that randomly shuffles an array using the Fisher-Yates algorithm
7593- SCIPgetRandomSubset() that draws a random subset of disjoint elements from a given set of disjoint elements
7594- SCIPswapPointers()
7595- SCIPlpiGetSolverDesc() to get a descriptive string of an LP solver (developer, webpage, ...)
7596- SCIPholelistGetNext() to get the next hole of the hole list
7597- SCIPlpRecalculateObjSqrNorm() which is used when the old calculated square norm was unreliable
7598- SCIPpricerIsDelayed() which returns if the pricer is delayed (see pub_pricer.h)
7599
7600- Variables:
7601 - SCIPvarIsBinary() which checks if a variable is (implicit) binary (see var.c for more details)
7602 - SCIPvarGetHolelistOriginal(), SCIPvarGetHolelistGlobal(), SCIPvarGetHolelistLocal() to get the original, global and local holes, respectively
7603 - SCIPvarGetProbvarHole() to tranform a given domain hole to the corresponding active, fixed, or multi-aggregated variable
7604
7605- Restart:
7606 - allow user to trigger a restart during presolving SCIPrestartSolve()
7607 - SCIPrestartSolve() that allows the user to manually restart the solving process
7608 - SCIPisInRestart() to detect whether we are currently restarting
7609
7610- Heuristics:
7611 - for heuristics SCIPheurSetFreq() to change the frequency of the heuristic (pub_heur.h, heur.c)
7612 - SCIPsepaUsesSubscip(), SCIPheurUsesSubscip()
7613
7614- Intervalarithmetic:
7615 - SCIPeventGetHoleLeft() and SCIPeventGetHoleRight() for accessing the left right interval bound of a domain hole added or removed event
7616 - SCIPholelistGetLeft() and SCIPholelistGetRight()to get the left and right interval bounds of the open hole interval
7617 - SCIPintervalAddInf/Sup/Vectors(), SCIPintervalMulInf/Sup() in intervalarith.c
7618
7619- Sorting:
7620 - added SCIPsortPtrPtrLongIntInt(), SCIPsortLongPtrPtrIntInt() and corresponding sorting/inserting/deleting methods in
7621 pub_misc.h and necessary defines in misc.c
7622 - added SCIPsortLongPtrInt() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
7623 - added SCIPsortPtrPtrInt() (and various other) and corresponding sorting/inserting/deleting methods in pub_misc.h and
7624 necessary defines in misc.c
7625 - SCIPsortPtrBool() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
7626
7627- Constraint Handlers:
7628 - SCIPconshdlrGetEnfoConss(), SCIPconshdlrGetNEnfoConss()
7629 - can now forbid upgrading of individual linear constraints (SCIPmarkDoNotUpgradeConsLinear())
7630 - SCIPpermuteProb() that randomly permutes constraints and variables
7631 - SCIPgetResultantOr() which returns the resultant of an `or` constraint
7632 - SCIPmarkDoNotUpgradeConsLinear() in cons_linear.?, which allows to forbid upgrading of linear constraints
7633 - SCIPgetNUpgrConss() which returns the number of upgraded constraints
7634 - SCIPconshdlrGetCheckTime() and SCIPconshdlrGetNCheckCalls() which returns the running time in the feasibility checking of the
7635 corresponding constraint handler respectively the number of calls of the checking method (implemented in cons.c)
7636
7637- Copy:
7638 - SCIPcopy() to clone a SCIP instance
7639 - SCIPcopyPlugins(), SCIPcopyParamSettings(), SCIPcopyVars(), SCIPcopyConss(), SCIPgetVarCopy() to copy
7640 individual parts of a SCIP instance separately.
7641 - SCIPcopyProbData() and SCIPprobCopyProbData() which copies the probdata from a sourcescip to a targetscip
7642
7643- Branching:
7644 - two new functions SCIPgetVarsStrongbranchesFrac()/SCIPgetVarsStrongbranchesInt() for computing strong branching
7645 information for several variables
7646 - SCIPbranchruleGetNRelaxCalls() to get the total number of times, a particular branching rule was called on a relaxation solutions
7647 - SCIPbranchRelax() to branch on a relaxation solution
7648 - SCIPbranchVarVal() to branch on an arbitrary value within the variable's bounds
7649 - SCIPbranchGetBranchingPoint() and SCIPgetBranchingPoint() to select branching point for a variable, e.g.,
7650 ensure branching point is inside the interval for a continuous variable
7651 - SCIPexecRelpscostBranching() in branch_relpscost.{c,h}; this method allows of calling the reliability
7652 pseudo cost branching algorithm for given set of branching candidates from the outside
7653 - SCIPinitVarBranchStats() to initialize the branching statistics (such as pseudo costs, VSIDS, inference values) of a variable
7654 - SCIPselectBranchVarPscost() in branch_pscost.{c,h}; this method selects from a given candidate array a
7655 branching variable w.r.t. pseudo cost branching for relax candidates
7656
7657- Reading, Writing and Parsing:
7658 - SCIPparseVarName() which parses a string in cip-format as a variable name
7659 - SCIPparseVarList() which parses a string as a variable list in cip-format
7660 - the Flatzinc reader can now handle the output annotations of the Flatzinc format; the method SCIPprintSolReaderFzn()
7661 outputs the given solution in Flatzinc format w.r.t. the output annotations
7662 - SCIPprintSolReaderFzn() which prints the best solution in Flatzinc format w.r.t. to the output annotations
7663 in the input file of the flatzinc model
7664 - SCIPwriteVarName() which writes a variable in cip-format to given stream
7665 - SCIPwriteVarsList() which writes an array of variables in cip-Format to given stream
7666 - SCIPwriteVarsLinearsum() which writes an array of variables and coefficients as linear sum in cip-Format to given stream
7667
7668- Copying a SCIP instance:
7669 - SCIPapplyRens() in \ref heur_rens.h has a new parameter `uselprows`. It can be used to switch from LP rows
7670 to SCIP constraints as basis of the sub-SCIP constructed in the RENS heuristic.
7671
7672- Parameters:
7673 - SCIPsetParamsCountsols() which sets the parameter for a valid counting process
7674 - SCIPsetEmphasis() which sets parameter to detect feasibility fast, handle hard LP, solves easy CIPs fast, behaves like a
7675 CP solver, set parameter for a valid counting process; the desired behavior is triggered via a parameter of the function
7676 - SCIPresetParam() to reset the value of a single parameter to its default value
7677
7678- Settings:
7679 - added SCIPsortRealRealRealPtr() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines in misc.c
7680 as basis for the subSCIP, setting ist to TRUE (uses LP rows) will lead to same version as before
7681 - SCIPsetHeuristics(), SCIPsetSeparating(), SCIPsetPresolving() which set the heuristics to aggressive, fast, off, or
7682 default settings, depending on the `SCIP_PARAMSET` parameter
7683 - SCIPsetSubscipsOff() which disables all plugins that uses subscips
7684 - SCIPsepaSetFreq() to set the calling frequency of a separator
7685
7686### Command line interface
7687
7688- added new dialog for setting the SCIP parameters for hardlp, optimality, easy CIP, CP like search
7689- added new dialog for setting the SCIP parameters for feasibility problems `SCIP> set emphasis feasibility`
7690- added new dialog for setting the SCIP parameters for counting `SCIP> set emphasis counting`
7691- added new dialog for setting presolving to aggressive, fast, or off in interactive shell
7692- added new dialog for setting separation to aggressive, fast, or off in interactive shell
7693- added new dialog for writing all solutions which are collected during the counting process (see cons_countsols.{c,h})
7694- added new dialog for setting heuristics to aggressive, fast, or off in interactive shell
7695- added new dialog `display pricers` which displays all included pricers
7696
7697### Interfaces to external software
7698
7699- added interface to CppAD (nlpi/exprinterpret_cppad.cpp)
7700- Improved Xpress, CPLEX, SoPlex interfaces
7701- the SoPlex interface now includes equilibrium scaling on lp's solved from scratch without starting basis
7702- the SoPlex interface can now double check each SoPlex result against CPLEX (lpi_spx.cpp)
7703- the SoPlex interface has the option to restore basis only after entire strong branching phase instead of after each
7704 strong branch (off, because it mostly appears to increase strong branching time and iterations) (lpi_spx.cpp)
7705
7706### Changed parameters
7707
7708- removed parameter `constraints/knapsack/maxnumcardlift` and adapted setting files
7709- changed parameter `lp/fastmip` from boolean to integer, possible values are 0 (off), 1 (medium, default), 2 (full,
7710 must not be used with branch-and-price).
7711
7712### New parameters
7713
7714- `branching/clamp` to set the minimal fractional distance of a branching point to a continuous variable' bounds
7715- `branching/random/seed` to change the initial seed value of the branching rule random
7716- `constraints/indicator/addCouplingCons` that allows to add variable upper bounds if addCoupling is true
7717- `constraints/indicator/enforceCuts` that allows to check for violated cust in enforcement
7718- `constraints/indicator/maxCouplingValue` for the maximal value of the coefficient in a coupling inequality/constraint
7719- `constraints/indicator/noLinconsCon` which controls whether the linear constraint is not explicitly
7720 added to the problem. default is FALSE
7721- `constraints/knapsack/dualpresolving` to switch dualpresolving on/off inside the knapsack constraint handler, default is TRUE
7722- `constraints/knapsack/presolpairwise` that allows pairwise presolving of knapsack constraints, default is TRUE
7723- `constraints/knapsack/presolusehashing` that allows fast pairwise presolving of knapsack constraints, default is TRUE
7724- `heuristics/crossover/dontwaitatroot` that allows to call crossover at root node independently from nwaitingnodes
7725- `heuristics/rens/uselprows` that allows to switch between LP row and SCIP constraints as basis for the
7726 subSCIP, default is TRUE (uses LP rows)
7727- `lp/rowrepswitch` telling simplex solver to switch to row representation of the basis (if possible),
7728 if number of rows divided by number of columns exceeds this value (default value infinity, i.e. never switch)
7729- `lp/threads` to change the number of threads used to solve the LP relaxation (default is 0: automatic)
7730- `misc/lexdualstalling` that turns on the lex dual algorithm if the separation process is stalling
7731- `misc/usevartable` and `misc/useconstable` which turns on/off the usage of hashtables mapping from
7732 variable/constraint names to the variables/constraints; when turned off, SCIPfindVar() and SCIPfindCons() may not be
7733 used; the hashtables can be turned off for subMIPs to improve the performance, default value TRUE
7734- `misc/usesmalltables` which results in using smaller tables for names, cliques and cuts and improves
7735 the performace for smaller instances, default value FALSE
7736- `misc/permutationseed` to change the permutation seed value for permuting the problem after the
7737 problem is transformed (-1 means no permutation)
7738- `reading/zplreader/usestartsol` which allows to switch ZIMPL start solutions off, default value TRUE
7739- `vbc/dispsols` to propose if the nodes where solutions are found should be visualized in the branch and bound tree
7740
7741### Data structures
7742
7743- implemented the data structure and events for global and local domain holes added and removed
7744- new data structures and methods to handle nonlinear expressions in NLPI ({type_, struct_, pub_}expression.{h,c}):
7745 nlpioracle can store and evaluate general NLPs now, nlpi_ipopt can solve general NLPs now
7746
7747Testing
7748-------
7749
7750- minor changes on several evaluation scripts (new statuses: better, solved, sollimit, gaplimit) and short-mode for cmpres.awk
7751- support for FreeBSD (32- and 64-bit) including minor changes in several scripts in the check-directory
7752
7753Build system
7754------------
7755
7756### Makefile
7757
7758- added scripts check_*.sh, evalcheck_*.sh and check_*.awk for blis, glkp, gurobi and symphony (including targets in
7759 Makefile) and slightly modified scripts for cplex, cbc and mosek and cmpres-script
7760- added target `lintfiles` which allows to call flexelint with a list of file, for example, make lintfiles
7761 `FILES=src/scip/prop_vbounds.c`
7762- the NLP solver interfaces and expression interpreter are located in a separate library (libnlpi.*; similar to the lpi
7763 library) and is required to link against the SCIP library also projects that use SCIP via `make/make.project` need to
7764 change their Makefile (!!!): in the $(MAINFILE) target, add $(NLPILIBFILE) behind $(LPILIBFILE) in the dependencies
7765 and add $(LINKCXX_l)$(NLPILIB)$(LINKLIBSUFFIX) to the linker flags
7766- The additional NLPI library requires a change in the Makefile of SCIP's project:
7767 The $(MAINFILE) target now has $(NLPILIBFILE) as additional dependency and the linking
7768 command requires $(LINKCXX_l)$(NLPILIB)$(LINKLIBSUFFIX) as additional argument.
7769- A bug in the Makefiles of older versions of the SCIP examples may cause
7770 data loss. If you have a custom Makefile, please ensure that the target
7771 `clean` is changed as described here:
7772 http://scipopt.org/download/bugfixes/scip-1.2.0/make.txt.
7773
7774Fixed bugs
7775----------
7776
7777- fixed bug in conflict.c in the method conflictsetAddBound()
7778- fixed `bug` in projects Makefiles w.r.t. `make clean`
7779- fixed bug in rapid learning with wrong ordering of dual and primal bound update, primal bound is now updated inside
7780 rapid learning
7781- fixed potential bug in rapid learning with dual reductions
7782- fixed potential bug where SCIPselectSimpleValue() returns a value slightly outside of the given bounds due to rounding
7783 errors (probably cancelation in subtraction in SCIPfindSimpleRational), now use rounding control and check result
7784- fixed bug that SCIP could not be continued after it has been stopped due to a limit
7785- fixed bug in var.c: SCIPvarChgLbOriginal() and SCIPvarChgUbOriginal() cannot access original bounds if the variable is
7786 negated
7787- fixed potential bug with pseudo solution branching on free variables
7788- fixed bug with multiaggregations whose infimum and supremum are both infinite: in such a case multiaggregation is now
7789 forbidden
7790- fixed numerical issue with multiaggregations which are infinite in one direction: value of multiaggregated variable
7791 could have been larger then inifinity
7792- fixed bug w.r.t. of adding a variable bound variable to its self
7793- fixed bug concering the incorrect assumption that every solution computed in SCIPlpGetUnboundedSol() is integral (we
7794 will not branch but return `infeasible or unbounded` like in presolving)
7795- fixed bug while breaking an clique down to their impications (in SCIPcliquetableCleanup() in implics.c) where the
7796 variable was not of vartype `SCIP_VARTYPE_BINARY`, instead of adding an implication we add a variable bound
7797- fixed bug with debugging a solution: during restarts erroneously it was claimed that the primal solution is cut off
7798
7799- Interface:
7800 - fixed bug w.r.t. ObjDialog and displaying the description of the dialog
7801 - fixed bug when aborting pricing with Ctrl-C
7802
7803- LP:
7804 - fixed bug in scip.c w.r.t. to call of conflict analysis for LPs which reached the objective limit in case of diving
7805 - fixed bug with resolving LPs at infeasible root node
7806 - fixed bug in lp.c: in sumMIRRow() rowtoolong was not set correctly
7807 - fixed bug in lp.c w.r.t. objective limit reached and the chosen comparison (fixed buglist entry 40)
7808 - fixed bug in lp.c: if in SCIPlpSolveAndEval() the LP has to be solved from scratch due to numerical troubles, reset
7809 `SCIP_LPPARAM_FROMSCRATCH` to `FALSE` afterwards
7810 - fixed bug in lp.c SCIProwGetObjParallelism() due to a wrong parallelism value which arised from cancellations during
7811 calculation of squared euclidean norm of objective function vector of column variables
7812 - fixed bug in lp.c: SCIPlpGetUnboundedSol() did not ensure that unbounded solution lies withing the bounds of the
7813 variables
7814 - fixed bug in lp.c w.r.t. to the number of `active` pricer
7815
7816- Solve:
7817 - fixed bug in solve.c where relaxation branching candidates were cleared, but the relaxation was still marked solved
7818 and not called again, furthermore, adjusted criterions for solving a relaxation again
7819 - fixed bugs in solve.c: even with LP solving disabled, the root LP was solved in case continous variables are
7820 contained; setting pricing/maxvars(root) to 1 resulted in not calling the pricers
7821 - fixed bug in solve.c: make sure SCIP terminates correctly also when a user interrupt or gap limit is reached, i.e.,
7822 avoid error `pricing was aborted, but no branching could be created!`
7823
7824- Tree:
7825 - fixed bug in tree.c: if an explicit branching point is given, we may not recompute a better centering point
7826 - fixed bug in tree.c: propagate implications on multi-aggregated should not be performed
7827
7828- Constraints:
7829 - corrected several asserts in linear and quadratic constraint handler concerning parsing of CIP format
7830 - fixed bug while deleting redundant variables, which have no influence on changing the feasibility of the linear
7831 constraints, we need to update the sides of the constraint at each step, bug number 51 in bugzilla
7832 - fixed bug in copy procedure of AND constraint handler, negated variables have been copied to their originals
7833 - fixed bug when deleting a constraint where the update was delayed and not processed yet (in cons.c)
7834 - fixed bug in cons_linear.c: binary variables should not be multi-aggregated
7835 - fixed bug in cons_quadratic.c: curvature of bivariate quadratic constraints was not detected correctly
7836 - fixed bug in cons_sos2.c: the branching position was sometimes mistakenly increased
7837 - fixed bug in propagation of cons_sos2.c: the node can be cut off at more places: the previous version was not
7838 sucessfull in this respect
7839 - fixed bug in cons_linear.c:applyFixings() which could lead to lhs/rhs smaller/larger than -/+infinity
7840 - fixed bug in cons_linear.c in detectRedundantConstraints() and corrected old bug fix in SCIProwCreate(): we want lhs
7841 <= rhs to be satisfied without numerical tolerances in order to avoid numerical problems in the LP solver
7842
7843- Knapsack Constraint Handler:
7844 - fixed bug in cons_knapsack.c: mergeMultiples() now detects whether a node can be cut off
7845 - fixed bug in cons_knapsack.c w.r.t. to items with zero weight
7846 - fixed bug in cons_knapsack.c: In SCIPseparateRelaxedKnapsack() not all variables need to be active in deeper regions
7847 of the tree
7848 - fixed bug in cons_knapsack.c and sepa_clique.c: the assumption that implications are always nonredundant and contain
7849 only active variables is not correct anymore as the corresponing vbound might be missing because of numerics
7850
7851- Separation and Cuts:
7852 - fixed bug in cutpool.c: the hashkey computation was not constant over time
7853 - fixed bug in cutpool.c: hashkey of a row changed during the solving process (if a row is made integral after creation,
7854 maxabsval can be invalid when adding it to the pool, but might be recomputed later on)
7855 - fixed bug in sepa_rapidlearning.c, stop processing if there are no binary variables left
7856 - fixed bug in sepa_rapidlearning.c, corrected computation of right dualbound
7857 - fixed bugs in sepa_zerohalf.c, e.g., handling of intscaling and substitution of variable bounds
7858 - fixed bug in sepastore.c in sepastoreApplyLb/Ub being to hard on feasibility decisions
7859 - fixed bug in sepa_flowcover.c: numerical issues while computing candidate set for lambda
7860
7861- LP Interfaces:
7862 - fixed bug in SoPlex autopricing due to which autopricing had behaved like steepest edge pricing so far
7863 - fixed bug in lpi_clp.cpp: SCIPlpiChgBounds() checks if the column status exists in Clp before using it
7864 - fixed wrong assert in Cplex LPI: Due to numerical inaccuracies, a few pivots might be performed after refactorization
7865 - fixed bug concerning assert(!SCIPlpDivingObjChanged(lp)) which was caused by wrong infinity double parameters for
7866 cplex
7867 - fixed makefile system for `OSTYPE=darwin` w.r.t. to CPLEX as LP solver
7868
7869- Presolving:
7870 - fixed bug in cons_setppc: aggregated variables were not correctly removed in presolving
7871 - fixed bug in presolving of linear constraint handler: in redundancy detection, two different numerical epsilons were used
7872 - fixed bug in presolving while not applying a bound change on a variable in a single-variable constraint (e.g. x1 =
7873 0.03) in cons_linear which is too small, that lead to another bound change in presol_trivial which is not allowed, so
7874 now this bound change will be forced
7875 - fixed SCIPvarIsTransformedOrigvar() in var.c (variables generated by presol_inttobinary returned false)
7876 - fixed bug w.r.t. an assert in presol_inttobinary.c; it was assumed that the aggregation which is performed there will
7877 never lead to an infeasibility, this is not true, see comment in presol_inttobinary.c
7878 - fixed bug in presol_trivial.c trying to fix continuous variables, now uses a less stricter comparison to fix variables
7879 - fixed bug in cons_bounddisjunction.c: presolve may have tried to tighten bounds on a multiaggregated variable (now
7880 upgrades to linear constraint)
7881
7882- Reading, Writing and Messages:
7883 - fixed bug while trying to write a MIP where SCIP needs to flush the lp changes first
7884 - fixed potential resource leak when running out of memory while writing files
7885 - fixed bug in reader_zpl.c which appeared using the parameter `reading/zplreader/parameters`
7886 - fixed bugs in flatzinc readers with constraints that exclusively consist of constants
7887 - fixed bug in reader_gms: correct handling of nonstandard bounds on general integer variables
7888 - fixed buglist entry 35, which was caused by a wrong read in correction when the reading buffer was full in
7889 reader_opb.c
7890 - fixed bugs in reader_fzn.c w.r.t. parsing and solution output in Flatzinc format
7891 - fixed bug in reader_fzn.c w.r.t. comment lines
7892 - fixed bug in reader_opb.c w.r.t. comment lines
7893 - fixed bug in message handler w.r.t. to messages which are longer then `SCIP_MAXSTRLEN`
7894
7895- Heuristics:
7896 - fixed bugs do to `HEUR_TIMING SCIP_HEURTIMING_AFTERPROPLOOP` which appeared during repropagation
7897 - fixed bug in trivial heuristic: the locking solution might have falsely initialized some values to zero
7898 - fixed bug in heur_oneopt.c w.r.t. to SCIPtrySol(); it is necessary that the bound of the solution is check otherwise,
7899 infeasible solution could be accepted as feasible
7900 - fixed bug in heur_trivial.c w.r.t. to debug messages after a solution was freed
7901 - fixed bug for `HEUR_TIMING SCIP_HEURTIMING_BEFOREPRESOL` and modifiable constraints
7902 - corrected wrong assert in DINS heuristic when called for an empty problem
7903 - fixed potential bug in OCTANE heuristic with nonbasic solutions
7904 - fixed bug in sub-MIP heuristics with parameter change if some default plugins are not included
7905 - fixed bug in trivial heuristic with bounds that are greater than the heuristic's infinity value
7906
7907Miscellaneous
7908-------------
7909
7910- As the interface contains several additional callback functions and
7911 parameters for plugins, some effort may be required to compile your
7912 own projects with SCIP 2.0. See also `Changes between version 1.2 and 2.0` in the doxygen
7913 documentation for additional information.
7914
7915@page RN1_2 Release notes for SCIP 1.2
7916
7917@section RN120 SCIP 1.2.0
7918*************************
7919
7920Features
7921--------
7922
7923- adjusted hard memory limit to (soft memory limit)*1.1 + 100mb in check.sh, checkcount.sh, check_cplex.sh,
7924 check_cluster.sh and check_cbc.sh
7925- new presolving step in cons_knapsack.c, same like `simplifyinequalities` in cons_linear.c
7926- now it's possible to write strings with more than `SCIP_MAXSTRLEN` amount of characters in all message.c functions
7927- the current/root lp can be marked to be no relaxation of the current/root problem
7928- added new preprocessing step (mergeMultiples) in cons_setppc.c where equal variables are merged
7929- Black-box lexicographic dual simplex algorithm; can now run lexicographical dual algorithm (parameter `lp/lexdualalgo`)
7930
7931- Bounds:
7932 - SCIP now has `lazy bounds`, which are useful for column generation: see @ref PRICER_REMARKS `pricer remarks` for an explanation.
7933 Each variable has now two additional `SCIP_Real` parameter which define a lazy lower and upper bound; lazy means that
7934 there exists constraints which implies these (lazy) bounds. If the lazy lower or upper bound is greater or less than
7935 the local lower or upper bound, respectively, then the corresponding bound is not put into the LP. The bounds are set
7936 to minus and plus infinity per default which yields the same behavior as before. With the methods SCIPchgVarLbLazy()
7937 and SCIPchgVarUbLazy() these bounds can be set. This is of interest if SCIP gets used as a branch-and-price
7938 framework. Attention! The lazy bounds need to be valid for each feasible LP solution. If the objective function
7939 implies bounds on the variables for each optimal LP solution, but these bounds may be violated for arbitrary LP
7940 solutions, these bounds must not be declared lazy!
7941 - interval arithmetic functions can work with unbounded intervals added new functions to allow more operations on
7942 intervals, including solving quadratic interval equations
7943
7944- Branching:
7945 - extended hybrid relpscost branching rule by usage of the average length of conflicts a variable appears in
7946 - `early branching`-functionality added: in a branch-and-price code, the user can stop pricing at a node although there
7947 may exist variables with negative reduced costs. In this case, the lp-lowerbound will not be used. The pricer has,
7948 however, the option to return a lower bound. This can be useful for column generation.
7949
7950- Constraints:
7951 - Copy constructors and i/o functionality for constraints: all linear type constraint handlers are able to copy
7952 constraints using the function SCIPgetConsCopy() in scip.h
7953 - the linear constraint handler is able to parse a string in CIP format and create a corresponding linear constraint
7954 - Constraint handler for indicator constraints and parsing them from *.lp and *.zpl files
7955 - the indicator constraint can now try to produce a feasible solution (via heur_trysol)
7956 - one can now write indicator constraints in LP-format
7957 - added constraint handler for quadratic constraints
7958
7959- Cuts:
7960 - added new version of zerohalf cuts from Manuel Kutschka
7961 - added multi-commodity-flow cut separator
7962
7963- Heuristics:
7964 - Heuristics which are applied before root LP
7965 - added heuristic that performs a local search in an NLP (takes only linear and quadratic constraints into account so far)
7966 - added heuristic that gets a solution from other components and tries it (heur_trysol.?)
7967 - new trivial heuristic: tries zero solution, lower and upper bound solution and some variable lock based fixing
7968 - added new timing point, `SCIP_HEURTIMING_DURINGPRICINGLOOP`, for calling heuristics; If this timing point is used the
7969 corresponding heuristics is called during the pricing loop of variables; we also added this timing point to
7970 heur_simplerounding.{h,c} which has the effect that a LP solution which satisfies all integrality conditions during
7971 the pricing loop is detected
7972
7973- Interfaces:
7974 - 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)
7975 - Preliminary support of non-convex MIQCPs: Constraint handler for quadratic constraints, NLP heuristic and
7976 Ipopt interface, see \ref cons_quadratic.h.
7977 - There are LP-interfaces to QSopt and Gurobi (rudimentary).
7978
7979- Reader and Writer:
7980 - added reader and writer for FlatZinc models (reader_fzn.{c,h})
7981 - added writer for GAMS models (reader_gms.{c,h})
7982
7983Performance improvements
7984------------------------
7985
7986- Enhanced MCF cuts: stable version, used by default
7987- replaced some function calls in loop conditions
7988- in sepa_cmir.c, if mksetcoefs is invalid for delta=1 no other values of delta are tested anymore
7989- changed the timing of the feasibility pump in case of pricing
7990- removed changing of update rule to `ETA` from standard soplex update `Forrest-Tomlin` in lpi_spx.cpp
7991- improved memory usage in heur_octane.c
7992- improved reading time of opb-files, due to using a hashtable for all `and`-constraints
7993- improved performance of merging variables in mergeMultiples() in cons_knapsack.c
7994- improved performance in tightenWeightsLift() and SCIPseparateRelaxedKnapsack() in cons_knapsack.c, due to now
7995 sparse-cleaning `global` arrays instead of using BMSclearMemory... functions for cleaning local arrays each time
7996- improved performance in SCIPcliquelistRemoveFromCliques()
7997- improved performance in SCIPcalcCliquePartition()
7998- improved performance in SCIPvarGetActiveRepresentatives() in var.c
7999
8000- Presolving:
8001 - improved pairwise presolving in cons_and.c due to using a hashtable
8002 - improved pairwise presolving in cons_xor.c due to using a hashtable
8003
8004Interface changes
8005-----------------
8006
8007- A significant change for C++ users is that all include files of SCIP
8008 automatically detect C++ mode, i.e., no `extern `C`` is needed anymore.
8009- Reader for Flatzinc and GAMS models
8010
8011### New and changed callbacks
8012
8013- The callback SCIP_DECL_PRICERREDCOST(x) in the \ref PRICER `pricers` has two new parameters:
8014 + A `result` pointer determines whether the pricer guarantees that there exist no more variables. This allows for early branching.
8015 + A pointer for providing a lower bound.
8016
8017- The \ref CONS `constraint handlers` have two new callback methods (see type_cons.h for more details):
8018 + SCIP_DECL_CONSCOPY(x): this method can be used to copy a constraint.
8019 + SCIP_DECL_CONSPARSE(x): this method can be used to parse a constraint in CIP format.
8020
8021### Deleted and changed API functions
8022
8023- SCIPcalcMIR() in scip.h has two new parameter `mksetcoefsvalid` and `sol`. The parameter `mksetcoefsvalid` stores
8024 whether the coefficients of the mixed knapsack set (`mksetcoefs`) computed in SCIPlpCalcMIR() are valid. If the mixed
8025 knapsack constraint obtained after aggregating LP rows is empty or contains too many nonzero elements the generation of the
8026 c-MIR cut is aborted in SCIPlpCalcMIR() and `mksetcoefs` is not valid. The input parameter `sol` can be used to separate a
8027 solution different from the LP solution.
8028- new parameter `set` in SCIPconsSetInitial().
8029- some interval arithmetic method take an additional argument to denote which value stands for infinity in an interval
8030
8031- Variables:
8032 - SCIPgetVarClosestVlb() and SCIPgetVarClosestVub() in scip.h have a new parameter `sol`. It can be used to obtain the closest
8033 variable bound w.r.t. a solution different from the LP solution.
8034 - new parameters `lowerbound` and `result` in type_pricer.h: lowerbound can save a lower bound computed by the pricer,
8035 result indicates whether the pricer guarantees that there exist no more variables if no variable was found
8036
8037### New API functions
8038
8039- new methods to deactivate a pricer SCIPdeactivatePricer() in scip.c
8040- 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
8041- SCIPsetProbName() to set problem name in scip.h/c (SCIPprobSetName() in prob.h/c)
8042
8043- Objective:
8044 - SCIPgetTransObjscale() and SCIPgetTransObjoffset() in scip.c
8045 - SCIPaddObjoffset() in scip.h; sets offset of objective function
8046 - SCIPgetOrigObjoffset() in scip.h; returns the objective offset of the original problem
8047 - SCIPgetOrigObjscale() in scip.h; returns the objective scale of the original problem
8048
8049- Constraints:
8050 - detectRedundantConstraints() in cons_xor.c and necessary hash-functions for fast pairwise presolving
8051 - SCIPparseCons() in scip.h; parses constraint information (in cip format) out of a string
8052 - SCIPgetConsCopy() in scip.h; which copies a constraint of the source SCIP
8053
8054- Relaxation:
8055 - SCIPisLPRelax() and SCIPisRootLPRelax() in scip.c and scip.h returning whether the current/root LP is a
8056 relaxation of the current/root problem and thus defines a valid lower bound
8057 - SCIPlpSetIsRelax() and SCIPlpSetRootLPIsRelax() in lp.c and lp.h to set the information, whether the lp is a valid relaxation;
8058 this information is per default set to true and constraint be used. The aggregated version has only 2 linear constraints the
8059 default linearization has nvars + 1
8060
8061- Sort:
8062 - extended the sort template functions in sorttpl.c with a `five` array; now it possible to used this template to sort
8063 up to five arrays
8064 - new interface methods SCIPcolSort(), SCIProwSort(), SCIPcolGetIndex()
8065 - added SCIPsortPtrPtrLongInt() and corresponding sorting/inserting/deleting methods in pub_misc.h and necessary defines
8066 in misc.c
8067
8068- Variables:
8069 - SCIPprintNodeRootPath() in scip.h This method prints all branching decisions on variables from the root to the given node
8070 - SCIPnodeGetParentBranchings(), SCIPnodeGetAncestorBranchings(), SCIPnodeGetAncestorBranchingPath(); These methods return
8071 the set of variable branchings that were performed in the parent node / all ancestor nodes to create a given node
8072 - SCIPchgVarLbLazy() and SCIPchgVarUbLazy() in scip.h; These methods can be used to change the lazy lower or
8073 upper bound of a variable; This might has the consequences that the bounds of the corresponding variable is not in
8074 LP. This is the case if the lazy lower or upper bound is greater or less than the local lower or upper bound, respectively
8075 - SCIPvarGetLbLazy() and SCIPvarGetUbLazy() in pub_var.h; These methods return the lazy lower or upper bound, respectively
8076 - SCIPvarCompareActiveAndNegated() and SCIPvarCompActiveAndNegated() in pub_var.h for comparing variables
8077 negated, active or fixed the same way
8078 - SCIPparseVars() in scip.h; parses variable information (in cip format) out of a string
8079 - SCIPgetNFixedonesSetppc() and SCIPgetNFixedzerosSetppc() in cons_setppc.{h,c}; these methods returns
8080 current (local) number of variables fixed to one/zero in the given setppc constraint
8081 - SCIPgetVarConflictlengthScore(), SCIPgetVarAvgConflictlength(), SCIPgetAvgConflictlengthScore() and their pendants for the current run
8082 - added function SCIPvarsGetProbvarBinary() in pub_var.h; gets active, fixed, or multi-aggregated problem variables of
8083 binary variables and corresponding negated status
8084
8085### Interfaces to external software
8086
8087- LP Interfaces:
8088 - heavily revised Mosek interface
8089 - new interface to QSopt due to Daniel Espinoza
8090 - First version of LP interfaces to Gurobi and QSopt
8091 - Major performance improvements in LP interfaces to Clp, Mosek and SoPlex
8092
8093- External Software:
8094 - adjusted interface to ZIMPL (reader_zpl.{c,h} for ZIMPL version 2.10; this interface should also work with older ZIMPL versions
8095 - Adjusted interface to Zimpl version 3.0.0
8096 - added first version of an interface to Ipopt (only QCP, no deletion of vars/cons allowed; nlpi_ipopt.(h|c))
8097
8098- SCIP Interfaces:
8099 - On http://code.google.com/p/python-zibopt/source/checkout you find a beta
8100 version of a python interface to SCIP implemented by Ryan J. O'Neil.
8101
8102### Changed parameters
8103
8104- removed parameter `constraints/and/initiallp` since it is not needed anymore;
8105- set parameter `constraints/and/sepafreq` default value to 1
8106- display character of oneopt heuristic changed to `b`
8107
8108### New parameters
8109
8110- `branching/relpscost/advanced/conflenscore`, default value 0.001
8111- `constraints/and/aggrlinearization` in cons_and.c, aggregated version of the linearization
8112- `constraints/and/enforcecuts` in cons_and.c, should cuts be separated during LP enforcing?
8113- `constraints/and/presolusehashing` in cons_and.c, should pairwise presolving use hashing?, default TRUE
8114- `constraints/countsols/sollimit` in cons_countsols.c, counting stops, if the given number of solutions were found (-1: no limit)
8115- `constraints/xor/presolusehashing` in cons_xor.c, should pairwise presolving use hashing?, default TRUE
8116- `heuristics/oneopt/duringroot`, default value TRUE
8117
8118Build system
8119------------
8120
8121### Makefile
8122
8123- extend Makefile to link against Ipopt if `IPOPT=true` is set
8124
8125Fixed bugs
8126----------
8127
8128- fixed wrong use of pointer in lp.c
8129- fixed bug with array dimension not reset to zero when array is freed in pseudoobj propagator
8130- fixed bug with enforcement of pseudo solutions: if pseudo solution is choosen because LP hit a limit, it has to be
8131 enforced in any case
8132- fixed potential bug in coloring example: SCIPcreateChild() is now given an estimate in terms of the transformed
8133 problem by SCIPgetLocalTransEstimate(), no longer the estimated original problem value. Also clarified this in the
8134 comments for SCIPcreateChild()
8135- fixed compiler warning `warning: dereferencing type-punned pointer will break strict-aliasing rules` which resuts in
8136 scip-crashes with gcc version 4.4.0
8137- adjusted assert in var.c
8138- fixed bug in SCIPvarGetActiveRepresentatives() in var.c
8139- fixed bug with objective limit in lp.c: previously the infinity value of SCIP was used as default - now the value of
8140 LPI is used. In the earlier version in many cases the problems where never infeasible.
8141- added and adjusted some asserts, initialized some values
8142- increased the numerical stability of coefficient tightening for Big M formulations
8143- fixed bug with incorrect pseudo activities when objective of a variable switches sign in linear constraint handler
8144- fixed bug with empty constraints in several writing routines
8145- fixed `GGT-Kaibel-Bug` in var.c, prop_pseudoobj.c and cons_varbound.c that occured while computing new values using
8146 infinity values
8147
8148- Bounds:
8149 - fixed bug in coefficient tightening with infinite bounds
8150 - fixed bug in solve.c: in case lowerbound >= upperbound, SCIPsolveIsStopped() returned `SCIP_STATUS_GAPLIMIT`
8151
8152- Nodes:
8153 - fixed bug in SCIPsolveNode() concerning the case that the time limit was hit while solving the LP relaxation of a
8154 subproblem which is already an LP (branching on pseudo solution is not possible)
8155 - fixed bug in vbc tools concerning of marking probing nodes
8156 - fixed bug in solve.c with nodes which are marked to be repropagated while enforcement
8157
8158- Variables:
8159 - fixed possible infinite loop while multiaggregating a variable in var.c
8160 - fixed bug in SCIPgetSolVals() similar to SCIPgetSolVal(): try to get original variables of transformed ones if the
8161 solution lives in original space
8162
8163- Pricing:
8164 - fixed potential bug: restarts are now only done if no active pricers exist
8165 - fixed bug in SCIPlpSolveAndEval(): if fastmip and pricers enabled and objlimit was reached but CPLEX did not perform
8166 the final pivot step in order to exceed the objlimit, do one additional simplex step with pricing strategy steepest
8167 edge, if this doesn't suffice, turn off fastmip temporarily and solve again. Also consider solstat of the new
8168 solution.
8169 - fixed bug with invalid pseudo solution (lower bound was always >= 0) when using pricing.
8170 - fixed bug in SCIPfreeProb() in scip.c: all pricers are deactivated now
8171
8172- Memory:
8173 - now frees debug memory
8174 - fixed bug with exponential complexity for reallocating memory in SCIPvarGetActiveRepresentatives() in var.c
8175 - fixed casting of void* pointers in memory.h for C++, adjusted the same for C in memory.h and due to that adjusted all
8176 header files(set whole files in extern `C`) and cpp-files(removed unnecessary extern `C` lines)
8177 - removed memory leak in connection with freeing branch and bound nodes: focusnode was not freed if both children could
8178 be cut off due to bounding
8179
8180- Reading and Writing:
8181 - corrected bug in reader_lp.c: earlier read bounds were thrown away (implementation was not conforming to standard)
8182 - fixed bug in reader_lp.c with respect to constraint and variable names which start with two or more dots `..`
8183 - fixed bug in all readers w.r.t. SCIPgetProbvarLinearSum()
8184 - fixed bug in reader_mps.c with respect to corrupted files
8185 - fixed bug in reader_mps.c with respect to writing transformed problems
8186 - changed wrong writing of mps files due to constraints without any name
8187 - fixed a bug during reading debug solution file
8188 - fixed bug in case of reading an objective function in opb format with multiple occurrences of the same variable
8189 - fixed bug in case of reading an objective function in lp format with multiple occurrences of the same variable
8190 - fixed a wrong fix of a reading bug, which was in reality a writing bug in MPS format; integer variables in mps format
8191 without bounds are binary variables, if the bound of an integer variable is infinity you have to write this bound
8192
8193- Separation:
8194 - fixed bug in sepa_cmir.c, sepa_mcf.c and sepa_flowcover.c: sol different to LP solution is now separated
8195 - corrected two asserts in sepa_redcost.c (reduced costs can be negative for fixed variables: qsopt uses this)
8196 - fixed bug in sepa_zerohalf.c; replacement of own sorting functions by template functions was incorrect
8197 - fixed bug in var.c, cons_knapsack.c and sepa_flowcover.c: variable bounds corresponding to implication are not
8198 generated if coefficient is large, variable bounds with large coefficients are ignored for construction of knapsack
8199 and snf relaxations
8200 - fixed bug in sepa_impliedbound.c concerning redundant implications
8201
8202- Cuts:
8203 - fixed bug in sepa_cmir.c concerning uninitialized mksetcoefs (if MIR-cut generation is aborted because the aggregated
8204 constraint is empty or contains too many nonzero elements mksetcoefs is invalid)
8205 - interrupts optimization process if a node will be cutoff, which allows the solution
8206 - fixed bug in sepa_impliedbounds.c and sepa_intobj.c: if separating a sol, this sol is now also given to SCIPaddCut()
8207 so that the efficacy of the cut is now computed correctly
8208 - fixed bug in solve.c caused by integer overflow due to setting the number of cuts to INT_MAX
8209
8210- Presolving:
8211 - fixed wrong result in check.awk, if infeasible problems are stopped in presolving
8212 - fixed exponential calculation of solution values during check of original solution, therefore changed
8213 SCIPvarGetActiveRepresentatives() in var.c and flattened all multiaggregated vars at the end of presolving in
8214 exitPresolve()
8215 - fixed bug with wrong abort criterion in presolving
8216 - fixed bug in presol.c caused by not reseting presolver-wasdelayed status
8217 - fixed bug in SCIPconsSetInitial() that occurred in pairwise presolving: add or delete constraint in initconss when
8218 changing the initial flag
8219
8220- Constraints:
8221 - fixed bug in cons.c caused by not resetting conshdlr data after restart
8222 - fixed memory error in cons_countsols.c
8223 - fixed assert in cons_and.c method SCIP_DECL_CONSINITSOL(consInitsolAnd)
8224 - fixed bug in cons_countsols.c we respect to warning message that `The current parameter setting might cause ...`
8225
8226- Knapsack Constraint Handler:
8227 - fixed wrong assert in cons_knapsack.c and handled a special this case in simplifyInequalities()
8228 - fixed some bugs in simplifyInequalities() in cons_knapsack.c
8229 - fixed bug in mergeMultiples() in cons_knapsack.c
8230 - adjusted ConsData and ConsHdlrData in cons_knapsack.c
8231 - fixed compiler warning caused by no initialization of two integer in cons_knapsack.c
8232 - fixed bug in cons_knapsack.c caused by having a multi-aggregated variable in a knapsack constraint, now applyFixing is
8233 able to resolve a binary multi-aggregation with integral values
8234
8235- Linear Constraint Handler:
8236 - fixed infinity loop in simplify inequalities in cons_linear.c
8237 - fixed bug in cons_linear.c: do not select variable as slack variable for multiaggregation in convertLongEquality if it
8238 has been marked as not-multiaggregable
8239 - fixed bug in cons_linear.c: also do not multiaggregate variables in dual preproccessing if it has been marked as
8240 not-multiaggregable
8241 - fixed bug in cons_linear.c: slight decrease of epsilon in order to make sure that scaled coefficients are really
8242 integral
8243 - fixed bug in chgRhs() and chgLhs() of cons_linear.c: after changing lhs or rhs of a constraints lhs <= rhs has to be
8244 satisfied without numerical tolerances
8245
8246- Heuristics:
8247 - added and changed some SCIPisStopped() calls in several heuristics
8248 - fixed bug in oneopt heuritic with start solution which has become infeasible due to global bound changes
8249
8250- Interfaces:
8251 - corrected several bugs in the Clp-interface concerning return values
8252 - fixed potential interface bug: time limits of 0.0 are not anymore passed to the LP solver, which may have caused
8253 errors
8254
8255@page RN1_1 Release notes for SCIP 1.1
8256
8257@section RN110 SCIP 1.1.0
8258*************************
8259
8260Features
8261--------
8262
8263- SCIP can now count integer feasible solutions for IPs/CIPs (without continuous variables) (see SCIPcount())
8264- check.awk now uses TeX package supertabular which supports automatic pagebreak
8265- struct `SCIP_Stat` has now two additional variables: `nprobboundchgs`, `nprobholechgs`; these are used to fix the domain
8266 reduction counts in sepa.c, cons.c, branch.c and prop.c; this means, that now the domain reduction counts are reduced
8267 by those domain reduceds which are preformed during probing
8268- added capabilities to flatten the (multi)-aggregation graph of variables
8269- pseudoobj propagator now also propagates the global lower (dual) bound
8270- new heuristic DINS (distance induced neighborhood search by Ghosh)
8271
8272- Output:
8273 - SCIP can now output a picture of the constraint matrix in PPM format.
8274 - output of real values is now done with 15 digits after the decimal point
8275 - Extended the capabilities of SCIP to output problems in different formats (LP, MPS, CIP, ...). You can output the original and
8276 transformed problem. Furthermore, generic names can be given to the variables and constraints.
8277 - The feasibility test for solutions at the end of the execution now outputs more useful information.
8278 This made some changes in the interface of constraint handlers necessary.
8279
8280- Presolving:
8281 - added predefined settings file presolving/aggressive.set
8282 - new presolver boundshift (presol_boundshift.{c,h}); this presolver is currently turned off with default parameter setting
8283
8284- Constraints:
8285 - linear constraint handler now detects continuous variables that are implicit integer in dual presolve
8286 - replaced some old sorting methods in cons_knapsack.c, heur_octane.c, sepa_flowcover.c and presol_probing.c through
8287 SCIPsort...() interfaces, adjusted misc.{c,h} and pub_misc.h for these changes
8288 - cons_countsols.c is now able to store the collected solution if required
8289 - added first version of SOS type 1 constraint handler (cons_sos1.{c,h})
8290 - added first version of SOS type 2 constraint handler (cons_sos2.{c,h})
8291 - less aggressive scaling in linear constraint handler presolve to improve numerics
8292 - added first version of constraint handler cons_countsols.{c,h}
8293
8294- Reader:
8295 - added ccg-reader (weighted column connectivity graph)
8296 - added reader for pseudo-Boolean problems (reader_opb.{c,h})
8297 - the ZPL reader is now able to pass a starting solution to SCIP
8298 - the MPS reader is now able to write a problem in MPS format
8299 - the ZIMPL reader now understands SOS type 1 and 2 constraints
8300 - the LP reader reads SOS constraints of type 1 and 2
8301 - the MPS reader reads the SOS section (but cannot yet handle `MARKERS`)
8302
8303- LPI:
8304 - The SoPlex LPI can now write basis files.
8305 - revised lpi_clp.cpp (many small changes, in particular writing and reading of bases)
8306 - added FASTMIP settings in lpi_clp.cpp that try to improve the performance of Clp as much as possible
8307
8308- Cuts and Separation:
8309 - the c-MIR separator now also tries to get rid of implicit integer variables by aggregation
8310 - allow cut selection based on support of inequality in orthogonality computation
8311 - disabled zerohalf cuts by default
8312 - adjusted all predefined settings files, e.g., `settings/cuts/fast.set`, such that they are consistent wrt removed,
8313 added and changed parameter values of scip.
8314 - New cutting plane separator MCF (beta version).
8315 - new separator sepa_zerohalf.{c,h}; separates {0,1/2}-Cuts according to Caprara and Fischetti
8316
8317Performance improvements
8318------------------------
8319
8320- heavily decreased the usage of SCIPisStopped(), which costs system time
8321- small performance improvement of c-MIR aggregation heuristic
8322- reworked strong branching in lpi_clp.cpp (scaling works now, bounds can be trusted)
8323
8324- Constraints:
8325 - The preprocessing has been revised. It now applies bound computations in a numerically more stable way. The pairwise
8326 comparison of linear, logicor, and setppc constraints has been improved.
8327 - better branching in SOS1/SOS2 constraints
8328 - fixed performance bug with large number of unnamed constraints that will kill the name hash table (now, unnamed
8329 constraints are not put into the hash table)
8330
8331- Cuts and Separation:
8332 - improved the performance of SCIPcalcMIR() and SCIPcalcStrongCG() by exploiting sparsity
8333 - improved performance of SCIPvarGetLPSol(), which affects many parts of the code, in particular Gomory and strong CG cuts
8334 - do not calculate MIR and StrongCG cut aggregations if number of nonzeros in aggregated row is too large
8335
8336- Presolving:
8337 - improved pairwise presolving in cons_linear.c: reduced cache misses, reduced number of SCIPisStopped() calls and
8338 included detecting of redundant constraints with hash table in advance
8339 - tighter memory limits in knapsack presolve lifting procedure to avoid overly expensive presolving
8340 - included detecting of redundant constraints with hash table in advance in cons_logicor.c and limit other pairwise
8341 presolving
8342 - included detecting of redundant constraints with hash table in advance in cons_setppc.c and limit other pairwise
8343 presolving
8344 - limit pairwise presolving in cons_linear.c
8345
8346Examples and applications
8347-------------------------
8348
8349- Added an example for the graph coloring problem in `examples/Coloring`, showing the usage of column generation.
8350- added SOS2 example
8351- extended TSP example
8352
8353Interface changes
8354-----------------
8355
8356### New and changed callbacks
8357
8358- New callback method SCIP_DECL_READERWRITE(x) in type_reader.h; this method is called to write a problem to file
8359 stream in the format the reader stands for; useful for writing the transformed problem in LP or MPS format. Hence,
8360 also SCIPincludeReader() has changed.
8361- The callback \ref CONSCHECK (SCIP_DECL_CONSCHECK()) in the constraint handlers now has a new parameter `printreason` that tells
8362 a constraint handler to output the reason for a possible infeasibility of the solution to be checked using
8363 SCIPinfoMessage(). Have a look at one of the constraint handlers implemented in SCIP to see how it works. This
8364 methodology makes it possible to output the reason of a violation in human readable form, for instance, for the check
8365 at the end of a SCIP run, where the obtained best solution is checked against the original formulation.\n This change
8366 often has little effect on C-implementations, since this parameter can be safely ignored with respect to the
8367 correctness of the code. The corresponding C++ method scip::ObjConshdlr::scip_check(), however, has to be extended
8368 and will not compile otherwise.
8369- added new LPI pricing option `SCIP_PRICING_LPIDEFAULT`, such that every LP interface can set the default pricing
8370 strategy on its own (`auto` is not useful for this, because for CPLEX, for example, SCIP seems to be worse with `auto`
8371 then with `steepest edge`)
8372- Added user pointer to callback methods of hash table, see pub_misc.h.
8373
8374### Deleted and changed API functions
8375
8376- SCIPgetVarRedcost() now returns 0 for variables that have been aggregated out or removed in presolving.
8377 reduced cost in case of infeasible LPs)
8378- new parameter `maxfrac` for SCIPcalcStrongCG()
8379- new parameter `maxmksetcoefs` for SCIPcalcMIR() and SCIPcalcStrongCG() methods
8380- new parameter `conshdlrname` in SCIPincludeLinconsUpgrade()
8381
8382- Problem:
8383 - new parameters `extension` in SCIPreadProb() defining a desired file format or `NULL` if file extension should be use
8384 - New parameters `extension` and `genericnames` in SCIPprintTransProblem(), SCIPprintOrigProblem(),
8385 SCIPwriteOrigProblem(), and SCIPwriteTransProblem() defining the requested format or `NULL` for default CIP format
8386 and using generic names for the variables and constraints. Examples are
8387 - SCIPprintTransProblem(scip, NULL, NULL, TRUE) displays the transformed problem in CIP format with
8388 generic variables and constraint names
8389 - SCIPprintOrigProblem(scip, NULL, `lp`, FALSE) displays the original problem in LP format with
8390 original variables and constraint names.
8391
8392- Sorting:
8393 - expand sorttpl.c by some parameters
8394 - changed some names for sorting methods
8395 - replaced sorting methods SCIPbsort...() by faster (quicksort/shellsort) algorithms SCIPsort...() Note that the order
8396 of the parameters has been changed to simplify the template code in sorttpl.c!
8397
8398- Checking:
8399 - SCIPcheckSolOrig() is restructured. The last two parameters have changed. They are now bools indicating
8400 whether the reason for the violation should be printed to the standard output and whether all violations should be
8401 printed. This reflects the changes in the constraint handlers above, which allow the automation of the feasibility
8402 test. The pointers to store the constraint handler or constraint are not needed anymore.
8403 - the parameter list of the method SCIPcheckCons() (scip.h) has changed; the new advatage is, that SCIP can print the
8404 reason for the violation of a constraint as for as the constraint handler supports that
8405 - the parameter list of the method scip_check() (objconshdlr.h) has an additional parameter `printreason` see for
8406 explanation the previous point
8407
8408### New API functions
8409
8410- LPI now has a function SCIPlpiGetSolverPointer() that returns a solver dependent pointer. This can be used to directly
8411 access the LP solver. This should, of course, only be used by people that know exactly what they are doing.
8412- added capabilities to avoid multi-aggregation of a single variable by setting a corresponding flag (SCIPmarkDoNotMultaggrVar())
8413- SCIPgetProbvarLinearSum()
8414- SCIPgetResultantAnd() which returns the resultant variable of an `and` constraint
8415- SCIPchgChildPrio() to change the node selection priority of the given child
8416- SCIPconsGetPos()
8417- SCIPrepropagateNode() to mark a node for repropagation
8418- SCIPcount() (in cons_countsols.h) for counting all feasible solution of a given CIP
8419- SCIPcreateRootDialog() (in dialog_default.h) which creates a root dialog
8420- SCIPgetVectorEfficacyNorm()
8421- SCIPseparateRelaxedKnapsack() in cons_knapsack.h
8422- SCIPgetCutoffdepth() which returns the depth of first node in active path that is marked being cutoff
8423- SCIPflattenVarAggregationGraph()
8424- SCIPclockGetLastTime()
8425- SCIPcalcHashtableSize() to get a reasonable hash table size
8426- SCIPgetVarFarkasCoef() and SCIPgetColFarkasCoef() to get the farkas coefficient of a variable (analogon of
8427- SCIPgetRepropdepth() to get the depth of first node in active path that has to be propagated again
8428- SCIPmajorVersion(), SCIPminorVersion() and SCIPtechVersion() returning the corresponding version
8429
8430- Read, Write and Print:
8431 - SCIPprintSysError() which encapsulates the strerror_r calls, the NO_STRERROR_R flag switches between the use
8432 of strerror_r and strerror inside
8433 - SCIPsnprintf() safe version of snprintf (and sprintf)
8434 - SCIPreaderCanRead() and SCIPreaderCanWrite() in pub_reader.h, these return TRUE if the corresponding
8435 reader is capable to read or write, respectively
8436 - SCIPwriteOrigProblem(), e.g., SCIPwriteOrigProblem(scip, `orig.lp`, NULL, FALSE) prints the original
8437 problem in LP format in the file `orig.lp`
8438 - SCIPwriteTransProblem(), e.g., SCIPwriteTransProblem(scip, NULL, NULL, FALSE) displays the transformed problem in CIP format
8439
8440- Heuristics:
8441 - SCIPcutGenerationHeuristicCmir() in sepa_cmir.h
8442 - SCIPheurGetTimingmask() and SCIPheurSetTimingmask()
8443
8444- Sorting:
8445 - added some downwards-sorting methods
8446 - SCIPbsortInd()
8447 - SCIPsortedvecInsert...(), SCIPsortedvecInsertDown...(), SCIPsortedvecDelPos...(),
8448 SCIPsortedvecDelPosDown...(), SCIPsortedvecFind...() and SCIPsortedvecFindDown...() to manage sorted vectors or
8449 groups of vectors of various data types that are sorted w.r.t. the first vector
8450
8451### Command line interface
8452
8453- advanced reading and writing dialog in interactive shell
8454
8455### Interfaces to external software
8456
8457- Many changes in the SoPlex interface: The current one is tailored towards SoPlex 1.4 (aka 1.3.3). All SoPlex functions
8458 (where applicable) should now have an exception handling. The Bugfix for adding columns has been moved to SoPlex. One
8459 can use ROW representation. Reading/writing of a basis has been implemented.
8460
8461### Changed parameters
8462
8463- changed default frequency parameters for RINS, Local Branching, Crossover and Mutation heuristic This should not
8464 change the performance but happened just for consistency reasons
8465- changed parameter default values for the priority of presolver `dualfix` and `inttobinary`
8466- removed parameter `separating/cmir/maxtestdeltaroot`
8467- new value `l` for parameter `lp/pricing`, which is the new default
8468
8469### New parameters
8470
8471- `constraints/and/linearize` to enable linearization of all <and> constraints (in presolving),
8472- `constraints/and/initiallp` to turn on, off, or `auto` that the LP relaxation of the AND constraints are in the initial LP;
8473- `constraints/countsols/collect` to enable the storing of the solutions; default value FALSE;
8474- `constraints/indicator/addCoupling` to enable generation of relaxation
8475- `constraints/indicator/branchIndicators` to decide whether it is branched on indicator constraints in enforcing
8476- `constraints/indicator/genLogicor` to decide whether logicor constraints instead of cuts are generated
8477- `constraints/indicator/sepaAlternativeLP` to decide whether separation takes place using the alternative LP
8478- `constraints/linear/aggregatevariables` to search for aggregations in equations in the presolving step
8479- `constraints/linear/dualpresolving` to disable dual presolving step in the linear constraint handler; default value is TRUE
8480- `constraints/linear/simplifyinequalities` to enable a simplification step for inequalities; default value is set to FALSE = disabled
8481- `constraints/linear/upgrade/binpack` to enable or disable the linear upgrading process
8482- `constraints/linear/upgrade/eqknapsack` to enable or disable the linear upgrading process
8483- `constraints/linear/upgrade/invarknapsack` to enable or disable the linear upgrading process
8484- `constraints/linear/upgrade/knapsack` to enable or disable the linear upgrading process
8485- `constraints/linear/upgrade/logicor` to enable or disable the linear upgrading process
8486- `constraints/linear/upgrade/setppc` to enable or disable the linear upgrading process
8487- `constraints/linear/upgrade/varbound` to enable or disable the linear upgrading process
8488- `constraints/linear/presolusehashing` to use hashing comparison in cons_linear.c; default value is TRUE
8489- `constraints/logicor/presolusehashing` to use hashing comparison in cons_logicor.c; default value is TRUE
8490- `constraints/setppc/presolusehashing` to use hashing comparison in cons_setppc.c; default value is TRUE
8491- `constraints/SOS1/branchNonzeros` to decide whether SOS1 constraint with largest number of nonzero variables is picked for branching
8492- `constraints/SOS1/branchSOS` to enable or disable branching on SOS1 constraints
8493- `heuristics/feaspump/beforecuts` to allow the feaspump to be called before cut separation
8494- `heuristics/mutation/minimprove`
8495- `presol/donotmultaggr` which disables multiaggregation for all variables of the problem
8496- `separating/cmir/densityoffset` to allow for more c-MIR cuts on small models
8497- `separating/orthofunc` to choose function for scalar product computation in orthogonality test
8498
8499Testing
8500-------
8501
8502- updated mmm.{test,solu}, mittelmann.{test,solu}, miplib3.solu, miplib.solu, shortmiplib.test and added
8503 mittelmann_current.test, mittelmann_old.test
8504- added test scripts for testing counting (make testcount)
8505- removed tag make testpre (useless without corresponding scripts)
8506- added tag testcount (make testcount); this allows for testing counting problem
8507- replaced tcsh by bash and gawk by awk in all check scripts to achieve higher compatibility
8508
8509Build system
8510------------
8511
8512### Makefile
8513
8514- added `make/make.project` as default make include for external projects using SCIP
8515- added possibility to compile shared libraries in makefiles (and added `make/make.linux.x86.gnu.opt-shared`)
8516- replaced <string> by <cstring> in all C++-interfaces to get `strlen()` included (gcc-4.3 gave an error)
8517- Moved -rpath option for ld to linux-specific Makefiles.
8518- Re-activated readline library on darwin/ppc.
8519
8520- Flags:
8521 - added in all `make/make.*` `GMP_FLAGS` and `GMP_LDFLAGS`
8522 - new flag GMP with values (`auto`, `true and `false`); in case of `auto` the library gmp is linked if ZIMPL is
8523 included
8524 - adapted all makefiles of the examples accordingly
8525
8526- LP:
8527 - modified makefiles to accept ZIMPLOPT and LPSOPT flags (with values `opt` or `dbg` and default being `opt`), and
8528 removed `LPS=spxdbg` and `LPS=clpdbg`
8529 - added target spx132 for SoPlex version 1.3.2
8530
8531Fixed bugs
8532----------
8533
8534- fixed CTRL-C if NO_SIGACTION is set (e.g., for MinGW)
8535- added checks whether a plugin (handler) has already been included to avoid later complications e.g. with parameters.
8536- fixed bug with wrong `tightened` return value of some of the change bounds methods
8537- forced full propagation in presolving -> this fixes a bug that implied that variable locks became inconsistent
8538- replaced calls to perror() by SCIP error message using strerror(errno); this avoids problems with the error output
8539 stream
8540- fixed bug in method SCIPgetProbvarLinearSum()
8541- fixed bug with errors occurring in sub-MIPs. Search is only aborted in dbg mode, in opt mode a warning will be printed
8542- fixed bug in tclique-graph datastructure concerning insertion of edges into nonempty graph
8543- corrected bug in SCIPtreeBranchVar() (tree.c): several comparison functions needed a `feas`.
8544- fixed bug in SCIPtightenVarLb/Ub() in scip.c concering forcing a bound change (bound improvement is checked now)
8545- improved stage checking for bound computation
8546- fixed usage of command test for string comparison in check-scripts (now compatible with ubuntu)
8547- replaced sprintf and snprintf by SCIPsnprintf() fixed potential bug with overlong strings
8548- corrected bug in the case when soplex threw an exception in autopricing
8549- fixed bug in SCIPvarGetOrigvarSum() concerning the corner case the a negated variable has no parent variable in
8550 original problem
8551
8552- Aggregation:
8553 - avoid aggregation of implicit integers with fractional aggregation scalars
8554 - fixed bug in aggregateActiveIntVars(): If a < 0, multiply a*x + b*y == c by -1 (algo for finding initial solution does
8555 only work for a > 0).
8556 - avoiding aggregation that removes information about implicitly integer variables (removes bug)
8557 - fixed bug with exponential running times due to complicated recursive multi-aggregation
8558 - corrected bug in var.c occuring during applying boundchanges in varUpdateAggregationBounds method
8559
8560- Constraints:
8561 - fixed bug that a missing CONSTRANS in constraint handler leads to `NULL` pointer as constraint data for the copied
8562 constraints instead of pointer copies of the consdata (as explained in the constraint handler `HowTo`)
8563 - fixed bugs in second part of consdataTightenCoefs(): Removed min/maxleftactisinfinity (definition was not correct),
8564 fixed calculation of min/maxleftactivity and removed asserts concerning whether all redundant vars were deleted (led
8565 to different behavior in debug and opt mod).
8566 - fixed typo in documentation: default value for `dynamic` parameter is FALSE for all constraint handlers!
8567 - fixed bug in preprocessing of SOS2 constraints (cons_sos2.c)
8568 - fixed bug in cons_countsols.c concerning variable locking
8569 - fixed bug in cons_varbounds.c, concerning SCIPaddVarVlb() and SCIPaddVarVub()
8570 - fixed bug in applyFixings() in cons_varbound.c concerning tightening the bound of a variable left in a redundant
8571 constraint (bound change is forced now)
8572
8573- Heuristics:
8574 - fixed bug with useless objective cutoff in LNS heuristics
8575 - removed bug for values greater than (-)infinity, heur_shifting.c, heur_intshifting.c, heur_rounding.c, heur_oneopt.c
8576 - fixed bug with errors occurring in heuristic LPs. In opt mode a warning will be printed, abort in dbg mode
8577
8578- Linear Constraints:
8579 - fixed bug with wrong update of activities in linear constraints after global upper bound changes
8580 - fixed bug in preprocessConstraintPairs() in cons_linear.c concerning updating the flags of the constraint that stayes
8581 in the problem (nonredundant information were lost before)
8582 - fixed bug in cons_linear.c caused by comparing two infinity values during checking of using variable as slackvariable
8583 - removed bug for rhs/lhs greater than (-)infinity, cons_linear.c
8584 - removed bug caused by hashcomparison for non-sorted constraints, cons_linear.c
8585 - fixed bugs with wrong presolving due to cancellation in (res-)activities in cons_linear.c
8586 - removed BOUNDSCALETOL adjustment in cons_linear.c. This fixes bug with slightly infeasible variable fixings in
8587 presolving; reliable resactivities should make the BOUNDSCALETOL relaxation redundant.
8588 - removed `epsilontic` bug in cons_linear.c due to adjusting left/right hand side in applyfixing
8589 - fixed bug with multi-aggregated variables in cons_logicor: instead of fixing them, a linear constraint will be created
8590 - corrected bug in cons_linear.c:applyFixings() [if variable was fixed to infinity the rhs/lhs were wrong]
8591 - fixed bugs in pairwise presolving of cons_linear.c concerning deletion of upgraded constraints and inconsistent update
8592 of nchgsides in case of coefsequal and coefsnegated
8593 - fixed false assert and corrected a bug caused by deleting a constraint on `firstchanged` position in pairwise
8594 presolving with hashing in cons_linear.c
8595
8596- LP:
8597 - fixed handling of unbounded variables with 0 objective in SCIPlpGetModifiedPseudo[Proved]Objval() (lp.c)
8598 - fixed bug with uncatched LPSOLSTAT after hitting a time or iteration limit
8599 - corrected bug in SCIPlpGetState() if the LP is empty
8600 - fixed bug in SCIPlpSolveAndEval(): added extra simplex step if objlimit reached, fastmip and pricers enabled in order
8601 to get dual solution for pricing.
8602 - weakened two too strong asserts in lp.c concerning the LP result OBJLIMIT
8603 - fixed bug in SCIPlpSolveAndEval(): allow more than one extra simplex step for getting an objlimit exceeding solution
8604 with fastmip
8605
8606- Memory:
8607 - corrected invalid memory access in tcliqueIsEdge: added check whether node1 has no neighbors (tclique_graph.c)
8608 - removed memory leak detected with the help of coverity in dialog.c
8609 - fixed bug with memory reallocation in SCIPgetProbvarLinearSum()
8610 - tried to fix memory leak in dialog.c occuring from different versions of the readline/history libraries
8611 - removed possible memory leak in objdialog.cpp
8612
8613- Numerical:
8614 - fixed numerical issue in linear constraint propagation: need slightly more aggressive tightening such that probing
8615 does not choose a wrong value for fixing inside an epsilon interval
8616 - fixed numerical bug in dual presolving of linear constraint handler
8617 - avoid fixing variables to infinity in order to get rid of numerical inconsistencies in the original model
8618
8619- Objective:
8620 - added handling of the case of roundable variables with 0 objective in presol_dualfix.c
8621 - fixed bug with writing the MIP relaxation to a file concerning the objective function; in case the original objective
8622 function is requested, the transformed objective function gets re-transformed (scaling, offset)
8623 - fixed bug with wrong objective sense output for transformed problem. The transformed problem is always a minimization
8624 problem!
8625 - fixed bug with objective scaling after restart
8626
8627- Reading:
8628 - fixed bug with reading empty lines in TSP example
8629 - fixed bug with non-conformal parameter name in reader_ppm
8630 - fixed infinite loop in LP file reader if a line exceeds the character limit
8631 - fixed bug in reader_ppm while appending strings for output file
8632 - fixed some `SCIP_RETCODE` bugs in reader_fix.c, reader_sol.c, reader_sos.c and reader_zpl.c
8633 - fixed docu in type_reader.h
8634 - fixed bug with multi-aggregated variables which are de facto aggregated or fixed after flattening the aggregation tree
8635 - fixed bug with bound changes of variables in modifiable constraints during full dual presolving of linear conshdlr
8636 - increased compiler compatibility for C++ wrapper classed by adding extern `C` in obj*.cpp files and changing strlen
8637 calls to std::strlen
8638
8639- Separation:
8640 - corrected bug in priceAndCutLoop(): separation was aborted if domain reduction was applied
8641 - fixed bug in sepa_mir.c: size of testeddeltas-array was too small
8642 - corrected imlementation of SCIPlpiGetBasisInd() in lpi_clp.cpp (this fixes the bug that almost no Gomory cuts are
8643 found with Clp).
8644
8645- Sorting:
8646 - fixed bugs in sorttpl.c: fixed wrong arraysize in shellsort; in case an has at most one element, then no sorting is
8647 applied
8648 - fixed wrong if condition for function call in sorttpl.c
8649 - fixed obvious bug in linear constraint data sorting. Most part of the code assumed pure index sorting, but in fact, it
8650 was sorted by variable type as first criterion and index as second criterion.
8651
8652@page RN1_0 Release notes for SCIP 1.0
8653
8654@section RN100 SCIP 1.0.0
8655*************************
8656
8657Features
8658--------
8659
8660- SCIP now has a couple of specialized settings, all called scip_*.set
8661- SCIP is now compatible to the Exception branch of SoPlex
8662- if possible, objective function is scaled to make objective value integral with gcd 1
8663- slightly modified automatic constraint aging strategy
8664- new C templates disp_xxx.h and dialog_xxx.h and C++ wrapper classes objdisp.h and objdialog.h, respectively
8665- modified reader `sol`, st. files which where created via typing the order of commands `set log *.sol`,
8666 `disp sol var -`, `set log cplex.log` in Cplex can now be read
8667- new dummy LP interface `lpi_none.c`; useful for running SCIP without a LP solver
8668
8669- Presolver:
8670 - modified probing presolver to do multiple cycles if called in subsequent runs
8671 - changed sort algorithm in probing presolver
8672
8673- Node selection:
8674 - new node selection rule `estimate` (best estimate search)
8675 - new node selection rule `hybridestim`
8676
8677- Documentation:
8678 - the doxygen documentation now has HowTo's for all plugin types
8679 - the doxygen documentation now contains a FAQ
8680 - the documentation has now a TAB Modules; there you can find list of available constraint handles, presolvers,
8681 propagators, lpi interfaces, file readers and so on
8682
8683- Time:
8684 - time limit is now forwarded to lp solving algorithm
8685 - presolving, cut separation, primal heuristics and strong branching now better respect time limit
8686
8687- Heuristics:
8688 - best estimate search is now used in all large neighborhood search heuristics
8689 - new improvement heuristic `oneopt`
8690 - new heuristic `actconsdiving` following an idea of John Chinneck
8691
8692- Separation and Cuts:
8693 - modified cut selection code
8694 - cut conversion into linear constraints after a restart now works better
8695 - added flow cover separator
8696 - gomory cuts are now also separated for integral slack variables
8697 - less aggressive in Gomory cut separation
8698 - strong CG cuts are now also separated for integral slack variables
8699
8700Performance improvements
8701------------------------
8702
8703- greatly improved performance of LP file reader by replacing string copies with pointer copies
8704- removed performance bottleneck with non-bfs based node selectors and large leaf queues at the cost of a small memory
8705 overhead (2 ints per node in the leaf queue); this improves performance quite a bit on instances that take a large
8706 number of branching nodes
8707- improved performance of linear constraint propagation by delaying some floor/ceil calculations
8708- improved performance of clique cut separator
8709
8710Interface changes
8711-----------------
8712
8713### New and changed callbacks
8714
8715- new callback method SCIPdialogFree()
8716
8717### Deleted and changed API functions
8718
8719- slightly modified bound substitution heuristic in SCIPcalcMIR() and SCIPcalcStrongCG()
8720- slightly less conservative in numerics for SCIPmakeRowIntegral()
8721- linear and knapsack constraint handler may now deal with coefficients of value zero
8722- new parameter `maxbounddist` for SCIPincludeSepa() and constructor ObjSepa()
8723- new parameter `restart` for method SCIPfreeSolve()
8724- calling SCIPwriteLP() is now possible in Solved Stage
8725- SCIPwrite{LP,MIP} may no longer be called after solving, since the LP data structures may not be valid
8726- All functions SCIP<datatype>Param() got a new parameter `isadvanced`.
8727 This does not influence the performance of SCIP, but the position of the parameter in the settings menu.
8728 Hence, if you do not care about this, you can assign any value to it.
8729 You should add the corresponding flag to the SCIP<datatype>Param() calls in your own source code.
8730
8731- Version:
8732 - modified `SCIP_SUBVERSION` to be a number instead of a string (to be able to use `SCIP_SUBVERSION >= ...`)
8733 - SCIPsubversion() now returns an int instead of a const char*
8734
8735- Tree and Nodes:
8736 - new parameter `estimate` for SCIPcreateChild() giving an estimate for value of best feasible solution in the subtree to
8737 be created. One possibility is to use SCIPgetLocalOrigEstimate() for this value.
8738 - removed method SCIPnodeGetPriority()
8739 - removed parameter `lowestboundfirst` from SCIPincludeNodesel()
8740
8741- Branching:
8742 - removed parameter `branchdir` from SCIPbranchVar()
8743 - new parameters `leftchild`, `eqchild` and `downchild` for SCIPbranchVar()
8744 - SCIPgetVarStrongbranch() now also returns lperror == TRUE if the solving process should be stopped, e.g., because of a
8745 time limit
8746
8747- Variable tightening:
8748 - replaced methods SCIPvarGetClosestVlb() and SCIPvarGetClosestVub() from pub_var.h by new methods
8749 SCIPgetVarClosestVlb() and SCIPgetVarClosestVlb() in scip.h
8750 - new parameter `force` for SCIPtightenVarLb() and SCIPtightenVarUb()
8751
8752### New API functions
8753
8754- SCIPreadSol()
8755- SCIPwriteMIP()
8756- SCIPgetLocalOrigEstimate() and SCIPgetLocalTransEstimate()
8757- SCIPisStopped()
8758- SCIProwIsInGlobalCutpool()
8759- SCIPresetParams()
8760- SCIPgetVarRedcost()
8761- SCIPtightenVarLbGlobal() and SCIPtightenVarUbGlobal()
8762- SCIPsepaGetMaxbounddist()
8763- SCIPboundchgGetNewbound(), SCIPboundchgGetVar(), SCIPboundchgGetBoundchgtype(),
8764 SCIPboundchgGetBoundtype(), SCIPboundchgIsRedundant(), SCIPdomchgGetNBoundchgs(), SCIPdomchgGetBoundchg()
8765- SCIPnodeUpdateLowerboundLP()
8766- SCIPcalcNodeselPriority()
8767- SCIPnodeGetEstimate()
8768- SCIPnodeGetDomchg()
8769- SCIPgetRootNode() (in combination with SCIPcutoffNode(), this allows the immediate finishing of the optimization)
8770
8771### Command line interface
8772
8773- default dialog menu now includes the commands `set default` and `display parameters`
8774- added option to write node LP and MIP relaxations to LP file from interactive shell
8775
8776### Changed parameters
8777
8778- parameters are now separated into basic and advanced, the latter ones have been moved to extra submenus
8779- priority parameters are now restricted to be in [INT_MIN/4,INT_MAX/4] to avoid overflow errors in comparison methods
8780- increased priority of `estimate` node selector, such that this is the new default node selector
8781- changed meaning of parameter setting `nodeselection/childsel = l`; old meaning is now called `r`
8782- changed default value of `conflict/maxvarsfac` to 0.1
8783- changed default value of `conflict/useprop` to TRUE
8784- changed default value of `conflict/useinflp` to TRUE
8785- changed default value of `conflict/usepseudo` to TRUE
8786- changed default value of `conflict/maxlploops` to 2
8787- changed default value of `conflict/lpiterations` to 10
8788- changed default value of `conflict/interconss` to -1
8789- changed default value of `conflict/reconvlevels` to -1
8790- changed default value of `conflict/settlelocal` to FALSE
8791- changed default value of `constraints/linear/propfreq` to 1
8792- changed default values of `heuristics/∗diving/backtrack` to TRUE
8793- changed default value of `nodeselection/restartdfs/stdpriority` to 10000
8794- changed default value of `numerics/boundstreps` to 0.05 in order to avoid very long propagation loops on continuous variables
8795- changed default value of `presolving/restartfac` to 0.05
8796- changed default value of `presolving/restartminred` to 0.10
8797- changed default value of `separating/objparalfac` to 0.01 for performance reasons
8798- changed default value of global `separating/maxbounddist` to 1.0
8799- changed default value of `separating/objparalfac` to 0.0001
8800
8801### New parameters
8802
8803- `conflict/enable` to globally enable or disable conflict analysis
8804- `constraints/linear/maxcardbounddist` and `constraints/knapsack/maxcardbounddist`
8805- `heuristics/∗diving/backtrack` to activate 1-level backtracking for most of the diving heuristics
8806- `heuristics/feaspump/maxstallloops`
8807- `nodeselection/childsel` to control the child selection
8808- `presolving/immrestartfac`
8809- `separating/∗/maxbounddist` to have individual maxbounddist parameters per separator
8810- `separating/clique/backtrackfreq` to speed up clique cut separation in heuristic fashion
8811- `separating/redcost/continuous`
8812
8813Build system
8814------------
8815
8816### Makefile
8817
8818- added version numbers to library files (There will be a softlink generated in the lib/ and bin/ directories without
8819 version number that point to the latest compiled version.)
8820- added .exe extension to binaries of MinGW
8821- removed the `.static` extension associated to the LINK variable from the Makefile system (If you want to build
8822 makefiles for shared library generation, use the OPT variable. For example, you could create a makefile
8823 `make/make.linux.x86.gnu.opt-shared` and compile it with `make OPT=opt-shared`.)
8824
8825- Defaults and Options:
8826 - modified the default LP solver to be SoPlex instead of CPLEX
8827 - added `LPS=none` for compiling SCIP without a LP solver
8828 - made `ZIMPL=true` the default; if you do not want to include ZIMPL support, call `make ZIMPL=false`
8829
8830Fixed bugs
8831----------
8832
8833- fixed bug in rowScale() concerning deletion of almost zero coefficients
8834- weakened assert in primal.c in order to avoid numerical troubles
8835- fixed bug with too long variable names
8836- fixed bug with strange user descriptions of plugins
8837- changed position of some asserts to prevent segmentation faults
8838- SCIPgetAvgPseudocostCount() and SCIPgetAvgPseudocostCountCurrentRun() now return the average over all integer
8839 variables instead of all variables, since pseudo costs are not recorded for continuous variables
8840- fixed wrong sorting of plugins with priorities close to INT_MIN or INT_MAX
8841- replaced `line` by `read` in Makefile, since `line` is non-standard
8842- fixed bug with branching rules that produce only one child with no changes to the problem
8843- fixed bug that external relaxator is not reset appropriately for a new problem instance
8844- removed wrong assert in function paramWrite()
8845- fixed bug with uninitialized in check.awk
8846- fixed bug in ZIMPL file reader for multiple occurrences of a single variable in the objective function
8847- fixed bug with deleting variables from the transformed problem that are contained in the implication graph
8848- fixed bug in root reduced cost fixing propagator that leads to an empty domain for a variable as a proof of optimality
8849 of the current incumbent
8850- fixed bug with fractional coefficients of binary variables in cont --> impl int upgrading
8851
8852- Solution:
8853 - fixed bug with aggregated variables in debug solution test
8854 - now it is possible to add original solutions
8855 - fixed bugs with SCIPgetBestsol() returning `NULL` after a restart with user objective limit
8856 - fixed wrong status code in presence of user objective limit and a feasible solution that is not better than the limit
8857
8858- Bounds:
8859 - fixed bug with wrong bound changes of loose variables
8860 - changed wrong assert in SCIPnodeAddBoundinfer()
8861 - fixed bug in variable bounds search and insertion method
8862 - fixed bug regarding modifying bounds in original problem if negated original variables exist
8863 - fixed bug with multiple pending bound changes on some variable
8864
8865- Separator:
8866 - fixed bug in integer objective separator with restarts
8867 - fixed bug in integer objective separator with dynamic columns
8868
8869- Cuts:
8870 - fixed bug that cut age was not reset to zero for violated cuts
8871 - fixed bug in SCIPcutpoolAddNewRow() concerning update of minidx and maxidx of added row
8872 - fixed numerical bug in rowScaling of lp.c, which possibly cut off feasible solutions
8873 - significantly improved performance of c-MIR and Gomory cuts by caching closest VLB and VUB info
8874
8875- LP:
8876 - fixed numerical buf with slightly different LP optimum after resolving due to probing/diving
8877 - fixed bug in cmir and flowcover separator with variables which are currently not in the LP
8878 - fixed bug with LP size management in probing if column generation is used
8879 - fixed bug in LP file reader with row names identical to section keywords
8880 - fixed potential bugs due to errors in resolving the LP after diving or probing
8881 - fixed potential bugs in SCIPpriceLoop() and priceAndCutLoop(), st. now all LP solution stati are handled appropriately
8882 - fixed potential bug with non-existent LP in SCIPwrite{LP,MIP}
8883
8884- Constraint handler:
8885 - removed wrong assert in bounddisjunction constraint enforcement
8886 - fixed numerical bug in propagator of varbound constraint handler
8887 - fixed bug in variable bound constraint handler with changing bounds on multi-aggregated variables
8888 - fixed bug in linear constraint handler: only tight cuts are transformed into linear constraints after restart
8889 - fixed bug in bounddisjunction constraint handler with propagation of multi-aggregated variables
8890 - fixed bug with numerics in linear constraint handler due to non-representable `BOUNDSCALETOL`
8891 - fixed bug with almost integral multi-aggregation in dual presolve of linear constraint handler
8892 - fixed bug with numerics in update of min/maxactivity in linear constraint handler
8893
8894- Heuristics:
8895 - fixed bug in intshifting and oneopt heuristic with variables which are currently not in the LP
8896 - fixed bug with primal heuristics reducing the cutoff bound such that the current node is cut off
8897 - fixed bug in oneopt heuristic: must not be called on pseudo nodes if continuous variables are present
8898
8899@page RN0_9 Release notes for SCIP 0.9
8900
8901@section RN090 SCIP 0.9.0
8902*************************
8903
8904Features
8905--------
8906
8907- the EXITSOL callback of the plugins is now called before the LP and the global cut pool are freed
8908
8909- Primal Heuristics:
8910 - new primal heuristics `rens`, `mutation` and `veclendiving`
8911 - primal heuristics that run before the node is solved now know already whether the LP will be solved at the current
8912 node or not
8913
8914- Heuristics:
8915 - new heuristic `intshifting` (ID character `i`)
8916 - in the root node of the very first run, heuristics with timing `AFTERNODELPNODE`, `AFTERLPPLUNGE`, `AFTERPSEUDONODE`, and
8917 `AFTERPSEUDOPLUNGE` are now called before the enforcement of the constraint handlers, in particular before the branching
8918 rules; in this way, the branching rule can already benefit from a tighter primal bound
8919 - if a heuristic found a better solution after the LP loop (and in particular the `AFTERNODE` heuristics in the root node
8920 of the very first run, see above), domain propagation and LP solving is triggered again; this allows for additional
8921 reduced cost tightening and other dual propagations
8922 - slightly modified `crossover` and `rins` heuristics
8923 - improved performance of intdiving heuristic
8924 - improved heuristic `octane` and `shifting`
8925 - slightly modified rens and localbranching heuristics
8926 - modified guided diving heuristic such that it equals the original version of the heuristic (i.e., round in direction of the
8927 current incumbent solution instead of the average of all primal feasible solutions)
8928 - ID character for intdiving heuristic is now `I`
8929
8930- Separation and Cuts:
8931 - c-MIR cuts try now to scale the cut to integral values; however, cuts are still generated if this fails
8932 - hard-coded relative objective gain to consider a separation loop to be stalling is now changed from 1e-3 to 1e-4,
8933 which means that separation is not aborted as early as before
8934 - modified c-MIR cut separator to more closely resemble the original version of Marchand and Wolsey
8935
8936- Constraint:
8937 - possibility of SAT-like restarts after a number of conflict constraints have been found
8938 - improved presolving of and, or and xor constraints
8939 - implemented additional dual presolving in linear constraint handler
8940 - slightly modified presolving of varbound constraint handler
8941
8942Interface changes
8943-----------------
8944
8945### New and changed callbacks
8946
8947- new parameter `solinfeasible` for constraint handler callback methods `ENFOLP` and `ENFOPS`
8948- replaced callback parameter `inlploop` and `inplunging` by `heurtiming` in `SCIP_DECL_HEUREXEC`
8949- slightly changed the meaning of the result codes returned by external relaxators: if they modify the LP or tighten
8950 bounds of variables, they are not automatically be called again (it is assumed that they already made use of these
8951 changes). They are only called again, if they returned `SCIP_SUSPENDED` or if some other plugin modified the LP.
8952
8953### Deleted and changed API functions
8954
8955- new parameter `escapecommand` for SCIPdialoghdlrAddHistory()
8956- removed method SCIPgetVarData(); use SCIPvarGetData() from pub_var.h instead
8957- new calls SCIPgetLPBInvCol() and SCIPgetLPBInvACol() to access the basis inverse and simplex tableau columnwise
8958- new parameter `ndomredsfound` of SCIPpropagateProbing()
8959- new parameters `fixintegralrhs`, `maxfrac`, `mksetcoefs` and `fracnotinrange` in SCIPcalcMIR()
8960- modified SCIPfixVar() such that in problem creation stage it will change the bounds as requested even if the fixing
8961 value is outside of the current bounds
8962- replaced parameters `pseudonodes`, `duringplunging`, `duringlploop` and `afternode` by `timingmask` in
8963 SCIPincludeHeur() and constructor of ObjHeur() class use the following table to translate old settings into the new
8964 timingmask:
8965
8966| PSEUDONODES | DURINGPLUNGING | DURINGLPLOOP | AFTERNODE | timingmask |
8967|-------------|----------------|--------------|-----------|---------------------------------------------------------------|
8968| FALSE | FALSE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
8969| TRUE | FALSE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
8970| FALSE | TRUE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
8971| TRUE | TRUE | FALSE | FALSE | SCIP_HEURTIMING_BEFORENODE |
8972| FALSE | FALSE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
8973| TRUE | FALSE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
8974| FALSE | TRUE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
8975| TRUE | TRUE | TRUE | FALSE | SCIP_HEURTIMING_BEFORENODE \| SCIP_HEURTIMING_DURINGLPLOOP |
8976| FALSE | FALSE | FALSE | TRUE | SCIP_HEURTIMING_AFTERLPPLUNGE |
8977| TRUE | FALSE | FALSE | TRUE | SCIP_HEURTIMING_AFTERPLUNGE |
8978| FALSE | TRUE | FALSE | TRUE | SCIP_HEURTIMING_AFTERLPNODE |
8979| TRUE | TRUE | FALSE | TRUE | SCIP_HEURTIMING_AFTERNODE |
8980| FALSE | FALSE | TRUE | TRUE | SCIP_HEURTIMING_AFTERLPPLUNGE \| SCIP_HEURTIMING_DURINGLPLOOP |
8981| TRUE | FALSE | TRUE | TRUE | SCIP_HEURTIMING_AFTERPLUNGE \| SCIP_HEURTIMING_DURINGLPLOOP |
8982| FALSE | TRUE | TRUE | TRUE | SCIP_HEURTIMING_AFTERLPNODE \| SCIP_HEURTIMING_DURINGLPLOOP |
8983| TRUE | TRUE | TRUE | TRUE | SCIP_HEURTIMING_AFTERNODE \| SCIP_HEURTIMING_DURINGLPLOOP |
8984
8985- Constraints:
8986 - renamed all occurences of `removeable` by the correct English word `removable`: SCIPconsIsRemovable(),
8987 SCIPsetConsRemovable(), SCIPvarIsRemovable(), SCIPcolIsRemovable(), SCIProwIsRemovable()
8988 - new parameter `sticktonode` in SCIPcreateCons(), SCIPcreateConsAnd(), SCIPcreateConsBounddisjunction(),
8989 SCIPcreateConsKnapsack(), SCIPcreateConsLinear(), SCIPcreateConsLogicor(), SCIPcreateConsOr(),
8990 SCIPcreateConsVarbound(), SCIPcreateConsXor(), SCIPcreateConsSetpart(), SCIPcreateConsSetpack(),
8991 SCIPcreateConsSetcover(): usually, you should set this to FALSE; if you want to add constraints as node markers with
8992 node data and, e.g., use the `activate` and `deactivate` callbacks to get informed about the activation and
8993 deactivation of the node, you should set this flag to TRUE in order to make sure, that the constraint will always be
8994 associated to the node and not moved to a more global node if this would be possible
8995 - slightly changed semantics of SCIPaddConsNode() and SCIPaddConsLocal(), such that a constraint which is added to the
8996 root node now enters the global problem (and is still existing after a restart)
8997
8998### New API functions
8999
9000- SCIPgetVerbLevel()
9001- SCIPescapeString()
9002- SCIPgetGlobalCutpool(), SCIPgetPoolCuts(), SCIPcutpoolGetCuts(), SCIPcutGetRow() and SCIPcutGetAge()
9003- SCIPconsGetNLocksPos() and SCIPconsGetNLocksNeg()
9004
9005### Command line interface
9006
9007- command shell now understands escape characters `\``,`'` and `\` which makes it possible to read in files with spaces in the
9008 name
9009
9010### Interfaces to external software
9011
9012- updated XPress interface to XPress-MP 17 (contributed by Michael Perregaard)
9013
9014### Changed parameters
9015
9016- changed default value of `heuristics/octane/usediffray` to FALSE
9017- removed parameter `heuristics/octane/usediffbwray`
9018- renamed parameter `heuristics/octane/useavgray` to `heuristics/octane/useavgnbray`
9019- changed default value of `heuristics/rens/binarybounds` to TRUE
9020- changed default value of `heuristics/octane/freq` to -1 in order to deactivate Octane
9021- parameter `heuristics/feaspump/maxsols` is now strict, i.e., if n solutions were already found, the feasibility pump
9022 starts to work only if `maxsols <= n`, instead of `maxsols < n`
9023
9024### New parameters
9025
9026- `conflict/restartnum` and `conflict/restartfac`
9027- `heuristics/octane/useavgray`
9028- `heuristics/octane/useavgwgtray`
9029- `limits/absgap` to define an absolute gap limit
9030- `separating/cmir/aggrtol`
9031- `separating/cmir/densityscore`
9032- `separating/cmir/fixintegralrhs`
9033- `separating/maxruns`
9034- `presolving/restartminred` which forbids another restart if the last one was not successful enough
9035- `propagating/abortoncutoff`
9036- `reading/zplreader/changedir` to control behavior of path switching of ZIMPL file reader
9037- `reading/zplreader/parameters` to pass additional parameters to ZIMPL
9038
9039Build system
9040------------
9041
9042### Makefile
9043
9044- added ncurses to the readline entries in the `make/make.*` files
9045- added quotes to sed expressions in Makefile (needed under Windows)
9046- modified makefiles for Windows/Intel
9047- added automatic query script in the Makefile for soft-link names
9048
9049Fixed bugs
9050----------
9051
9052- fixed bug with string pointer copy instead of string content duplication in constructors of C++ wrapper classes
9053- fixed bug in CPLEX interface with basis access methods that dualopt has to be called for more error status codes
9054- fixed bug with inserting two variable bounds of the same type on the same variable with the same bounding variable but
9055 with different sign of coefficient (e.g., `x <= 10*z + 5` and `x <= -5*z + 10`); in previous version, one of the two was
9056 removed, although both have a useful meaning; now, we keep both and detect a stronger global bound in the implication graph presolving
9057- objective function is now also checked for integrality after problem transformation (fixed a bug that a solution which
9058 was generated between transformation and presolving for an integral objective function did not reduce the cutoff bound by one)
9059- fixed a bug with cmir cut efficacy calculation (however, on my first tests, the performance reduced slightly!)
9060- fixed bug that SCIPvarGetAvgSol() always returned the upper bound (affected guided diving heuristic)
9061- fixed bug in RENS, RINS, Local Branching, Crossover and Mutation heuristics with wrong variable-subvariable assignments
9062- fixed bug in infeasible/bound-exceeding LP conflict analysis if the bounds were relaxed in diving (happens in intshifting heuristic)
9063
9064- Separation:
9065 - fixed bug with adding constraints with `INITIAL=true` and separating them afterwards, which lead to a second addition of
9066 the constraint's relaxation in the child node
9067 - separation LPs are now immediately resolved after a bound change was generated by a cut separator; before, the
9068 separation round was prematurely aborted, which means that a separation round limit was sometimes reached very quickly
9069 and some of the separators were not even called a single time
9070
9071- Cmir Cut Separator:
9072 - too large deltas are now also rejected in c-MIR cut separation
9073 - fixed bug in cmir cut separator, that 8*delta was not tried
9074 - fixed bug in cmir cut separator with wrong sign of slack in row score function
9075 - fixed bug in cmir cut separator with weights fixed to zero, thus making the current aggregation invalid
9076 - fixed bug in cmir cut separator with wrong calculation of cut efficacies
9077
9078@page RN0_8 Release notes for SCIP 0.8
9079
9080@section RN082 SCIP 0.8.2
9081*************************
9082
9083Features
9084--------
9085
9086- additional flag `delay` for pricers
9087- new propagator `rootredcost` which applies reduced cost fixing at the root node whenever a best new primal solution was found
9088- new separator `redcost` which replaces the internal reduced cost strengthening
9089
9090- LP:
9091 - 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
9092 numerically instable, the extensions of the current node are still discarded
9093 - added removal of bound-redundant rows from the LP during root node LP solving loop
9094 - new display column `lpobj`
9095
9096- Constraints:
9097 - slightly changed priorities of constraint handlers
9098 - now, conflict constraints are also created if they were generated in strong branching or diving with insertion depth
9099 equal to the current depth
9100 - new constraint handler `bounddisjunction`
9101
9102- Readers:
9103 - renamed `sol` file reader to `fix` file reader (reads partial solution files and fixes variables to the given values)
9104 - added `sol` file reader which reads complete solution files and adds the solutions to the solution pool
9105 - LP and MPS file readers are now able to parse lazy constraints and user cuts sections
9106
9107- Presolver:
9108 - knapsack presolver now generates cliques in the clique table (this essentially solves `neos1.mps`)
9109 - new presolver `inttobinary`
9110
9111- Heuristics:
9112 - new primal heuristic `shifting`
9113 - diving heuristics abort earlier (did not come back in reasonable time on `fast0507`)
9114
9115Interface changes
9116-----------------
9117
9118- new solution status code `SCIP_STATUS_STALLNODELIMIT`
9119
9120### New and changed callbacks
9121
9122- slightly modified semantics of the `CONSINITLP` callback in the constraint handlers
9123
9124### Deleted and changed API functions
9125
9126- methods SCIPisLbBetter() and SCIPisUbBetter() have an additional parameter and slightly different meaning (they now
9127 compare the bound improvement *relatively* to the width of the domain and the bound itself)
9128- SCIPgetNSols() now returns an int instead of `SCIP_Longint`
9129- method SCIPreadProb() does not call SCIPfreeTransform() anymore; file readers that want to extend the existing problem
9130 must now call SCIPfreeTransform() themselves before modifying the original problem
9131- method SCIPgetBinvarRepresentative() can now also be called in problem creation stage
9132- additional parameter `maxpricerounds` in method SCIPsolveProbingLPWithPricing()
9133- changed name of method SCIPpresolGetNVarTypes() to SCIPpresolGetNChgVarTypes()
9134- method SCIPsplitFilenames() now treats both versions of slashes, `/` and `\`, as directory delimiters (under MinGW and
9135 CygWin, both are valid; so, we cannot treat file names anymore where the other slash is used as a regular character)
9136
9137- Constraints:
9138 - marking a constraint to be `initial` now means in addition, that if the constraint is added to a local node it will
9139 enter the LP at the time the node is first processed, even if parameters forbid separation at this node
9140 - changed name of method SCIPconshdlrGetNVarTypes() to SCIPconshdlrGetNChgVarTypes()
9141
9142- Conflicts:
9143 - method SCIPgetNConflictClausesFound() renamed to SCIPgetNConflictConssFound()
9144 - method SCIPgetNConflictClausesFoundNode() renamed to SCIPgetNConflictConssFoundNode()
9145 - method SCIPgetNConflictClausesApplied() renamed to SCIPgetNConflictConssApplied()
9146
9147### New API functions
9148
9149- SCIPsolveProbingLPWithPricing()
9150- SCIPchgVarLbRoot() and SCIPchgVarUbRoot()
9151- SCIPinRepropagation()
9152- SCIPaddDialogInputLine() and SCIPaddDialogHistoryLine()
9153- SCIPtransformProb() to create the transformed problem; enables the user, e.g., to add primal solutions before the presolving begins
9154- SCIPcreateSolCopy()
9155- SCIPareSolsEqual()
9156
9157- Getters:
9158 - SCIPgetRowKnapsack(), SCIPgetRowLinear(), SCIPgetRowLogicor(), SCIPgetRowSetppc(), and
9159 SCIPgetRowVarbound() for obtaining the linear relaxation of a corresponding constraint
9160 - SCIPgetLhsVarbound(), SCIPgetRhsVarbound(), SCIPgetVarVarbound(), SCIPgetVbdvarVarbound(), and
9161 SCIPgetVbdcoefVarbound()
9162 - SCIPgetLPRootObjval(), SCIPgetLPRootColumnObjval() and SCIPgetLPRootLooseObjval()
9163 - SCIPcolGetMinPrimsol() and SCIPcolGetMaxPrimsol()
9164 - SCIPgetFocusDepth()
9165
9166- Score:
9167 - SCIPgetAvgPseudocostScore()
9168 - SCIPgetAvgPseudocostScoreCurrentRun()
9169 - SCIPgetAvgConflictScore()
9170 - SCIPgetAvgConflictScoreCurrentRun()
9171 - SCIPgetAvgInferenceScore()
9172 - SCIPgetAvgInferenceScoreCurrentRun()
9173 - SCIPgetAvgCutoffScore()
9174 - SCIPgetAvgCutoffScoreCurrentRun()
9175
9176- Reduced Cost:
9177 - SCIPgetColRedcost()
9178 - SCIPvarGetRootRedcost()
9179
9180- Variables:
9181 - SCIPgetNVarsAnd() and SCIPgetVarsAnd()
9182 - SCIPgetWeightsKnapsack(), SCIPgetNVarsKnapsack(), SCIPgetVarsKnapsack() and SCIPgetWeightsKnapsack()
9183 - SCIPgetNVarsLinear(), SCIPgetVarsLinear() and SCIPgetValsLinear()
9184 - SCIPgetNVarsOr() and SCIPgetVarsOr()
9185 - SCIPgetNVarsXor() and SCIPgetVarsXor()
9186
9187### Command line interface
9188
9189- command line syntax changed to support batch modus without piping stdin with `<` or `|` operators
9190- advanced command line syntax:
9191 - `-l <logfile> `: copy output into log file
9192 - `-q `: suppress screen messages
9193 - `-s <settings> `: load parameter settings (.set) file
9194 - `-f <problem> `: load and solve problem file
9195 - `-b <batchfile>`: load and execute dialog command batch file (can be used multiple times)
9196 - `-c <command> `: execute single line of dialog commands (can be used multiple times)
9197
9198### Interfaces to external software
9199
9200### Changed parameters
9201
9202- removed parameter `propagating/redcostfreq`, because reduced cost strengthening is now an external separator plugin
9203- removed parameter `conflict/maxunfixed`
9204- parameter `conflict/maxclauses` renamed to `conflict/maxconss`
9205- parameter `conflict/interclauses` renamed to `conflict/interconss`
9206- parameter `conflict/reconvclauses` replaced by `conflict/reconvlevels`
9207- parameter `conflict/uselp` replaced by `conflict/useinflp` and `conflict/useboundlp`
9208- changed default value of `constraints/obsoleteage` to -1
9209- changed default value of `branching/relpscost/conflictweight` to 0.01
9210- changed default value of `branching/relpscost/inferenceweight` to 0.0001
9211- changed default value of `branching/relpscost/cutoffweight` to 0.0001
9212- in bfs node selector, parameter `minplungedepth` is now stronger than `maxplungedepth` if they conflict
9213
9214### New parameters
9215
9216- `constraints/linear/separateall`
9217- `conflict/lpiterations`
9218- `conflict/keepreprop`
9219- `branching/relpscost/conflictweight`, `branching/relpscost/inferenceweight`,
9220 `branching/relpscost/cutoffweight` and `branching/relpscost/pscostweight`
9221- `conflict/settlelocal`
9222- `conflict/depthscorefac`
9223- `limits/stallnodes`
9224
9225Build system
9226------------
9227
9228### Makefile
9229
9230- removed ncurses and pthread libraries from the Makefile; pthread is now only linked if CPLEX is used
9231
9232Fixed bugs
9233----------
9234
9235- fixed numerical bug in SCIPrealToRational() [thanks to Anders Schack-Nielsen]
9236- fixed bug in crossover heuristic with negative timelimit
9237- removed bug in conflict analysis with wrong redundancy check
9238- fixed bug that unexpected end of stdin (Ctrl-D or piped-in file without `quit` command) gives a segmentation fault
9239- fixed bug with inconsistent data structures after a global bound was changed at a local subproblem and the local
9240 bounds are not contained anymore in the new global bounds
9241- fixed dependency generation in example Makefiles
9242
9243- Knapsack:
9244 - fixed bug in knapsack presolving with redundancy check after applyFixings() [thanks to Anders Schack-Nielsen]
9245 - fixed bug in knapsack separator with empty initial covers
9246 - fixed bug in knapsack constraint disaggregation that may lead to acceptance of infeasible solutions
9247 - fixed bug in knapsack constraint handler where a modifiable constraint may be declared redundant
9248
9249- LP:
9250 - fixed bug with missing LP size updates after pricing or cut separation in probing [thanks to Marc Nuenkesser]
9251 - fixed bug in CPLEX interface with getting basis information after the LP was modified and restored
9252 - fixed bug with updating LP size in probing
9253 - fixed bug that SCIPgetLPSolstat() returns a valid status code even if the LP was not yet constructed for the current node
9254
9255- Variables:
9256 - fixed bug with invalid lazy updates after a restart where the LP is not solved again (e.g., due to all variables being fixed)
9257 - fixed bugs resulting from inactive general integer variables being member of the variable bounds array of a variable
9258 - fixed bug in updatePseudocost() with wrong lpgain distribution on multiple branching variables [thanks to Anders Schack-Nielsen]
9259 - fixed bug in objconshdlr.h where member variable scip_maxprerounds_ was declared as an `SCIP_Bool` instead of an int
9260 - branching on nearly-integral variables is now avoided in relpscost branching, which lead to a numerical assertion
9261
9262- Implication:
9263 - fixed bug with adding implications that fix the implication variable to the opposite value (due to the bug, it was
9264 returned that the whole problem is infeasible)
9265 - removed wrong assert in varRemoveImplicsVbs()
9266
9267- Cliques:
9268 - fixed bug in SCIPcliqueSearchVar() [thanks to Anders Schack-Nielsen]
9269 - fixed bug in SCIPcliqueAddVar() [thanks to Anders Schack-Nielsen]
9270
9271- Readers:
9272 - fixed bug in MPS file reader with `OBJSENSE`
9273 - fixed bug in LP reader with potentially uninitialized pointers [thanks to Martin Mueller]
9274
9275- Constraints:
9276 - it is now possible to branch on constraints without the risk of going into an infinite loop, because constraints marked as `initial`
9277 will be put to the LP relaxation (of the child nodes) even if separation is prohibited by the parameter settings
9278 - fixed bug that locally valid varbound constraints produce VLB/VUB entries [thanks to Anders Schack-Nielsen]
9279
9280@section RN081 SCIP 0.8.1
9281*************************
9282
9283Features
9284--------
9285
9286- improved performance of the priority queue in conflict analysis
9287- slightly modified restartdfs node selector
9288
9289- Presolving:
9290 - new presolver `implics` to find bound changes and aggregations out of the implication graph
9291 - modified probing order in probing presolver
9292
9293- Constraints:
9294 - changed handling of added constraints in separation calls
9295 - modified bookkeeping of locally added and disabled constraints such that the order of enabling and disabling constraints stays the same
9296 - logic or constraint handler now adds implications on clauses with 2 literals to the implication graph
9297 - and/or constraint handlers now add implications to the implication graph
9298 - xor constraint handler now uses stronger LP relaxation without auxiliary variable for xor constraint with 2 operands
9299
9300- Heuristics:
9301 - added preliminary version of `intdiving` heuristic (disabled in default settings)
9302 - added crossover heuristic
9303
9304- Readers:
9305 - LP file reader now accepts the keyword `Integer` for defining the start of the integer variables section
9306 - new file reader for (partial) solutions
9307
9308Examples and applications
9309-------------------------
9310
9311- added two small pricer examples (for C and C++)
9312- updated example code (s.t. it compiles again)
9313
9314Interface changes
9315-----------------
9316
9317### New and changed callbacks
9318
9319- callback method `CONSSEPA` of constraint handler was split into two methods `CONSSEPALP` and `CONSSEPASOL`
9320- callback method `SEPAEXEC` of separator was split into two methods `SEPAEXECLP` and `SEPAEXECSOL`
9321
9322### Deleted and changed API functions
9323
9324- replaced method SCIPsepaWasDelayed() by SCIPsepaWasLPDelayed() and SCIPsepaWasSolDelayed()
9325- additional parameter `sol` for methods SCIPaddCut(), SCIPgetCutEfficacy() and SCIPisCutEfficacious()
9326- additional parameter `sol` for method SCIPseparateKnapsackCover()
9327- primal solutions may now contain values marked to be unknown (value is `SCIP_UNKNOWN`); unknown values don't contribute
9328 to the objective value of the solution; an unknown solution value should be treated as an arbitrary value in the
9329 variable's bounds, e.g., in the calculation of the feasibility of a constraint, a value inside the variable's bounds
9330 should be selected that makes the constraint as feasible as possible
9331- new parameter `printzeros` for methods SCIPprintSol(), SCIPprintTransSol(), SCIPprintBestSol() and SCIPprintBestTransSol()
9332
9333- Constraints:
9334 - replaced method SCIPconshdlrWasSeparationDelayed() by two methods SCIPconshdlrWasLPSeparationDelayed() and
9335 SCIPconshdlrWasSolSeparationDelayed()
9336 - renamed method SCIPgetNGlobalConss() to SCIPgetNConss()
9337
9338### New API functions
9339
9340- SCIPgetCuts()
9341- SCIPgetVarConflictScore() and SCIPgetVarConflictScoreCurrentRun()
9342- SCIPvarSetData()
9343- SCIPcreateUnknownSol()
9344- SCIPgetNConflictClausesFoundNode()
9345- SCIPvarSetDelorigData(), SCIPvarSetTransData() and SCIPvarSetDeltransData()
9346- SCIPvarHasBinaryImplic()
9347- SCIPgetFixedVars() and SCIPgetNFixedVars()
9348- SCIPgetConss(), SCIPgetNOrigConss() and SCIPgetOrigConss()
9349- SCIPsepaGetNConssFound() and SCIPsepaGetNDomredsFound()
9350- SCIPconstructLP() to force constructing the LP of the current node
9351- SCIPisLPConstructed()
9352
9353### Command line interface
9354
9355- added `write statistics` command to default user dialogs
9356
9357### Changed parameters
9358
9359- modified meaning of parameter `presolving/probing/maxtotaluseless`
9360- heuristics with `freq = 0` and `freqofs > 0` are now called in depth level freqofs instead of being called in the root
9361 node
9362- added some parameters in local branching and RINS heuristic
9363- new parameter values `p`rimal simplex and `d`ual simplex in `lp/initalgorithm` and `lp/resolvealgorithm`
9364
9365### New parameters
9366
9367- `branching/inference/conflictweight`
9368
9369Build system
9370------------
9371
9372### Makefile
9373
9374- included version number in binary file name
9375- tried to make the code Windows compatible
9376
9377Fixed bugs
9378----------
9379
9380- also removed history_length, if `NO_REMOVE_HISTORY` is defined to support older versions of the readline library
9381- hopefully fixed bug with wrong path slash `/` under Windows
9382- fixed bug with aggregating fixed variables
9383
9384- Implications:
9385 - fixed bug in transitive implication addition
9386 - fixed wrong assert with implications that imply a fixed variable
9387 - removed bug in implication addition
9388
9389- Readers:
9390 - fixed bug in ZIMPL model reader with wrong chdir, if .zpl file is in current directory
9391 - fixed bug in LP file reader with signed values without space between sign and value (e.g. `+2x` instead of `+ 2x`)
9392 - fixed various bugs in LP file reader
9393 - fixed bug in LP file reader with explicit zero coefficients
9394
9395- Numerics:
9396 - fixed numerics in probing and linear constraint handler (rentacar was detected to be infeasible in presolving)
9397 - fixed numerics in check method of linear constraint handler
9398 - fixed bug with numerical error in LP resolve after probing or diving
9399
9400- Heuristics:
9401 - fixed bug with calling heuristics in depths smaller than their frequency offset
9402 - fixed bugs in local branching and RINS heuristic
9403
9404Known bugs
9405----------
9406
9407- if one uses column generation and restarts, a solution that contains variables that are only present in the
9408 transformed problem (i.e., variables that were generated by a pricer) is not pulled back into the original space
9409 correctly, since the priced variables have no original counterpart
9410
9411@section RN080 SCIP 0.8.0
9412*************************
9413
9414Features
9415--------
9416
9417- adding variable bounds automatically adds the corresponding implication
9418- changed restart dfs nodeselector to sort leaves by node number instead of node depth to aviod jumping around in the
9419 search tree after a restart was applied and the current dive ended due to infeasibility
9420- new Message Handler plugin
9421- added file reader for LP format
9422- introduced subversion string
9423- replaced all abort() calls by SCIPABORT(); this is defined in def.h to be `assert(FALSE)`
9424- added possibility to disable certain features by using `make USRFLAGS=-DNO_REMOVE_HISTORY`, `make
9425 USRFLAGS=-DNO_SIGACTION`, `make USRFLAGS=-DNO_RAND_R`, or `make USRFLAGS=-DNO_STRTOK_R`
9426- improved preprocessing abort criteria
9427- added zlib support
9428
9429- Conflict Analysis:
9430 - conflict clauses are now collected in a conflict store, redundant clauses are eliminated and only the best `conflict/maxclauses`
9431 clauses are added permanently to the problem; the remaining clauses are only added temporarily, if they can be used for repropagation
9432 - modified the influence of the depth level in conflict analysis
9433 - slightly changed LP resolving loop in conflict analysis
9434 - if CPLEX returns that the LP exceeds the bound and if no additional LP solves are allowed in conflict analysis, we
9435 have to perform one additional simplex iteration to get the dual solution that actually violates the objective limit
9436
9437- Constraints:
9438 - reactivated multiaggregation in cons_linear.c on binary variables again (possible due to bug fix below)
9439 - improved preprocessing of variable bounds constraints
9440 - linear constraint handler now catches events of variables after the problem was completely transformed in order to
9441 avoid the whole bunch of `LOCKSCHANGED` events that are generated at problem transformation stage
9442 - added redundancy detection for pairs of constraints in setppc constraint handler
9443
9444- Presolving and Cliques:
9445 - changed linear constraint presolving s.t. redundant sides are not removed if constraint is an equality
9446 - new event type `SCIP_EVENTTYPE_PRESOLVEROUND`
9447 - modified probing presolver to not add implications that are already included in the implication graph and clique table
9448 - incorporated clique and implication information in knapsack constraint presolving
9449 - removed transitive clique generation, because this produces way too many cliques
9450
9451- Heuristics:
9452 - diving heuristics now apply propagation at each step
9453 - removed `objfeaspump` heuristic, because the functionality can be achieved by using the `feaspump` heuristic
9454 - diving heuristics are now applying propagation after each bound change
9455 - new primal heuristic `octane`
9456 - slightly changed feaspump heuristic, s.t. after finding a new best solution the target integral solution is modified randomly
9457
9458- Separation and Cuts:
9459 - improved debugging for infeasible cuts and propagations, given a primal feasible solution
9460 - improved knapsack cover separation
9461 - improved performance of c-MIR separator
9462 - cut pool is now also separated in root node (to find cuts again that were removed from the LP due to aging)
9463
9464Interface changes
9465-----------------
9466
9467- new event type `SCIP_EVENTTYPE_VARDELETED`
9468- new event `SCIP_EVENTTYPE_IMPLADDED`
9469- new event types `SCIP_EVENTTYPE_GLBCHANGED` and `SCIP_EVENTTYPE_GUBCHANGED`
9470
9471### New and changed callbacks
9472
9473- new callback parameter `validnode` for the `CONFLICTEXEC` method of conflict handlers, which should be passed to
9474 SCIPaddConsNode()
9475
9476### Deleted and changed API functions
9477
9478- additional parameter `validnode` for SCIPaddConsLocal() and SCIPaddConsNode()
9479- SCIPhashtableRemove() can now also be called, if the element does not exist in the table
9480- SCIPhashmapRemove() can now also be called, if the element does not exist in the map
9481- additional parameter `branchdir` for SCIPbranchVar()
9482- replaced method SCIPmessage() by SCIPverbMessage() with additional parameter `file`
9483- put block memory shell and tclique algorithm into separate subdirectories
9484- new parameter `duringlploop` of SCIPincludeHeur(): heuristics can now run during the price-and-cut loop at a node
9485
9486### New API functions
9487
9488- SCIPgetNConflictClausesApplied()
9489- SCIPgetNConflictClausesApplied()
9490- SCIPhashtableExists()
9491- SCIPhashmapExists()
9492- SCIPnodeGetNumber()
9493- SCIPsolveProbingLP() to solve the LP in a probing node (enables mixing of propagation and LP solving for diving heuristics)
9494- SCIProwGetDualfarkas()
9495- SCIPgetCurrentNode()
9496- SCIPinterruptSolve()
9497- SCIPpropagateProbingImplications()
9498- SCIPgetLPI() which makes all methods in scip/lpi.h available to the user
9499- SCIPgetRandomInt() and SCIPgetRandomReal()
9500- SCIPstrtok()
9501- SCIPheurGetNBestSolsFound()
9502
9503- Variables:
9504 - SCIPdelVar()
9505 - SCIPgetVarStrongbranchLPAge()
9506 - SCIPvarIsTransformedOrigvar()
9507 - SCIPvarIsDeleted()
9508
9509- Messages and IO:
9510 - SCIPerrorMessage()
9511 - SCIPwarningMessage()
9512 - SCIPdialogMessage()
9513 - SCIPinfoMessage()
9514 - SCIPsetMessagehdlr()
9515 - SCIPsetDefaultMessagehdlr()
9516 - SCIPgetMessagehdlr()
9517 - new file i/o methods SCIPfopen(), SCIPfclose(), SCIPfprintf(), ... that operate on the data type `SCIPFILE`; these
9518 methods automatically use zlib methods if the zlib is enabled
9519
9520- Cliques:
9521 - SCIPvarGetNCliques()
9522 - SCIPvarGetCliques()
9523 - SCIPvarsHaveCommonClique()
9524 - SCIPvarHasImplic()
9525 - SCIPcliqueGetNVars()
9526 - SCIPcliqueGetVars()
9527 - SCIPcliqueGetValues()
9528 - SCIPcliqueGetId()
9529 - SCIPaddClique()
9530 - SCIPcalcCliquePartition()
9531
9532- Constraint handler:
9533 - SCIPgetDualfarkasLinear() of linear constraint handler
9534 - SCIPgetDualfarkasLogicor() of logicor constraint handler
9535 - SCIPgetDualfarkasSetppc() of setppc constraint handler
9536 - SCIPgetDualsolKnapsack() of knapsack constraint handler
9537 - SCIPgetDualfarkasKnapsack() of knapsack constraint handler
9538 - SCIPgetDualsolVarbound() of varbound constraint handler
9539 - SCIPgetDualfarkasVarbound() of varbound constraint handler
9540 - SCIPconsGetValidDepth()
9541 - SCIPsetConsInitial()
9542 - SCIPsetConsSeparated()
9543 - SCIPsetConsEnforced()
9544 - SCIPsetConsChecked()
9545 - SCIPsetConsPropagated()
9546 - SCIPsetConsLocal()
9547 - SCIPsetConsDynamic()
9548 - SCIPsetConsRemoveable()
9549
9550### Command line interface
9551
9552- added command `write solution` to default dialog
9553- added commands `write problem` and `write transproblem` to default dialog
9554
9555### Changed parameters
9556
9557- additional setting `SCIP_VERBLEVEL_DIALOG` in `display/verblevel` parameter
9558- additional LP pricing setting `partial`
9559- replaced parameter `presolving/restartbdchgs` with parameters `presolving/maxrestarts` and `presolving/restartfac`
9560- replaced parameter `constraints/linear/maxpresolaggrrounds` with `constraints/linear/maxpresolpairrounds`
9561- parameters `constraints/agelimit` and `constraints/obsoleteage` now iterprete the value 0 as a dynamic setting
9562- number of fractional variables included in parameter `separating/maxstallrounds`
9563
9564- Changed default values:
9565 - changed default values of `heuristics/∗/maxdiveavgquot` and `heuristics/∗/maxdiveavgquotnosol` to 0
9566 - changed default values of `constraints/agelimit` and `constraints/obsoleteage` to 0
9567 - changed default values of `heuristics/objpscostdiving/maxsols` and `heuristics/rootsoldiving/maxsols` to -1
9568 - changed default value of `separating/strongcg/maxroundsroot` to 20
9569 - changed default value of `separating/cmir/maxroundsroot` to 10
9570 - changed default value of `constraints/linear/maxaggrnormscale` to 0.0, which means to not apply aggregation
9571 - changed default value of `separating/maxstallrounds` to 5
9572 - changed default value of `presolving/probing/maxfixings` to 50
9573 - changed default parameter values to MIP settings:
9574 + `conflict/useprop` = FALSE
9575 + `conflict/usepseudo` = FALSE
9576 + `display/verblevel` = 4
9577 + `separating/poolfreq` = 0
9578 + `constraints/linear/sepafreq` = 0
9579 + `constraints/and/sepafreq` = 0
9580 + `constraints/conjunction/sepafreq` = 0
9581 + `constraints/knapsack/sepafreq` = 0
9582 + `constraints/knapsack/sepacardfreq` = 0
9583 + `constraints/logicor/sepafreq` = 0
9584 + `constraints/or/sepafreq` = 0
9585 + `constraints/setppc/sepafreq` = 0
9586 + `constraints/varbound/sepafreq` = 0
9587 + `constraints/xor/sepafreq` = 0
9588 + `separating/clique/freq` = 0
9589 + `separating/cmir/freq` = 0
9590 + `separating/gomory/freq` = 0
9591 + `separating/impliedbounds/freq` = 0
9592 + `separating/strongcg/freq` = 0
9593
9594### New parameters
9595
9596- `branching/fullstrong/reevalage`
9597- `conflict/maxclauses`
9598- `conflict/allowlocal`
9599- `constraints/knapsack/disaggregation`
9600- `presolving/probing/maxtotaluseless`
9601- `separating/cmir/maxfails`, `separating/cmir/maxfailsroot` and `separating/cmir/trynegscaling`
9602
9603### Data structures
9604
9605- MAJOR CHANGE: preceeded all data types with `SCIP_`: you may use shell script reptypes_scip.sh to rename the SCIP
9606 data types in your own source code (But use with care! Create a backup copy of your source first!)
9607
9608Build system
9609------------
9610
9611### Makefile
9612
9613- modified the Makefile to accept an additional parameter `VERBOSE={true,false}`
9614- added flags `READLINE=true/false`, `ZLIB=true/false`, `ZIMPL=true/false` to Makefile
9615
9616Fixed bugs
9617----------
9618
9619- fixed minor bugs in debug code of primal.c and sol.c
9620- variables that are being multiaggregated are now automatically removed from all other variables' variable bound and
9621 implication arrays; this fixes bugs with methods, that rely on the fact, that the entries in the variable bound and
9622 implication arrays are active variables only
9623- aggregations are now always performed in a way, such that the variable of more general type is aggregated (with type
9624 generality being cont > implint > int > bin); in this way, a binary variable's representant is always binary (which
9625 was not the case before and resulted in a bug in SCIPgetBinvarRepresentative())
9626- removed bug in presol_probing.c: the vars of the sorted variables array have to be captured
9627- fixed bug in the output of solutions with priced variables
9628- fixed bug in propagation with parameters prop_maxrounds and prop_maxroundsroot
9629- conflict analysis can now handle errors in LP solving calls
9630- removed bug in SCIPvarAddVlb() and SCIPvarAddVub() with fractional vlb/vubcoefs
9631- fixed bug that primal or dual rays might not be available because the wrong solver was used
9632- included message.o in LPI library, s.t. one can link this library indepentent of SCIP
9633- fixed bug that if diving heuristic that changes the objective values finds a solution, the cutoff is reinstalled in
9634 the LP solver (although the objective value has no meaning due to the objective function modification)
9635
9636- Feasibiltiy:
9637 - 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),
9638 that an LP with an integral variable fixed to a large value yields an accepted solution with that variable slightly different than the fixed
9639 value; the integrality feasibility condition is measured with absolute differences, which leads to the fixed integer variable being fractional;
9640 this leads to an error if branching is performed on this variable
9641 - fixed bug with redundant self implications that wrongly lead to the detection of infeasibility
9642 - fixed bug with potential infinite loop if a separator is delayed and the LP is infeasible
9643
9644- Asserts:
9645 - removed wrong asserts from lpi_cpx.c
9646 - removed wrong assertion in varAddImplic()
9647
9648- Numerics:
9649 - locally fixed variables are no longer used as branching candidates even if their LP solution value is fractional (due
9650 to numerical reasons, see above)
9651 - fixed numerical bug in pseudo objective propagator with only slightly tightened bounds
9652 - removed bug that an LP might be declared to be solved even if it was marked erroneous due to numerical problems
9653
9654- Constraint Handlers:
9655 - fixed bug in linear constraint handler with variables fixed to infinity
9656 - fixed bug with constraint handlers that can only enforce their constraints by adding cuts, but the maximal number of
9657 cuts to separate is set to 0; now, cuts that are generated in the constraint enforcement are used in any case
9658 - fixed bug in knapsack constraint presolving with tightening coefficients and capacity
9659 - fixed bug with modifiable constraints in linear constraint handler preprocessing
9660 - fixed bug in linear constraint handler that global activities are not updated after global bound changes
9661
9662- Separation and Cuts:
9663 - global bound changes now lead to the removal of redundant implications (such that the asserts in sepa_implbounds.c are now correct)
9664 - due to usage of variable bounds, SCIPcalcMIR() may return LOOSE variables in the cut -> modified sepa_cmir.c, sepa_gomory.c and
9665 sepa_strongcg.c to use SCIPcreateEmptyRow() and SCIPaddVarsToRow() instead of SCIPcreateRow() which only works for COLs
9666 - fixed bug in clique separator that reduced performance
9667 - increased performance of clique separator by allowing only a certain number of zero-weighted fill ins
9668
9669@page RN0_7 Release notes for SCIP 0.7
9670
9671@section RN079 SCIP 0.7.9
9672*************************
9673
9674Features
9675--------
9676
9677- aging and cleanup now only remove non-basic columns and basic rows, s.t. resolving can be applied with 0 simplex iterations
9678- it is now possible to create subnodes in probing and use backtracking to undo probing changes
9679- bounds of variables are included in the feasibility checks for solutions
9680- support for barrier algorithm
9681- changed implementation of automatic minplungedepth and maxplungedepth calculation in bfs node selector
9682
9683- Presolving:
9684 - new plugin: probing presolver
9685 - probing is now also possible in presolving stage
9686 - it is now possible to interrupt and continue presolving
9687
9688- Separation and Cuts:
9689 - new plugin: clique separator for clique cuts with at least 3 elements
9690 - new plugin: implied bound cuts separator
9691 - included debugging module to check whether cutting planes cut off the optimal solution
9692
9693- Branching:
9694 - changed implementation of reliability value calculation in reliability branching; slightly modified influence of
9695 maximal total number of strong branching LP iterations in reliability branching
9696 - changed implementation of maximal strong branching iterations calculation in reliability branching
9697
9698- Constraints:
9699 - if verblevel is at least `NORMAL`, an automatical check of the best solution is performed in the original problem, and
9700 an error message is displayed, if it violates an original constraint
9701 - due to the new constraint handler `cons_cumulative.{c,h}` SCIP can resource-constraint scheduling problem
9702 - during probing, propagation of bounds is now always performed in linear constraint handler, ignoring the parameter `tightenboundsfreq`
9703 - new implementation of the clique graph construction method in clique separator
9704 - new constraint handler `cons_cumulative.{c,h}`
9705
9706- Heuristics:
9707 - new implementation of the feasibility pump heuristic by Timo Berthold (replaces old implementation); old
9708 implementation is now called `objfeaspump`; parameter names have been changed accordingly
9709 - diving heuristics now compare their number of LP iterations with the number of node LP iterations instead of the total
9710 number (including their own) LP iterations
9711 - modified the automatic objfactor setting of feaspump heuristic to let the objective function have stronger influence
9712
9713Examples and applications
9714-------------------------
9715
9716- added TSP example in `examples/TSP`
9717
9718Interface changes
9719-----------------
9720
9721### New and changed callbacks
9722
9723- new callback methods `INITSOL` and `EXITSOL` for variable pricers, primal heuristics, conflict handlers, relaxators,
9724 separators, propagators, event handlers, node selectors and display columns
9725- callback method `CONFLICTEXEC` of conflict handlers receive additional parameters `dynamic` and `removeable`
9726- constraint handler callback methods `CONSLOCK` and `CONSUNLOCK` are replaced by a single method `CONSLOCK` with the number
9727 of locks being positive or negative
9728
9729### Deleted and changed API functions
9730
9731- calling SCIPaddCut() with `forcecut=TRUE` will add the cut to the LP even if it is redundant
9732- SCIPreadProb() does not free the current problem, this is done in SCIPcreateProb() now, which is usually
9733 called by a problem reader; in this way, a reader can generate `extra information` for the current problem, s.t. the
9734 full problem information can be distributed to different files read by different readers
9735- SCIPgetVarStrongbranch() and SCIPgetVarStrongbranchLast() now have two additional parameters that can be used
9736 to check, whether the returned values are correct dual bounds
9737- SCIPgetBinvarRepresentative() now returns the fixed or multi-aggregated variable instead of returning `NULL` or
9738 aborting with an error message
9739- SCIPdispDecimal() is replaced by SCIPdispInt() and SCIPdispLongint()
9740- additional parameter `maxproprounds` in SCIPpropagateProbing()
9741- changed memory interface (see memory.h), `MEMHDR` is now called `BLKMEM`
9742- source code was moved into subdirectories: replace includes `scip.h` by `scip/scip.h` and
9743 `objscip.h` by `objscip/objscip.h`; This should allow a user to have include files of the same name as the ones
9744 of SCIP, e.g. `tree.h` or `var.h`.
9745- event handlers are now available as C++ wrapper class
9746- new flag `afterrelaxation` for primal heuristics
9747
9748- Solution:
9749 - removed method SCIPsolGetObj(), use SCIPgetSolOrigObj() or SCIPgetSolTransObj() instead
9750 - additional parameter `checkbounds` for SCIPtrySol(), SCIPtrySolFree(), SCIPcheckSol()
9751
9752- Variables:
9753 - SCIPvarLock(), SCIPvarLockDown(), SCIPvarLockUp(), SCIPvarLockBoth(), SCIPvarUnlock(), SCIPvarUnlockDown(),
9754 SCIPvarUnlockUp() and SCIPvarUnlockBoth() are replaced by SCIPaddVarLocks() which returns a `RETCODE`
9755 - SCIPvarGetLbGlobal(), SCIPvarGetUbGlobal(), SCIPvarGetLbLocal() and SCIPvarGetUbLocal() now return the
9756 corresponding values of the transformed problem or current subproblem even for original problem variables
9757 - SCIPvarGetProbvar(), SCIPvarGetProbvarBinary() now return the fixed or multi-aggregated variable instead of
9758 returning `NULL` or aborting with an error message; in SCIPvarGetProbvarBinary(), the fixing of a fixed variable does
9759 not influence the negation status anymore
9760 - SCIPvarGetProbvarBound() returns the multi-aggregated variable instead of aborting with an error message
9761 - SCIPvarGetProbvarSum() does not set *var to `NULL` for fixed variables anymore; it may also return a
9762 multi-aggregated variable instead of aborting with an error message
9763 - SCIPaddVarImplication() now also adds variable lower and upper bounds, if the implied variable is non-binary
9764 - additional parameter `aggregated` in SCIPmultiaggregateVars()
9765
9766- Constraints:
9767 - SCIPvarLockDownCons(), SCIPvarLockUpCons(), SCIPvarUnlockDownCons() and SCIPvarUnlockUpCons() are replaced by
9768 SCIPlockVarCons() and SCIPunlockVarCons() which return a `RETCODE`
9769 - SCIPlockConsVars() and SCIPunlockConsVars() replaced with method SCIPaddConsLocks()
9770 - SCIPconshdlrGetNConss() is replaced by SCIPconshdlrGetNActiveConss() (returning the number of active
9771 constraints); method SCIPconshdlrGetNConss() does now return the total number of existing constraints, active and inactive
9772 - SCIPconshdlrGetStartNConss() is now called SCIPconshdlrGetStartNActiveConss()
9773 - SCIPconshdlrGetMaxNConss() is now called SCIPconshdlrGetMaxNActiveConss()
9774 - SCIPdisableConsNode() is replaced by SCIPdelConsNode()
9775 - SCIPdisableConsLocal() is replaced by SCIPdelConsLocal()
9776 - added new parameter `dynamic` to SCIPcreateCons() and all plugin methods SCIPcreateCons...()
9777
9778### New API functions
9779
9780- SCIPgetObjNorm()
9781- SCIPcreateOrigSol()
9782- SCIPwriteImplicationConflictGraph()
9783- SCIPinProbing()
9784- SCIPgetProbName()
9785- SCIPgetVarNStrongbranchs()
9786- SCIPcolGetNStrongbranchs()
9787- SCIPfindSimpleRational()
9788- SCIPselectSimpleValue()
9789
9790- Variables:
9791 - SCIPvarGetLbOriginal()
9792 - SCIPvarGetUbOriginal()
9793 - SCIPvarGetImplIds()
9794 - SCIPvarGetOrigvarSum()
9795
9796- Constraints:
9797 - SCIPenableCons()
9798 - SCIPdisableCons()
9799 - SCIPenableConsSeparation()
9800 - SCIPdisableConsSeparation()
9801 - SCIPconsIsSeparationEnabled()
9802
9803- Averages:
9804 - SCIPgetAvgPseudocost()
9805 - SCIPgetAvgPseudocostCurrentRun()
9806 - SCIPgetAvgPseudocostCount()
9807 - SCIPgetAvgPseudocostCountCurrentRun()
9808 - SCIPgetAvgInferences()
9809 - SCIPgetAvgInferencesCurrentRun()
9810 - SCIPgetAvgCutoffs()
9811 - SCIPgetAvgCutoffsCurrentRun()
9812
9813- LPs:
9814 - SCIPisLPSolBasic() to check, whether the current LP solution is basic (i.e. due to a simplex algorithm or barrier with crossover)
9815 - SCIPgetNPrimalLPs()
9816 - SCIPgetNPrimalLPIterations()
9817 - SCIPgetNDualLPs()
9818 - SCIPgetNDualLPIterations()
9819 - SCIPgetNBarrierLPs()
9820 - SCIPgetNBarrierLPIterations()
9821 - SCIPgetNPrimalResolveLPs()
9822 - SCIPgetNPrimalResolveLPIterations()
9823 - SCIPgetNDualResolveLPs()
9824 - SCIPgetNDualResolveLPIterations()
9825
9826- Delayed:
9827 - SCIPsepaIsDelayed()
9828 - SCIPsepaWasDelayed()
9829 - SCIPpropIsDelayed()
9830 - SCIPpropWasDelayed()
9831 - SCIPpresolIsDelayed()
9832 - SCIPpresolWasDelayed()
9833 - SCIPconshdlrIsSeparationDelayed()
9834 - SCIPconshdlrIsPropagationDelayed()
9835 - SCIPconshdlrIsPresolvingDelayed()
9836 - SCIPconshdlrWasSeparationDelayed()
9837 - SCIPconshdlrWasPropagationDelayed()
9838 - SCIPconshdlrWasPresolvingDelayed()
9839
9840### Command line interface
9841
9842- command line history in interactive shell now only stores useful commands
9843
9844### Interfaces to external software
9845
9846- removed storing of dual norms in LPI state of CPLEX interface (too memory consuming)
9847
9848### Changed parameters
9849
9850- default frequency offset of fracdiving heuristic changed to 3
9851- default frequency offset of (new) feaspump heuristic changed to 0
9852- default frequency offset of objfeaspump heuristic changed to 8
9853- changed default priority of primal heuristics
9854- renamed parameter `limits/sol` to `limits/solutions`
9855- changed default check priority of knapsack constraint handler to -600000
9856- changed default priority of Gomory cut separator to -1000 (will now be called after constraint handlers!)
9857- changed default priority of strong CG cut separator to -2000
9858- changed default priority of cmir cut separator to -3000
9859- changed default of parameter `lp/pricing` to `s`teepest edge pricing
9860- default parameter `branching/relpscost/minreliable` changed to 1.0
9861- default parameter `branching/relpscost/maxlookahead` changed to 8
9862- default parameter `branching/relpscost/sbiterofs` changed to 100000
9863- default parameter `heuristics/coefdiving/maxlpiterquot` changed to 0.05
9864- default parameter `heuristics/fracdiving/maxlpiterquot` changed to 0.05
9865- default parameter `heuristics/guideddiving/maxlpiterquot` changed to 0.05
9866- default parameter `heuristics/linesearchdiving/maxlpiterquot` changed to 0.05
9867- default parameter `heuristics/pscostdiving/maxlpiterquot` changed to 0.05
9868- default parameter `heuristics/feaspump/freq` changed to 20
9869- default parameter `heuristics/objfeaspump/freq` changed to 20
9870- default parameter `heuristics/objpscostdiving/freq` changed to 20
9871- default parameter `heuristics/rootsoldiving/freq` changed to 20
9872- default parameter `separating/clique/maxtreenodes` changed to -1
9873
9874### New parameters
9875
9876- new parameter delay for presolvers
9877- new parameter delaypresol for constraint handlers
9878- `branching/scorefunc`
9879- `constraints/.../delaypresol`
9880- `constraints/.../delayprop`
9881- `constraints/.../delaysepa`
9882- `conflict/dynamic`
9883- `conflict/removeable`
9884- `heuristics/coefdiving/maxlpiterofs`
9885- `heuristics/feaspump/maxlpiterofs`
9886- `heuristics/feaspump/maxsols`
9887- `heuristics/fracdiving/maxlpiterofs`
9888- `heuristics/guideddiving/maxlpiterofs`
9889- `heuristics/linesearchdiving/maxlpiterofs`
9890- `heuristics/objfeaspump/maxlpiterofs`
9891- `heuristics/objfeaspump/maxsols`
9892- `heuristics/objpscostdiving/maxlpiterofs`
9893- `heuristics/objpscostdiving/maxsols`
9894- `heuristics/pscostdiving/maxlpiterofs`
9895- `heuristics/rootsoldiving/maxlpiterofs`
9896- `heuristics/rootsoldiving/maxsols`
9897- `heuristics/fixandinfer/proprounds` and `heuristics/fixandinfer/minfixings`
9898- `lp/cleanupcolsroot` and `lp/cleanuprowsroot` to distinguish cleanup settings between root node and other nodes
9899- `lp/checkstability` to disable stability check of LP solver's result code
9900- `lp/initalgorithm` and `lp/resolvealgorithm` for switching between simplex and barrier algorithm
9901- `lp/pricing` to set the pricing strategy used in the LP solver
9902- `numerics/barrierconvtol` to set the convergence tolerance in the barrier algorithm
9903- `presolving/.../delay`
9904- `propagating/.../delay`
9905- `reading/cnfreader/dynamicconss`
9906- `reading/mpsreader/dynamicconss`
9907- `separating/.../delay`
9908
9909### Data structures
9910
9911- new possible result `SCIP_DELAYED` for `EXEC` method of separators, presolvers and propagators and `SEPA`, `PROP` and
9912 `PRESOL` methods of constraint handlers
9913
9914Fixed bugs
9915----------
9916
9917- fixed bug in MPS file reader
9918- removed bug with applying reduced cost strengthening before pricing in all necessary variables
9919- negated variables must also be reset in SCIPvarInitSolve()
9920- fixed documentation of `CONSLOCK`-method (missing parameter `scip` in SCIPaddVarLocks())
9921- included missing `objrelax.h` in includes of objscip.h
9922- fixed bug that after a resolve and further preprocessing, existing primal solutions may get corrupted due to
9923 aggregations or fixings that are possible due to the primal bound (given by the best solution)
9924- fixed bug with primal bound becoming wrong, if in a prior run the optimal solution was found and the cutoff bound was
9925 thereby reduced due to further domain propagation w.r.t. the objective function
9926- fixed bug in SCIPisObjIntegral()
9927- fixed bug in SCIPprintError() with `file == NULL`
9928- heuristic's display character is now only shown the first time, the new solution was found
9929- fixed bug that SCIPreadProb() doesn't discard the transformed problem
9930- fixed bug with wrong euclidean norm calculation of row, if multiple coefficients for the same variable are added and
9931 the sorting of the row was delayed with SCIProwDelaySort()
9932- fixed bug with adding implications: wrong insertion position, if only the lower bound change was present but not the
9933 upper bound change
9934- fixed bug in SCIPvarAddImplics() with wrong variable used in varAdjustBd()
9935- fixed bug in method reduced() of tclique_branch.c with sorting nodes in V
9936
9937- LP:
9938 - removed bug with objective norm calculation and column variables not in the LP (pricing)
9939 - LP error on forced LP resolve (due to 0 unfixed integers) now leads to an error (instead of accepting the pseudo
9940 solution as feasible)
9941 - fixed bug in CPLEX LP interface with dual norms
9942
9943- Presolving:
9944 - fixed bug that presolving time is not counted to solving time, if presolving is called explicitly with SCIPpresolve()
9945 - fixed bug where presolving fixings are counted even if the variable was already fixed
9946 - removed bug with dual presolver, that declared a problem to be unbounded or infeasible, if it could fix a variable to
9947 infinity even if its objective value is zero
9948 - fixed bug in knapsack constraint handler that fixed variables are sometimes not removed in presolving
9949
9950- Numerics:
9951 - fixed bug with unresolved numerical troubles in LP that don't render the LP useless at the current node
9952 - fixed numerical bugs in rounding heuristic and rootsoldiving heuristic
9953
9954- Separator:
9955 - fixed bugs in separation store with single coefficient cuts that are converted into bound changes
9956 - at least one cut per separation round is added to the LP to avoid cycling, even if the cut is redundant
9957 - fixed bug in SCIProwCalcIntegralScalar() with rows consisting of only continuous variables (appeared in gomory cut
9958 separator on miplib/dcmulti.mps)
9959 - fixed bug in linear constraint handler's knapsack relaxation separator
9960 - fixed bugs in intobj separator
9961 - fixed bug in cmir separator with empty rows
9962 - fixed bug in implied bound cut separator: only implications between binary variables were generated before
9963
9964- Constraint Handlers:
9965 - removed bug in knapsack constraint handler with merging multiple items if more than two items of the same variable
9966 appear in the constraint
9967 - removed bug in knapsack constraint handler with merging negated variables of equal weight at the end of the variables' array
9968 - fixed bug in linear constraint handler with eventdatas, if the original constraint has no variables
9969 - fixed bug that `CONSLOCK` method of constraint handlers that don't need constraints is not called
9970 - fixeg bug in setppc constraint handler with pairs of aggregated variables in the same constraint
9971 - fixed bug with globally deleting constraints, that have attached rows which are therefore not released in exitsol methods
9972
9973- Conflict analysis:
9974 - removed conflict analysis of infeasible diving LP if pricing is activated
9975 - made conflict analysis available in presolving stage (for probing conflicts)
9976
9977@section RN078 SCIP 0.7.8
9978*************************
9979
9980Features
9981--------
9982
9983- changed SCIProwCalcIntegralScalar() to a slightly different algorithm
9984- improved knapsack relaxation in linear constraint handler separator to scale the constraint in order to get integral
9985 coefficients instead of just rounding down all coefficients
9986- improved presolving of linear constraint handler: aggregation of two constraints with equal coefficient vector into
9987 single constraint
9988- improved presolving of knapsack constraint handler: aggregation of equal or negated variables in same constraint
9989
9990- Plugins:
9991 + priority of separators, propagators and presolvers decide whether the plugin is called before the corresponding
9992 constraint handler methods or after: plugins with nonnegative priorities are called before, plugins with negative
9993 priorities are called after the constraint handlers
9994 + new plugin class for relaxators (external relaxations, that can be used in parallel with LP relaxations)
9995 + if more than one result code applies to a plugin's execution, it should return the one that is higher in the call's
9996 documentation list
9997
9998Interface changes
9999-----------------
10000
10001- even in optimized mode, the simple functions that are implemented as defines in the include files exist in the
10002 library, s.t. one can include the include files without `NDEBUG` and use the optimized library
10003
10004### New and changed callbacks
10005
10006- new branching rule plugin methods `INITSOL` and `EXITSOL`
10007
10008### Deleted and changed API functions
10009
10010- removed SCIPisFeasible(); use !SCIPisFeasNegative() instead
10011- SCIPisIntegral(), SCIPisFracIntegral(), SCIPfloor(), SCIPceil() and SCIPfrac() don't use the feasibility
10012 tolerance anymore (default: 1e-06); instead, they are using epsilon (default: 1e-09); instead, for handling
10013 integrality of a variable `in feasibility tolerances`, new methods SCIPisFeasIntegral(), SCIPisFeasFracIntegral(),
10014 SCIPfeasFloor(), SCIPfeasCeil() and SCIPfeasFrac() should be used
10015- in LPI, the semantics of SCIPlpiHasPrimalRay() and SCIPlpiHasDualRay() changed: methods return TRUE, if a ray exists
10016 and the solver can return it; new methods SCIPlpiExistsPrimalRay() and SCIPlpiExistsDualRay() check whether a ray
10017 exists without checking, if the solver knows and can return the ray
10018
10019### New API functions
10020
10021- SCIPvarIsInLP()
10022- SCIPgetLPColumnObjval() and SCIPgetLPLooseObjval()
10023- SCIPcalcIntegralScalar() with arbitrary array of Real values
10024- SCIPaddCoefKnapsack() in knapsack constraint handler
10025- SCIPisScalingIntegral() to check, whether the scaling of a value would lead to an integral value, measured
10026 against epsilon which is also scaled by the same scalar
10027- SCIPgetRealarrayMinIdx(), SCIPgetRealarrayMaxIdx(), SCIPgetIntarrayMinIdx(), SCIPgetIntarrayMaxIdx(),
10028 SCIPgetBoolarrayMinIdx(), SCIPgetBoolarrayMaxIdx(), SCIPgetPtrarrayMinIdx() and SCIPgetPtrarrayMaxIdx()
10029- SCIPbsortPtrInt() and SCIPbsortPtrIntInt()
10030- SCIPvarWasFixedAtIndex()
10031- SCIPaddConflictBd()
10032- SCIPprintMemoryDiagnostic()
10033- SCIPfindObj...() and SCIPgetObj...() in C++ wrapper interface to get the corresponding plugin object
10034
10035### Changed parameters
10036
10037- slightly changed the meaning of parameter `presolving/abortfac` a value of 0 now means to abort presolving only after
10038 no more change has been found
10039
10040Fixed bugs
10041----------
10042
10043- assigning a value to a fixed variable in a solution with SCIPsetSolVal() does not return an error anymore, if the
10044 value is equal to the fixed value of the variable
10045- removed bug in SCIPisScalingIntegral()
10046- removed bugs with calling SCIPtightenVarLb(), SCIPtightenVarUb(), SCIPinferVarLbCons(), SCIPinferVarUbCons(),
10047 SCIPinferVarLbProp() and SCIPinferVarUbProp() in `PROBLEM` stage
10048
10049- (Re)solving:
10050 - solving loop is now immediately aborted, if a node on the active path is marked to be cut off
10051 - removed bug in resolving an interrupted problem, after the last solved node was cut off
10052 - removed bug with infinite solving loop if LP solving is turned off
10053 - removed bug with aborted solving in root node (e.g. due to time limit) that is tagged to be restarted
10054
10055- Branching:
10056 - fixed bug in all-fullstrong branching with getting strong branching information for columns not in current LP
10057 - implemented missing case in solve.c with branching rules that add constraints
10058
10059- Numerics:
10060 - changed numerics for integrality check of coefficients (fixed bug with accumulated errors in rows s.t. the row's
10061 activity is no longer integral although the row is marked being integer)
10062 - slightly changed numerics in linear constraint handler presolving to fix a bug with coefficients detected to be scaled
10063 to an integral value, that are not integral after scaling due to a large scalar that increased the integrality gap to
10064 a value larger than epsilon
10065
10066- Constraint handlers:
10067 - fixed bugs in consdataSwitchWatchedVars() of `or` and `and` constraint handlers
10068 - fixed wrong assertion in xor constraint handler with switching both watched variables to unwatched
10069 - fixed bugs in constraint handlers (and, logicor, or, setppc, xor) with calling conflict analysis during presolving
10070 - removed bug in knapsack constraint handler that appears if a variable is fixed to zero in knapsack presolving, which
10071 triggers a variable of the same knapsack to be fixed to one due to aggregation
10072
10073- Presolving:
10074 - removed bug in knapsack presolver
10075 - fixed bug in presolving with wrong number of newly fixed/aggregated/... variables/bounds/... after a restart
10076
10077@section RN077 SCIP 0.7.7
10078*************************
10079
10080Features
10081--------
10082
10083- infeasible LPs in diving now produce conflict clauses (if LP conflict analysis is enabled)
10084- conflict analysis was slightly modified
10085- slightly changed aging strategy of logic or constraint handler
10086
10087Interface changes
10088-----------------
10089
10090### Deleted and changed API functions
10091
10092- method SCIPgetGap() and SCIPgetTransGap() now return infinity, if primal and dual bound have opposite sign (this
10093 removes the oddness with the gap increasing while the dual bound approaches zero)
10094
10095### New API functions
10096
10097- added methods SCIPgetVarsLogicor() and SCIPgetNVarsLogicor() in logic or constraint handler
10098
10099### Changed parameters
10100
10101- `lp/colagelimit` and `lp/rowagelimit` may now be set to -1 to disable deletion of columns/rows due to aging
10102
10103Build system
10104------------
10105
10106### Makefile
10107
10108- the file names in the archive file are now preceeded with a directory `scip-<version>/`
10109- the compiler is now also represented in the LP solver library names (e.g. you have to rename the softlink
10110 `libcplex.linux.x86.a` to `libcplex.linux.x86.gnu.a`)
10111
10112Fixed bugs
10113----------
10114
10115- removed bug in conflict analysis that appears if the conflict is only active at the current depth level
10116- missing SCIPlpiIsPrimalFeasible() and SCIPlpiIsDualFeasible() implemented in lpi_spx.cpp and lpi_spx121.cpp
10117- removed preprocessing of linear constraint pairs with modifiable constraints
10118
10119- Asserts:
10120 - removed wrong assert `assert(eventfilter->len == 0 || eventfilter->eventmask != 0x00000000)` from event.c
10121 - removed wrong assert in conflict analysis (appeared on analyzing diving LP conflicts with both bounds of a non-binary variable changed)
10122
10123@section RN076 SCIP 0.7.6
10124*************************
10125
10126Features
10127--------
10128
10129- creation of reconvergence clauses in conflict analysis
10130- first node of each plunging is not treated as plunging node w.r.t. calling primal heuristics
10131- improved performance of logic or constraint handler due to better watched variables handling
10132
10133Interface changes
10134-----------------
10135
10136### Deleted and changed API functions
10137
10138- changed SCIPcatchVarEvent() and SCIPdropVarEvent()
10139- SCIPstage() is now called SCIPgetStage()
10140- SCIPprintStatus() is now called SCIPprintStage()
10141
10142### New API functions
10143
10144- SCIPgetActivityLinear() in linear constraint handler
10145- SCIPgetFeasibilityLinear() in linear constraint handler
10146- SCIPchgVarBranchDirection()
10147- SCIPvarGetBranchDirection()
10148- SCIPgetStatus() returns the solution status
10149- SCIPprintStatus() outputs the solution status (beware, that the old SCIPprintStatus() method is now called SCIPprintStage())
10150
10151### Changed parameters
10152
10153- changed default frequency offset of pscostdiving `heuristics/pscostdiving/freqofs` to 2 and frequency offset of fracdiving
10154 `heuristics/feaspump/freqofs` to 0 in order to not call pscostdiving in root node, where nearly all pseudo costs are uninitialized.
10155
10156### New parameters
10157
10158- new parameter `separating/efficacynorm` to choose between Euclidean, maximum, sum and discrete norm in efficacy
10159 calculation
10160
10161### Data structures
10162
10163- new possible result code `SCIP_DELAYED` for primal heuristics
10164
10165Fixed bugs
10166----------
10167
10168- removed bugs in CLP Solver interface
10169- SCIP returned `gap limit reached` even if the problem was solved to optimality, if the optimal solution was found at a
10170 node with lower bound equal to the global lower bound
10171- after conversion of the focus node into a junction (e.g. in case of numerical troubles while solving the node's LP), the child
10172 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)
10173
10174- Variables:
10175 - bug reconvergence clauses in conflict analysis if bounds on non-binary variables were the reason for the fixing of the
10176 uip to create a reconvergence clause for
10177 - wrong sub calls in SCIPvarGet...CurrentRun() for aggregated variables
10178 - variables' conflict set counter was not reset when the problem was resolved again
10179
10180Known bugs
10181----------
10182
10183- unbounded models lead to an error
10184- air04 and air05 return wrong optimal value (1 too large): possibly due to strong branching or setppc propagation?
10185
10186@section RN075 SCIP 0.7.5
10187*************************
10188
10189Miscellaneous
10190-------------
10191
10192- started change log*/