Scippy

SCIP

Solving Constraint Integer Programs

def.h File Reference

Detailed Description

common defines and data types used in all packages of SCIP

Author
Tobias Achterberg

Definition in file def.h.

#include <stdio.h>
#include <math.h>
#include <limits.h>
#include <float.h>
#include <assert.h>
#include "scip/type_retcode.h"
#include "scip/pub_message.h"

Go to the source code of this file.

Macros

#define SCIP_Bool   unsigned int
 
#define TRUE   1
 
#define FALSE   0
 
#define EXTERN   extern
 
#define SCIP_VERSION   310
 
#define SCIP_SUBVERSION   0
 
#define SCIP_COPYRIGHT   "Copyright (c) 2002-2014 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin (ZIB)"
 
#define SCIP_VARTYPE_BINARY_CHAR   'B'
 
#define SCIP_VARTYPE_INTEGER_CHAR   'I'
 
#define SCIP_VARTYPE_IMPLINT_CHAR   'M'
 
#define SCIP_VARTYPE_CONTINUOUS_CHAR   'C'
 
#define SCIP_Longint   long long
 
#define SCIP_LONGINT_MAX   LLONG_MAX
 
#define SCIP_LONGINT_MIN   LLONG_MIN
 
#define SCIP_Real   double
 
#define SCIP_REAL_MAX   (SCIP_Real)DBL_MAX
 
#define SCIP_REAL_MIN   -(SCIP_Real)DBL_MAX
 
#define SCIP_REAL_FORMAT   "lf"
 
#define SCIP_DEFAULT_INFINITY   1e+20
 
#define SCIP_DEFAULT_EPSILON   1e-09
 
#define SCIP_DEFAULT_SUMEPSILON   1e-06
 
#define SCIP_DEFAULT_FEASTOL   1e-06
 
#define SCIP_DEFAULT_LPFEASTOL   1e-06
 
#define SCIP_DEFAULT_DUALFEASTOL   1e-07
 
#define SCIP_DEFAULT_BARRIERCONVTOL   1e-10
 
#define SCIP_DEFAULT_BOUNDSTREPS   0.05
 
#define SCIP_DEFAULT_PSEUDOCOSTEPS   1e-01
 
#define SCIP_DEFAULT_PSEUDOCOSTDELTA   1e-04
 
#define SCIP_DEFAULT_RECOMPFAC   1e+07
 
#define SCIP_DEFAULT_HUGEVAL   1e+15
 
#define SCIP_MAXEPSILON   1e-03
 
#define SCIP_MINEPSILON   1e-20
 
#define SCIP_INVALID   1e+99
 
#define SCIP_UNKNOWN   1e+98
 
#define REALABS(x)   (fabs(x))
 
#define EPSEQ(x, y, eps)   (REALABS((x)-(y)) <= (eps))
 
#define EPSLT(x, y, eps)   ((x)-(y) < -(eps))
 
#define EPSLE(x, y, eps)   ((x)-(y) <= (eps))
 
#define EPSGT(x, y, eps)   ((x)-(y) > (eps))
 
#define EPSGE(x, y, eps)   ((x)-(y) >= -(eps))
 
#define EPSZ(x, eps)   (REALABS(x) <= (eps))
 
#define EPSP(x, eps)   ((x) > (eps))
 
#define EPSN(x, eps)   ((x) < -(eps))
 
#define EPSFLOOR(x, eps)   (floor((x)+(eps)))
 
#define EPSCEIL(x, eps)   (ceil((x)-(eps)))
 
#define EPSROUND(x, eps)   (ceil((x)-0.5+(eps)))
 
#define EPSFRAC(x, eps)   ((x)-EPSFLOOR(x,eps))
 
#define EPSISINT(x, eps)   (EPSFRAC(x,eps) <= (eps))
 
#define SCIP_MAXSTRLEN   1024
 
#define SCIP_HASHSIZE_PARAMS   4099
 
#define SCIP_HASHSIZE_NAMES   131101
 
#define SCIP_HASHSIZE_CUTPOOLS   131101
 
#define SCIP_HASHSIZE_CLIQUES   131101
 
#define SCIP_HASHSIZE_NAMES_SMALL   8011
 
#define SCIP_HASHSIZE_CUTPOOLS_SMALL   8011
 
#define SCIP_HASHSIZE_CLIQUES_SMALL   8011
 
#define SCIP_HASHSIZE_VBC   131101
 
#define SCIPABORT()   assert(FALSE)
 
#define SCIP_CALL_ABORT_QUIET(x)   do { if( (x) != SCIP_OKAY ) SCIPABORT(); } while( FALSE )
 
#define SCIP_CALL_QUIET(x)   do { SCIP_RETCODE _restat_; if( (_restat_ = (x)) != SCIP_OKAY ) return _restat_; } while( FALSE )
 
#define SCIP_ALLOC_ABORT_QUIET(x)   do { if( NULL == (x) ) SCIPABORT(); } while( FALSE )
 
#define SCIP_ALLOC_QUIET(x)   do { if( NULL == (x) ) return SCIP_NOMEMORY; } while( FALSE )
 
#define SCIP_CALL_ABORT(x)
 
#define SCIP_ALLOC_ABORT(x)
 
#define SCIP_CALL(x)
 
#define SCIP_ALLOC(x)
 
#define SCIP_DEPRECATED
 

Macro Definition Documentation

#define SCIP_Bool   unsigned int

type used for boolean values

Definition at line 49 of file def.h.

Referenced by addAltLPConstraint(), addAltLPRow(), addCand(), addCliques(), addCoef(), addConcaveEstimatorBivariate(), addConcaveEstimatorMultivariate(), addConflictBinvar(), addConflictBounds(), addCurrentSolution(), addCut(), addExtendedAsymmetricFormulation(), addExtendedFlowFormulation(), addFlowrowToCommodity(), addGLSCliques(), addLinearCoef(), addLinearConstraints(), addLinearization(), addLinearizationCuts(), addNegatedCliques(), addNextLevelBinImpls(), addNextLevelCliques(), addQuadVarTerm(), addRelaxation(), addRow(), addVarboundConstraints(), addVarSOS1(), addVarSOS2(), addZerohalfCutToLP(), adjustCutoffbound(), adjustOversizedJobBounds(), aggregateConstraints(), aggregateVariables(), aggregation(), analyzeGenVBoundConflict(), analyzeStrongbranch(), analyzeZeroResultant(), appendVarSOS1(), appendVarSOS2(), applyAlternativeBoundsFixing(), applyBdchgs(), applyBoundChgs(), applyCliqueFixings(), applyFixings(), applyGenVBound(), applyObbt(), applyProbing(), applyProbingVar(), applyVariableAssignment(), applyVbounds(), applyVboundsFixings(), branch(), calcNonZeros(), calcShiftVal(), calcVarBoundsDominated(), calcVarBoundsDominating(), catchEvents(), checkBounddisjunction(), checkCons(), checkConsnames(), checkCurvature(), checkEqualObjective(), checkFeasSubtree(), checkForOverlapping(), checkImplics(), checkImplicsApplied(), checkLazyColArray(), checkLogicor(), checkLPBoundsClean(), checkParallelObjective(), checkParameters(), checkPartialObjective(), checkRedundancySide(), checkSolution(), checkSolutionOrig(), checkSystemGF2(), checkVarnames(), chooseCoefVar(), chooseDoubleVar(), chooseFracVar(), chooseGuidedVar(), choosePscostVar(), chooseVeclenVar(), cleanupHashDatas(), cleanupMIRRow(), cleanupNetwork(), cliquePresolve(), collectBinaryCliqueData(), collectCliqueConss(), collectIncidentFlowCols(), collectMinactImplicVars(), collectMinactVar(), computeConsAndDataChanges(), computeCut(), computeFixingOrder(), conflictAddConflictCons(), conflictAnalyze(), conflictAnalyzeLP(), conflictCreateReconvergenceConss(), conflictsetCalcInsertDepth(), consdataCreate(), consdataFixOperandsOne(), consdataFixResultantZero(), consdataGetActivity(), consdataGetActivityBounds(), consdataLinearize(), consdataPrint(), consdataSort(), consdataTightenCoefs(), consdataUpdateActivities(), consFixInteger(), constructSNFRelaxation(), convertBinaryEquality(), convertLongEquality(), convertUnaryEquality(), copyAndSolveComponent(), copyConsPseudoboolean(), copyCuts(), copyProb(), copyVars(), coretimesUpdateLb(), coretimesUpdateUb(), correctConshdlrdata(), correctLocksAndCaptures(), correctPresoldata(), costCalculation(), createAndAddAndCons(), createAndAddLinearCons(), createCapacityRestrictionIntvars(), createCGCutCMIR(), createCGCutDirect(), createCGCutStrongCG(), createConflict(), createConstantAssignment(), createCoreProfile(), createCoveringProblem(), createExprtreeFromMonomial(), createIndicatorConstraint(), createNlRow(), createObjRow(), createPresoldata(), createSubproblem(), createSubSCIP(), createSubscip(), createTcliqueGraph(), createVariable(), createZerohalfCutFromZerohalfWeightvector(), cutGenerationHeuristic(), decomposeProblem(), deleteCliqueDataEntry(), deleteCommodity(), detectImpliedBounds(), detectRedundantConstraints(), determineBound(), dfs(), dialogExecMenu(), displayRelevantStats(), dropEvents(), dualBoundStrengthening(), dualPresolve(), dualPresolving(), dualWeightsTightening(), enforceConstraints(), enforceCurrentSol(), enforceCuts(), enforceIndicators(), enforcePseudo(), enforceSolution(), enforceSOS1(), enforceSOS2(), enforceViolatedFixedNonlinear(), evaluateCutNumerics(), execRelpscost(), exprgraphAddExpr(), exprgraphNodeAddChildren(), exprgraphNodeRemovePolynomialDuplicateChildren(), exprgraphNodeSimplify(), exprsimplifyAddChildren(), exprsimplifyFlattenPolynomials(), exprsimplifyRemoveDuplicatePolynomialChildren(), exprsimplifyRemovePolynomialUnusedChildren(), extendToCover(), extractCliques(), extractFlow(), extractFlowRows(), extractGates(), extractLinearValues(), extractNodes(), filterRound(), findAggregation(), findCumulativeConss(), findDominancePairs(), findNewBounds(), fixAdditionalVars(), fixAndPropagate(), fixDeleteOrUpgradeCons(), fixIntegerVariableLb(), fixIntegerVariableUb(), fixTriangle(), fixVariables(), focusnodeCleanupVars(), focusnodeToFork(), freeSolve(), freeTransform(), fullDualPresolve(), generate1ConvexIndefiniteUnderestimator(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternA(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternB(), generateClusterCuts(), generateConvexConcaveEstimator(), generateCut(), generateCutLTIcomputeCoefs(), generateEstimatingHyperplane(), generateOddCycleCut(), generateOverestimatingHyperplaneCut(), getBestCandidate(), getBinVarsRepresentatives(), getClosestVlb(), getClosestVub(), getConstraint(), getCover(), getFixedVariable(), getFlowCover(), getFlowrowFit(), getHighestCapacityUsage(), getLiftingSequenceGUB(), getLinVarsAndAndRess(), getMaxactImplicObjchg(), getMaxAndConsDim(), getMinactImplicObjchg(), getNextFlowrow(), getNextToken(), getNodeSimilarityScore(), getOptimalShiftingValue(), getRelevantRows(), getVariable(), getVariableOrTerm(), GUBsetCalcCliquePartition(), GUBsetCheck(), hashtableResize(), hessLagSparsitySetNzFlagForExprtree(), implicsSearchVar(), inferboundsEdgeFinding(), inferVariableZero(), initData(), initMatrix(), initSepaData(), insertSortedRootNeighbors(), invertCommodity(), isConsIndependently(), isNeighbor(), isNewSection(), isZero(), liftCliqueVariables(), liftOddCycleCut(), lockRoundingAndCons(), lpAlgorithm(), lpFlushAndSolve(), lpFlushChgCols(), lpFlushChgRows(), lpiStrongbranch(), lpLexDualSimplex(), lpSetIterationLimit(), lpSetLPInfo(), lpSetPricing(), lpSetUobjlim(), lpSolve(), lpSolveStable(), maximalslack(), mcfnetworkExtract(), mergeMultiples(), mpsinputReadLine(), multiAggregateBinvar(), nlrowRemoveFixedExprtreeVars(), nlrowRemoveFixedQuadVars(), nodeActivate(), nodeDeactivate(), nodepairqueueCreate(), nodepqDelPos(), nodeReleaseParent(), nodeRepropagate(), normalizeCons(), objimplicsCreate(), optimize(), paramCopyBool(), paramsetParse(), parseArray(), parseConstraint(), parseVariable(), performAggregations(), performDualfix(), performRandRounding(), performSimpleRounding(), performStrongbranchWithPropagation(), prepareCons(), preprocessCliques(), preprocessColumns(), preprocessConsiderMinSlack(), preprocessConstraintPairs(), preprocessIdenticalColums(), preprocessRows(), preprocessTrivialZerohalfCuts(), presolComponents(), presolRoundIndicator(), presolRoundSOS1(), presolRoundSOS2(), presolve(), presolveConsEffectiveHorizon(), presolveConsEst(), presolveConsLct(), presolveCreateGlineurApproxDim3(), presolveDual(), presolveFindDuplicates(), presolveFindDuplicatesUpgradeCons(), presolvePropagateCons(), presolveRemoveFixedVariables(), presolveRound(), presolveSolve(), presolveTryAddLinearReform(), presolveUpgrade(), prettifyConss(), priceAndCutLoop(), primalAddSol(), printBoundSection(), printColumnSection(), printConformName(), printExpr(), printLinearCons(), printNLRow(), printPBRow(), printPseudobooleanCons(), printRow(), printSignpowerRow(), printSolutionStatistics(), process(), processBinvarFixings(), processFixings(), processIntegerBoundChg(), processNlRow(), processWatchedVars(), propagateBinaryBestRootRedcost(), propagateBounds(), propagateBoundsCons(), propagateBoundsTightenVar(), propagateBoundsTightenVarLb(), propagateBoundsTightenVarUb(), propagateCons(), propagateConstraintSides(), propagateCutoffbound(), propagateCutoffboundBinvars(), propagateCutoffboundGlobally(), propagateCutoffboundVar(), propagateDomains(), propagateLowerbound(), propagateRedcostVar(), propagateTimetable(), propagateTTEF(), propagateVbounds(), propagationRound(), propAndSolve(), propdataInit(), propIndicator(), propSOS1(), propSOS2(), readBinaries(), readBounds(), readCnf(), readCoefficients(), readConstraints(), readGenerals(), readIndicators(), readLinearCoefs(), readMps(), readObjective(), readPolynomial(), readQMatrix(), readRows(), readSemicontinuous(), readSol(), readSOS(), readSos(), readSOScons(), readXMLSol(), reformEnsureChildrenMinCurvature(), reformNode2Var(), reformulate(), registerBranchingCandidates(), registerVariableInfeasibilities(), removeConstraintsDueToNegCliques(), removeDoubleAndSingletonsAndPerformDualpresolve(), removeFixedVariables(), removeRedundantConssAndNonzeros(), removeRedundantConstraints(), replaceByLinearConstraints(), replaceViolatedByLinearConstraints(), resolvePropagation(), resolvePropagationCoretimes(), rowCalcActivityBounds(), rowScale(), SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_CONFLICTEXEC(), SCIP_DECL_CONSACTIVE(), SCIP_DECL_CONSCHECK(), SCIP_DECL_CONSDELETE(), SCIP_DECL_CONSENFOLP(), SCIP_DECL_CONSENFOPS(), SCIP_DECL_CONSEXITPRE(), SCIP_DECL_CONSGETNVARS(), SCIP_DECL_CONSGETVARS(), SCIP_DECL_CONSINITLP(), SCIP_DECL_CONSINITPRE(), SCIP_DECL_CONSINITSOL(), SCIP_DECL_CONSLOCK(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_CONSPROP(), SCIP_DECL_CONSRESPROP(), SCIP_DECL_CONSSEPALP(), SCIP_DECL_CONSSEPASOL(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_DISPOUTPUT(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_EXPRCURV(), SCIP_DECL_EXPRGRAPHNODEREFORM(), SCIP_DECL_HASHKEYEQ(), SCIP_DECL_HEUREXEC(), SCIP_DECL_LINCONSUPGD(), SCIP_DECL_PARAMCHGD(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_PROBTRANS(), SCIP_DECL_PROPEXEC(), SCIP_DECL_PROPPRESOL(), SCIP_DECL_PROPRESPROP(), SCIP_DECL_QUADCONSUPGD(), SCIP_DECL_READERREAD(), SCIP_DECL_READERWRITE(), SCIP_DECL_SEPAEXECLP(), SCIP_DECL_SEPAEXECSOL(), SCIP_DECL_VARTRANS(), SCIPaddClique(), SCIPaddSol(), SCIPaddSolFree(), SCIPaddVarIndicator(), SCIPanalyzeDeductionsProbing(), SCIPapplyProximity(), SCIPapplyUndercover(), SCIPapplyZeroobj(), SCIPboolarrayExtend(), SCIPcalcCliquePartition(), SCIPcalcIntegralScalar(), SCIPchgVarLb(), SCIPchgVarLbGlobal(), SCIPchgVarUb(), SCIPchgVarUbGlobal(), SCIPcliquelistCheck(), SCIPcliquelistRemoveFromCliques(), SCIPcliquetableAdd(), SCIPcolGetStrongbranch(), SCIPcolGetStrongbranches(), SCIPcomputeLPRelIntPoint(), SCIPconflictAnalyzeStrongbranch(), SCIPconflictFlushConss(), SCIPconshdlrEnforceLPSol(), SCIPconshdlrEnforcePseudoSol(), SCIPconstructCurrentLP(), SCIPcopy(), SCIPcopyConss(), SCIPcopyImplicationsCliques(), SCIPcopyOrig(), SCIPcopyOrigConss(), SCIPcount(), SCIPcreateConsAnd(), SCIPcreateConsIndicator(), SCIPcreateConsIndicatorLinCons(), SCIPcreateConsOrbitope(), SCIPcreateConsPseudobooleanWithConss(), SCIPcreateConsSOS1(), SCIPcreateConsSOS2(), SCIPcreateConsSuperindicator(), SCIPcreateFiniteSolCopy(), SCIPcreateWorstCaseProfile(), SCIPcutGenerationHeuristicCmir(), SCIPcutpoolSeparate(), SCIPdialoghdlrAddHistory(), SCIPdigraphComputeUndirectedComponents(), SCIPdigraphTopoSortComponents(), SCIPdispPrintLine(), SCIPeventfilterProcess(), SCIPexprcurvMonomial(), SCIPexprcurvPower(), SCIPexprgraphAddExprtreeSum(), SCIPexprgraphAddNode(), SCIPexprgraphCheckCurvature(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphPropagateVarBounds(), SCIPexprgraphSimplify(), SCIPexprtreeRemoveFixedVars(), SCIPfreeSolve(), SCIPfreeTransform(), SCIPgenVBoundAdd(), SCIPgetAndDatasPseudoboolean(), SCIPgetConsCopy(), SCIPgetVarCopy(), SCIPgetVarStrongbranchWithPropagation(), SCIPheurExec(), SCIPheurShouldBeExecuted(), SCIPimplicsAdd(), SCIPimplicsDel(), SCIPinferBinvarCons(), SCIPinferBinvarProp(), SCIPintervalPowerScalar(), SCIPisConcaveQuadratic(), SCIPisConvexQuadratic(), SCIPisPresolveFinished(), SCIPlpCalcMIR(), SCIPlpCalcStrongCG(), SCIPlpCleanupAll(), SCIPlpCleanupNew(), SCIPlpCreate(), SCIPlpEndDive(), SCIPlpGetSol(), SCIPlpiCreate(), SCIPlpiGetSolFeasibility(), SCIPlpiGetState(), SCIPlpiIsDualFeasible(), SCIPlpiIsPrimalFeasible(), SCIPlpiIsPrimalUnbounded(), SCIPlpiSetIntpar(), SCIPlpiSolveDual(), SCIPlpiSolvePrimal(), SCIPlpiStrongbranch(), SCIPlpMarkFlushed(), SCIPlpSolveAndEval(), SCIPlpStartDive(), SCIPlpSumRows(), SCIPmakeIndicatorsFeasible(), SCIPnlpiOracleAddConstraints(), SCIPnlpiOracleChgLinearCoefs(), SCIPnlpiOracleChgQuadCoefs(), SCIPnlpiOracleGetJacobianSparsity(), SCIPnlpiOraclePrintProblemGams(), SCIPnlpRemoveRedundantNlRows(), SCIPnlrowChgExprtree(), SCIPnodeAddBoundinfer(), SCIPnodeFocus(), SCIPnodeFree(), SCIPnodepqBound(), SCIPnodePropagateImplics(), SCIPparamsetSet(), SCIPpresolve(), SCIPpriceLoop(), SCIPpricestoreAddProbVars(), SCIPprimalAddSol(), SCIPprimalAddSolFree(), SCIPprimalHeuristics(), SCIPprimalRetransformSolutions(), SCIPprimalTransformSol(), SCIPprimalTrySol(), SCIPprimalTrySolFree(), SCIPprintSol(), SCIPprintTransSol(), SCIPprobScaleObj(), SCIPprobUpdateBestRootSol(), SCIPprocessShellArguments(), SCIPprofileDeleteCore(), SCIPprofileGetEarliestFeasibleStart(), SCIPprofileGetLatestFeasibleStart(), SCIPpropCumulativeCondition(), SCIPreadProb(), SCIPremoveInefficaciousCuts(), SCIPretransformSol(), SCIProwCalcIntegralScalar(), SCIProwGetDiscreteScalarProduct(), SCIProwGetScalarProduct(), SCIPselectSimpleValue(), SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), SCIPseparateKnapsackCuts(), SCIPseparateRelaxedKnapsack(), SCIPseparationRound(), SCIPsepastoreApplyCuts(), SCIPsetCopyPlugins(), SCIPsetLinearConsIndicator(), SCIPshrinkDisjunctiveVarSet(), SCIPsolAdjustImplicitSolVals(), SCIPsolRound(), SCIPsolve(), SCIPsolveCIP(), SCIPsolveKnapsackExactly(), SCIPsparseSolGetNextSol(), SCIPtransformProb(), SCIPtreeBranchVar(), SCIPtreeBranchVarNary(), SCIPtreeCalcNodeselPriority(), SCIPtreeCreatePresolvingRoot(), SCIPtreeEndProbing(), SCIPtreeFreePresolvingRoot(), SCIPtreeLoadLPState(), SCIPtreeLoadProbingLPState(), SCIPtrySol(), SCIPtrySolFree(), SCIPupgradeConsLinear(), SCIPvarAddClique(), SCIPvarAddHoleGlobal(), SCIPvarAddHoleOriginal(), SCIPvarAggregate(), SCIPvarGetActiveRepresentatives(), SCIPvarGetImplRedcost(), SCIPvarGetMultaggrLbGlobal(), SCIPvarGetMultaggrLbLocal(), SCIPvarGetMultaggrUbGlobal(), SCIPvarGetMultaggrUbLocal(), SCIPvarGetRedcost(), SCIPvarsGetProbvarBinary(), SCIPvarTryAggregateVars(), SCIPvboundsAdd(), SCIPvboundsDel(), SCIPwriteCliqueGraph(), SCIPwriteGms(), SCIPwriteImplicationConflictGraph(), SCIPwriteLp(), SCIPwriteLP(), SCIPwritePbm(), SCIPwritePip(), SCIPwritePpm(), selectShifting(), selectSolsRandomized(), separateByAuxGraph(), separateByEnumerationHeuristics(), separateBySolvingAuxIP(), separateCons(), separateCuts(), separateGLS(), separateHeur(), separateIISRounding(), separateIndicators(), separatePoint(), separationRoundLP(), separationRoundSol(), sepastoreAddCut(), sepastoreApplyBdchg(), sepastoreIsBdchgApplicable(), setupSubproblem(), shortenConss(), simplifyInequalities(), singletonColumnStuffing(), solCutIsViolated(), solveIndependentCons(), solveLp(), solveNode(), solveNodeLP(), solveProbingLP(), solveSubMIP(), solveSubNLP(), solveSubproblem(), solveSubscip(), splitProblem(), storeMod2Data(), storeSolution(), strengthenConss(), strengthVarbaounds(), sumMIRRow(), sumStrongCGRow(), TCLIQUE_NEWSOL(), tcliquegraphAddCliqueVars(), tcliquegraphAddImplics(), tcliquegraphAddImplicsCliqueVars(), tcliquegraphAddImplicsVars(), tcliquegraphConstructCliqueTable(), tightenBounds(), tightenCoefs(), tightenedIntvar(), tightenSides(), tightenVarBounds(), tightenVarLb(), tightenVarUb(), tightenWeights(), tightenWeightsLift(), transformMIRRow(), transformSols(), transformStrongCGRow(), transformToOrig(), transformVariable(), tryAggregateIntVars(), tryDelta(), tryToInsert(), tryUpgradingLogicor(), tryUpgradingSetppc(), tryUpgradingXor(), undoBdchgsProof(), unlockRoundingAndCons(), updateBestCandidate(), updateBounds(), updateConsanddataUses(), updateTransformation(), updateViolations(), upgradeCons(), upgradeConss(), varAddImplic(), varAddTransitiveBinaryClosureImplic(), varAddTransitiveImplic(), varAddVbound(), varIsFixed(), varProcessAddHoleGlobal(), varProcessAddHoleLocal(), varRemoveImplicsVbs(), varUpdateAggregationBounds(), vboundsSearchPos(), writeFzn(), writeOpb(), writeOpbConstraints(), writeOpbObjective(), writeOpbRelevantAnds(), and writeProblem().

#define TRUE   1

boolean value TRUE

Definition at line 51 of file def.h.

Referenced by addAllConss(), addAltLPConstraint(), addAltLPRow(), addBdchg(), addBilinearTerm(), addBoundViolated(), addCliques(), addCoef(), addCoefTerm(), addConcaveEstimatorBivariate(), addConcaveEstimatorMultivariate(), addConcaveEstimatorUnivariate(), addConflictBounds(), addCurrentSolution(), addCut(), addCuts(), addExtendedAsymmetricFormulation(), addExtendedFlowFormulation(), addExtraCliques(), addFixParamDialog(), addFlowrowToCommodity(), addIntervalGradientEstimator(), addLinearCoef(), addLinearConstraints(), addLinearization(), addLinearizationCuts(), addLocalBranchingConstraint(), addNegatedCliques(), addNextLevelBinImpls(), addNextLevelCliques(), addQuadVarTerm(), addRow(), addRowToAggregation(), addSetParamDialog(), addVarbound(), addVarSOS1(), addVarSOS2(), addZerohalfCutToLP(), adjustCutoffbound(), adjustOversizedJobBounds(), aggregateConstraints(), aggregateVariables(), aggregation(), allRowsInLP(), analyseInfeasibelCoreInsertion(), analyzeConflictLowerbound(), analyzeConflictOverload(), analyzeConflictUpperbound(), analyzeEnergyRequirement(), analyzeZeroResultant(), applyAlternativeBoundsBranching(), applyBdchgs(), applyBounding(), applyCliqueFixings(), applyCuts(), applyFixings(), applyGlobalBounds(), applyImplic(), applyProbing(), applyProbingVar(), applyVbounds(), applyVboundsFixings(), bdchginfoIsInvalid(), blockRootPath(), boundchgApplyGlobal(), branch(), branchCons(), calcCliquepartition(), calcColActivity(), calcNonZeros(), calcPscostQuot(), calcShiftVal(), calculateBounds(), calcVarBoundsDominated(), calcVarBoundsDominating(), canTightenBounds(), catchVarEvents(), checkAltLPInfeasible(), checkAndConss(), checkBounddisjunction(), checkCons(), checkConsnames(), checkConstraintMatching(), checkCumulativeCondition(), checkCurvature(), checkCurvatureEasy(), checkDemands(), checkEqualObjective(), checkFactorable(), checkFeasSubtree(), checkFixedVariables(), checkForOverlapping(), checkImplics(), checkKnapsack(), checkLazyColArray(), checkLogicor(), checkLPBoundsClean(), checkMinweightidx(), checkOrigPbCons(), checkOverloadViaThetaTree(), checkParallelObjective(), checkParameters(), checkRedundancy(), checkRedundancySide(), checkSolOrig(), checkSolution(), checkSolutionOrig(), checkSolveKnapsack(), checkSystemGF2(), checkVarbound(), chgCoefPos(), chgLhs(), chgRhs(), chooseCoefVar(), chooseDoubleVar(), chooseFracVar(), chooseGuidedVar(), choosePscostVar(), chooseVeclenVar(), cleanCycle(), cleanupHashDatas(), cleanupNetwork(), cliquePresolve(), coefChanged(), collectIncidentFlowCols(), collectMaxactVar(), collectMinactImplicVar(), collectMinactImplicVars(), collectMinactVar(), colSortLP(), colSortNonLP(), colUpdateDelLP(), compSubcliques(), computeAndConstraintInfos(), computeConsAndDataChanges(), computeCut(), computeFixingOrder(), computeViolation(), conflictAddConflictCons(), conflictAddConflictset(), conflictAnalyze(), conflictAnalyzeBoundexceedingLP(), conflictAnalyzeInfeasibleLP(), conflictAnalyzeLP(), conflictMarkBoundCheckPresence(), conflictResolveBound(), conflictsetAddBounds(), conflictsetCalcInsertDepth(), conflictsetClear(), consCheckRedundancy(), consdataCalcActivities(), consdataCalcMaxAbsval(), consdataCalcSignature(), consdataCalcSignatures(), consdataCheckSuperindicator(), consdataCollectLinkingCons(), consdataCreate(), consdataCreateBinvars(), consdataCreateEmpty(), consdataFixOperandsOne(), consdataFixResultantZero(), consdataFree(), consdataGetActivity(), consdataGetGlbActivityBounds(), consdataGetGlbActivityResiduals(), consdataGetSignature(), consdataIsResidualIntegral(), consdataLinearize(), consdataPrint(), consdataRecomputeGlbMaxactivity(), consdataRecomputeGlbMinactivity(), consdataRecomputeMaxactivity(), consdataRecomputeMinactivity(), consdataSetExprtrees(), consdataSort(), consdataSortBilinTerms(), consdataSortLinearVars(), consdataSortQuadVarTerms(), consdataTightenCoefs(), consdataUpdateActivitiesGlbLb(), consdataUpdateActivitiesGlbUb(), consFixInteger(), conshdlrActivateCons(), conshdlrAddUpdateCons(), conshdlrdataHasUpgrade(), conshdlrEnableCons(), conshdlrEnableConsPropagation(), conshdlrEnableConsSeparation(), conshdlrMarkConsObsolete(), conshdlrMarkConsPropagate(), constraintNonOverlappingGraph(), constructSNFRelaxation(), convertBinaryEquality(), convertLongEquality(), convertUnaryEquality(), copyAndSolveComponent(), copyConsPseudoboolean(), copyCuts(), coretimesUpdateLb(), coretimesUpdateUb(), correctConshdlrdata(), correctLocksAndCaptures(), correctPresoldata(), CREATE_CONSTRAINT(), createAndAddAndCons(), createAndAddLinearCons(), createCapacityRestriction(), createCapacityRestrictionIntvars(), createCGCutDirect(), createConflict(), createConsFromMonomial(), createCoreProfile(), createCoverCuts(), createCoverCutsTimepoint(), createCoveringProblem(), createCumulativeCons(), createDisjuctiveCons(), createEmphasisSubmenu(), createExprtreeFromMonomial(), createIndicatorConstraint(), createLinearCons(), createNewSol(), createNewSols(), createNextLevel(), createNodedata(), createObjRow(), createPrecedenceCons(), createPresoldata(), createQuadraticCons(), createRows(), createSubproblem(), createSubSCIP(), createSubscip(), createVarUbs(), createZerohalfCutFromZerohalfWeightvector(), cutGenerationHeuristic(), CUTOFF_CONSTRAINT(), delCoefPos(), deleteCliqueDataEntry(), deleteRedundantVars(), deleteTrivilCons(), depthFirstSearch(), detectImpliedBounds(), detectParallelCols(), detectRedundantConstraints(), detectRedundantVars(), determineBound(), dfs(), dialogExecMenu(), dijkstraGraphIsValid(), dijkstraHeapIsValid(), displayRelevantStats(), doComment(), domAddHole(), dualBoundStrengthening(), dualPresolve(), dualPresolving(), dualWeightsTightening(), enforceConstraints(), enforceCurrentSol(), enforceCuts(), enforceIndicators(), enforcePseudo(), enforceViolatedFixedNonlinear(), evaluateCutNumerics(), eventfilterDelayUpdates(), execGenVBounds(), execRelpscost(), exprConvertToPolynomial(), exprgraphAddExpr(), exprgraphCreateNode(), exprgraphFindParentByOperator(), exprgraphNodeAddChildren(), exprgraphNodeCreateExpr(), exprgraphNodePropagateBounds(), exprgraphNodeRemovePolynomialDuplicateChildren(), exprgraphNodeSimplify(), exprgraphNodeSortParents(), exprgraphSortConstNodes(), exprgraphUpdateVarNodeBounds(), exprIsNonSmooth(), exprsimplifyAddChildren(), exprsimplifyFlattenPolynomials(), exprsimplifyRemoveDuplicatePolynomialChildren(), exprsimplifyRemovePolynomialUnusedChildren(), exprUnconvertPolynomial(), extendToCover(), extractCliques(), extractFlow(), extractNodes(), fileExists(), fillDigraph(), filterExistingLP(), filterRound(), findAggregation(), findDominancePairs(), findFixings(), findNewBounds(), findShortestPathToRoot(), findUnblockedShortestPathToRoot(), fixAndPropagate(), fixDeleteOrUpgradeCons(), fixIntegerVariableLb(), fixIntegerVariableUb(), fixTriangle(), fixVariables(), fixVariableZeroNode(), flipCoords(), focusnodeToDeadend(), focusnodeToFork(), forbidCover(), forbidFixation(), freeSolve(), freeTransform(), freeVariables(), fullDualPresolve(), generate1ConvexIndefiniteUnderestimator(), generate1ConvexIndefiniteUnderestimatorAtBoundary(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternA(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternB(), generateClusterCuts(), generateConvexConcaveEstimator(), generateConvexConcaveUnderestimator(), generateCut(), generateCutConvex(), generateCutFactorableDo(), generateCutLTI(), generateCutLTIcomputeCoefs(), generateCutLTIfindIntersection(), generateCutLTIgenMulCoeff(), generateCutNonConvex(), generateCutPoint(), generateCutProjectedPoint(), generateCutSol(), generateEstimatingHyperplane(), generateLinearizationCut(), generateOddCycleCut(), generateOrthogonal_lx_ly_Underestimator(), generateOrthogonal_lx_uy_Underestimator(), generateOverestimatingHyperplaneCut(), generateSecantCut(), generateSecantCutNoCheck(), generateUnderestimatorParallelYFacets(), getActiveVariables(), getActivityResidualsLowerBound(), getActivityResidualsUpperBound(), getBase(), getClosestVlb(), getClosestVub(), getConflictImplics(), getConstraint(), getCover(), getFixedVariable(), getFixingValue(), getFlowCover(), getFlowrowFit(), getGenVBoundsMinActivityConflict(), getGradientMaxElement(), getInputString(), getLiftingSequenceGUB(), getLinearCoeffs(), getMaxactImplicObjchg(), getMaxActivity(), getMaxAndConsDim(), getMinactImplicObjchg(), getMinActivity(), getNCountedSols(), getNextLine(), getNextToken(), getNodeSimilarityScore(), getOptimalShiftingValue(), getRelevantRows(), getStart(), getVariable(), getVariableOrTerm(), GUBsetCalcCliquePartition(), GUBsetCheck(), hashtablelistRemove(), hashtableResize(), hasMatrixMax2EntriesPerRow(), identifySourcesTargets(), impliesVlbPrecedenceCondition(), incCounters(), inCliquehash(), inferboundsEdgeFinding(), inferVariableZero(), initAlternativeLP(), initConshdlrData(), initData(), inithashmapandtable(), initializeCandsLists(), initLP(), initMatrix(), initSolve(), insertSortedRootNeighbors(), insertZerolist(), isBoolExp(), isChar(), isConsIndependently(), isDelimChar(), isEndingSoftConstraintWeight(), isEndLine(), isGAMSprintableSOC(), isIdentifier(), isIntegralScalar(), isNeighbor(), isNewSection(), isPseudocostUpdateValid(), isSense(), isSign(), isStartingSoftConstraintWeight(), isTokenChar(), isValue(), isValueChar(), isZero(), liftCliqueVariables(), lifting(), liftOddCycleCut(), linconsupgradeCreate(), lockQuadraticVariable(), lockRounding(), lockRoundingAndCons(), lpAlgorithm(), lpBarrier(), lpDualSimplex(), lpFlushAddCols(), lpFlushAddRows(), lpFlushDelCols(), lpFlushDelRows(), lpiSolve(), lpiStrongbranch(), lpiStrongbranches(), lpiStrongbranchIntegral(), lpLexDualSimplex(), lpPrimalSimplex(), lpSetIntpar(), lpSetRealpar(), lpSolve(), lpSolveStable(), lpUpdateObjNorms(), lpUpdateObjval(), lpUpdateVarColumn(), lpUpdateVarLoose(), maximalslack(), mcfnetworkExtract(), mergeAndCleanBilinearTerms(), mergeAndCleanLinearVars(), mergeAndCleanQuadVarTerms(), mergeMultiples(), messagePrintDialog(), messagePrintInfo(), mpsinputReadLine(), mpsinputSyntaxerror(), newsolCliqueAddRow(), newSolution(), nlpFlushObjective(), nlrowAddToLinearCoef(), nlrowRemoveFixedQuadVars(), nlrowSortLinear(), nlrowSortQuadElem(), nodeActivate(), nodepairqueueCreate(), nodepqDelPos(), nodesHaveCommonClique(), normalizeCons(), normalizeDemands(), normalizeWeights(), optimize(), origsolOfInterest(), paramCheckBool(), paramCopyBool(), paramCopyChar(), paramCopyInt(), paramCopyLongint(), paramCopyReal(), paramCopyString(), paramCreateBool(), paramCreateChar(), paramCreateInt(), paramCreateLongint(), paramCreateReal(), paramCreateString(), paramParseBool(), paramParseChar(), paramParseInt(), paramParseLongint(), paramParseReal(), paramParseString(), paramsetParse(), paramsetSetHeuristicsAggressive(), paramsetSetPresolvingAggressive(), paramsetSetSeparatingAggressive(), parseArrayType(), parseBoolValue(), parseName(), parsePredicate(), performDualfix(), performRandRounding(), performSimpleRounding(), performStrongbranchWithPropagation(), polishSolution(), polynomialdataExpandMonomialFactor(), polynomialdataMultiplyByPolynomial(), polynomialdataPower(), polynomialdataSortMonomials(), popPstack(), prepareCons(), preprocess(), preprocessCliques(), preprocessColumns(), preprocessConsiderMinSlack(), preprocessConstraintPairs(), preprocessIdenticalColums(), preprocessModGaussElim(), preprocessRows(), preprocessTrivialZerohalfCuts(), presolComponents(), presolRoundIndicator(), presolRoundSOS1(), presolRoundSOS2(), presolve(), presolveConsEffectiveHorizon(), presolveConsEst(), presolveConsLct(), presolveCreateBenTalNemirovskiApproxDim3(), presolveCreateGlineurApproxDim3(), presolveCreateOuterApprox(), presolveFindDuplicates(), presolveFindDuplicatesSolveEquations(), presolvePropagateCons(), presolveRemoveFixedVariables(), presolveRound(), presolveSolve(), presolveTryAddLinearReform(), presolveTwoOpt(), presolveUpgrade(), priceAndCutLoop(), primalAddSol(), primalExistsOrigSol(), primalExistsSol(), printBoundSection(), printColumnSection(), printExpr(), printIndicatorCons(), printLinearCons(), printSignpowerRow(), printSolutionStatistics(), process(), processBinvarFixings(), processFixings(), processIntegerBoundChg(), processNlRow(), processWatchedVars(), procInTag(), profileFindDownFeasibleStart(), profileFindFeasibleStart(), profileUpdate(), projectVbd(), propagateBounds(), propagateBoundsCons(), propagateCons(), propagateCutoffbound(), propagateCutoffboundBinvar(), propagateCutoffboundBinvars(), propagateCutoffboundGlobally(), propagateDomains(), propagateEdgeFinding(), propagateLbTTEF(), propagateLowerbound(), propagateLowerboundBinvar(), propagateLowerboundVar(), propagateRedcostBinvar(), propagateRootRedcostBinvar(), propagateTimetable(), propagateTTEF(), propagateUbTTEF(), propagateVbounds(), propagationRound(), propAndSolve(), propdataInit(), propIndicator(), proposeFeasibleSolution(), propSOS1(), propSOS2(), pushPstack(), quadraticdataSort(), readBounds(), readCnf(), readCoefficients(), readConstraints(), readIndicators(), readLine(), readLinearCoefs(), readMps(), readNonlinearExprs(), readObjective(), readOPBFile(), readPolynomial(), readQMatrix(), readQuadraticCoefs(), readRows(), readSemicontinuous(), readSol(), readSOS(), readSos(), readSOScons(), readVariables(), readXMLSol(), recomputeGlbPseudoObjectiveValue(), recomputeLooseObjectiveValue(), recomputePseudoObjectiveValue(), reformEnsureChildrenMinCurvature(), reformMonomial(), reformNode2Var(), reformulate(), registerBranchingCandidates(), removeConstraintsDueToNegCliques(), removeDoubleAndSingletonsAndPerformDualpresolve(), removeFixedLinearVariables(), removeFixedNonlinearVariables(), removeFixedVariables(), removeRedundantConss(), removeRedundantConssAndNonzeros(), removeRedundantNonZeros(), replaceByLinearConstraints(), replaceViolatedByLinearConstraints(), resolveGenVBoundPropagation(), resolvePropagation(), resolvePropagationCoretimes(), respropCumulativeCondition(), roundMIRRow(), rowAddCoef(), rowCalcIdxsAndVals(), rowCalcNorms(), rowChgCoefPos(), rowDelCoefPos(), rowMerge(), rowScale(), rowSideChanged(), rowSortLP(), rowSortNonLP(), runHeuristic(), scaleFirstRow(), SCIP_DECL_BRANCHCOPY(), SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_CONFLICTEXEC(), SCIP_DECL_CONSACTIVE(), SCIP_DECL_CONSCHECK(), SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSDEACTIVE(), SCIP_DECL_CONSENABLE(), SCIP_DECL_CONSENFOLP(), SCIP_DECL_CONSENFOPS(), SCIP_DECL_CONSEXITPRE(), SCIP_DECL_CONSEXITSOL(), SCIP_DECL_CONSGETNVARS(), SCIP_DECL_CONSGETVARS(), SCIP_DECL_CONSHDLRCOPY(), SCIP_DECL_CONSINIT(), SCIP_DECL_CONSINITLP(), SCIP_DECL_CONSINITPRE(), SCIP_DECL_CONSINITSOL(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_CONSPRINT(), SCIP_DECL_CONSPROP(), SCIP_DECL_CONSRESPROP(), SCIP_DECL_CONSSEPALP(), SCIP_DECL_CONSSEPASOL(), SCIP_DECL_CONSTRANS(), SCIP_DECL_DIALOGCOPY(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_DISPCOPY(), SCIP_DECL_EVENTCOPY(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_EXPRCURV(), SCIP_DECL_EXPRGRAPHNODEREFORM(), SCIP_DECL_HASHKEYEQ(), SCIP_DECL_HEURCOPY(), SCIP_DECL_HEUREXEC(), SCIP_DECL_HEUREXIT(), SCIP_DECL_HEURINITSOL(), SCIP_DECL_NLPIADDCONSTRAINTS(), SCIP_DECL_NLPIADDVARS(), SCIP_DECL_NLPIDELCONSSET(), SCIP_DECL_NLPIDELVARSET(), SCIP_DECL_NLPISETOBJECTIVE(), SCIP_DECL_NLPISETSTRINGPAR(), SCIP_DECL_NODESELCOPY(), SCIP_DECL_NONLINCONSUPGD(), SCIP_DECL_PRESOLCOPY(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_PRESOLINIT(), SCIP_DECL_PRICERCOPY(), SCIP_DECL_PROBCOPY(), SCIP_DECL_PROPCOPY(), SCIP_DECL_PROPEXEC(), SCIP_DECL_PROPEXITPRE(), SCIP_DECL_PROPINITSOL(), SCIP_DECL_PROPPRESOL(), SCIP_DECL_PROPRESPROP(), SCIP_DECL_QUADCONSUPGD(), SCIP_DECL_READERCOPY(), SCIP_DECL_READERREAD(), SCIP_DECL_READERWRITE(), SCIP_DECL_RELAXCOPY(), SCIP_DECL_SEPACOPY(), SCIP_DECL_SEPAEXECLP(), SCIP_DECL_SEPAINITSOL(), SCIP_DECL_SOLVECUMULATIVE(), SCIP_DECL_VARCOPY(), SCIPactivatePricer(), SCIPactiveCons(), SCIPaddClique(), SCIPaddCoefLinear(), SCIPaddConflictBd(), SCIPaddConflictBinvar(), SCIPaddConflictLb(), SCIPaddConflictRelaxedBd(), SCIPaddConflictRelaxedLb(), SCIPaddConflictRelaxedUb(), SCIPaddConflictUb(), SCIPaddCons(), SCIPaddConsAge(), SCIPaddConsLocal(), SCIPaddConsLocks(), SCIPaddConsNode(), SCIPaddCurrentSol(), SCIPaddCut(), SCIPaddDelayedPoolCut(), SCIPaddExprtreesNonlinear(), SCIPaddExternBranchCand(), SCIPaddLinearCoefsToNlRow(), SCIPaddLinearCoefToNlRow(), SCIPaddNewRowCutpool(), SCIPaddNlRow(), SCIPaddObjoffset(), SCIPaddOrigObjoffset(), SCIPaddPoolCut(), SCIPaddPricedVar(), SCIPaddQuadElementsToNlRow(), SCIPaddQuadElementToNlRow(), SCIPaddQuadVarsToNlRow(), SCIPaddQuadVarToNlRow(), SCIPaddRowCutpool(), SCIPaddRowDive(), SCIPaddSol(), SCIPaddSolFree(), SCIPaddVar(), SCIPaddVarBranchFactor(), SCIPaddVarBranchPriority(), SCIPaddVarImplication(), SCIPaddVarLocks(), SCIPaddVarObj(), SCIPaddVarsToRow(), SCIPaddVarsToRowSameCoef(), SCIPaddVarToRow(), SCIPaddVarVlb(), SCIPaddVarVub(), SCIPadjustedVarLb(), SCIPadjustedVarUb(), SCIPadjustImplicitSolVals(), SCIPaggregateVars(), SCIPallColsInLP(), SCIPallVarsInProb(), SCIPanalyzeConflict(), SCIPanalyzeConflictCons(), SCIPanalyzeDeductionsProbing(), SCIPapplyHeurDualval(), SCIPapplyProbingVar(), SCIPapplyProximity(), SCIPapplyUndercover(), SCIPapplyZeroobj(), SCIPareSolsEqual(), SCIPbacktrackProbing(), SCIPbdchgidxIsEarlier(), SCIPboundchgApply(), SCIPbranchcandContainsExternCand(), SCIPbranchExtern(), SCIPbranchLP(), SCIPbranchPseudo(), SCIPbranchruleInit(), SCIPbranchVar(), SCIPbranchVarHole(), SCIPbranchVarVal(), SCIPbranchVarValNary(), SCIPbtnodeIsLeftchild(), SCIPbtnodeIsRightchild(), SCIPbtPrintGml(), SCIPbufferAllocMem(), SCIPcacheRowExtensions(), SCIPcalcChildEstimate(), SCIPcalcCliquePartition(), SCIPcalcIntegralScalar(), SCIPcalcMIR(), SCIPcalcNodeselPriority(), SCIPcalcRowIntegralScalar(), SCIPcalcStrongCG(), SCIPcaptureCons(), SCIPcaptureNlRow(), SCIPcaptureRow(), SCIPcaptureVar(), SCIPcatchEvent(), SCIPcatchRowEvent(), SCIPcatchVarEvent(), SCIPcheckCons(), SCIPcheckCurvatureQuadratic(), SCIPcheckSol(), SCIPcheckSolOrig(), SCIPchgChildPrio(), SCIPchgConsName(), SCIPchgCutoffboundDive(), SCIPchgNlRowConstant(), SCIPchgNlRowLhs(), SCIPchgNlRowLinearCoef(), SCIPchgNlRowQuadElement(), SCIPchgNlRowRhs(), SCIPchgRowLhs(), SCIPchgRowLhsDive(), SCIPchgRowRhs(), SCIPchgRowRhsDive(), SCIPchgVarBoundsDiveNLP(), SCIPchgVarBranchDirection(), SCIPchgVarBranchFactor(), SCIPchgVarBranchPriority(), SCIPchgVarLb(), SCIPchgVarLbDive(), SCIPchgVarLbGlobal(), SCIPchgVarLbLazy(), SCIPchgVarLbNode(), SCIPchgVarLbProbing(), SCIPchgVarName(), SCIPchgVarObj(), SCIPchgVarObjDive(), SCIPchgVarObjDiveNLP(), SCIPchgVarsBoundsDiveNLP(), SCIPchgVarType(), SCIPchgVarUb(), SCIPchgVarUbDive(), SCIPchgVarUbGlobal(), SCIPchgVarUbLazy(), SCIPchgVarUbNode(), SCIPchgVarUbProbing(), SCIPclearCuts(), SCIPclearExternBranchCands(), SCIPclearRelaxSolVals(), SCIPclearSol(), SCIPcliqueAddVar(), SCIPcliquelistCheck(), SCIPcliquelistsHaveCommonClique(), SCIPcliquetableAdd(), SCIPcliquetableCleanup(), SCIPclockEnable(), SCIPclockInit(), SCIPcolChgLb(), SCIPcolChgObj(), SCIPcolChgUb(), SCIPcolCreate(), SCIPcolGetStrongbranch(), SCIPcolGetStrongbranches(), SCIPcomputeLPRelIntPoint(), SCIPconflictAnalyze(), SCIPconflictAnalyzeStrongbranch(), SCIPconflictApplicable(), SCIPconflicthdlrCreate(), SCIPconflicthdlrInit(), SCIPconflictIsVarUsed(), SCIPconsActivate(), SCIPconsAddAge(), SCIPconsCreate(), SCIPconsDeactivate(), SCIPconsDelete(), SCIPconsDisable(), SCIPconsDisablePropagation(), SCIPconsDisableSeparation(), SCIPconsEnable(), SCIPconsEnablePropagation(), SCIPconsEnableSeparation(), SCIPconshdlrCreate(), SCIPconshdlrEnforceLPSol(), SCIPconshdlrEnforcePseudoSol(), SCIPconshdlrInit(), SCIPconshdlrPropagate(), SCIPconshdlrSeparateLP(), SCIPconshdlrSeparateSol(), SCIPconsMarkPropagate(), SCIPconsPushProp(), SCIPconsRelease(), SCIPconsResetAge(), SCIPconsResolvePropagation(), SCIPconstructLP(), SCIPconsUnmarkPropagate(), SCIPcontainsExternBranchCand(), SCIPconvertCutsToConss(), SCIPcopy(), SCIPcopyConsLinear(), SCIPcopyConss(), SCIPcopyCuts(), SCIPcopyImplicationsCliques(), SCIPcopyOrig(), SCIPcopyOrigConss(), SCIPcopyOrigProb(), SCIPcopyOrigVars(), SCIPcopyParamSettings(), SCIPcopyPlugins(), SCIPcopyProb(), SCIPcopyVars(), SCIPcount(), SCIPcreate(), SCIPcreateChild(), SCIPcreateCons(), SCIPcreateConsBasicAbspower(), SCIPcreateConsBasicAnd(), SCIPcreateConsBasicBivariate(), SCIPcreateConsBasicBounddisjunction(), SCIPcreateConsBasicConjunction(), SCIPcreateConsBasicCumulative(), SCIPcreateConsBasicDisjunction(), SCIPcreateConsBasicIndicator(), SCIPcreateConsBasicIndicatorLinCons(), SCIPcreateConsBasicKnapsack(), SCIPcreateConsBasicLinear(), SCIPcreateConsBasicLinking(), SCIPcreateConsBasicLogicor(), SCIPcreateConsBasicNonlinear(), SCIPcreateConsBasicNonlinear2(), SCIPcreateConsBasicOr(), SCIPcreateConsBasicOrbitope(), SCIPcreateConsBasicPseudoboolean(), SCIPcreateConsBasicQuadratic(), SCIPcreateConsBasicQuadratic2(), SCIPcreateConsBasicSetcover(), SCIPcreateConsBasicSetpack(), SCIPcreateConsBasicSetpart(), SCIPcreateConsBasicSOC(), SCIPcreateConsBasicSOS1(), SCIPcreateConsBasicSOS2(), SCIPcreateConsBasicSuperindicator(), SCIPcreateConsBasicVarbound(), SCIPcreateConsBasicXor(), SCIPcreateConsIndicator(), SCIPcreateConsIndicatorLinCons(), SCIPcreateConsLinear(), SCIPcreateConsNonlinear(), SCIPcreateConsPseudobooleanWithConss(), SCIPcreateConsQuadratic2(), SCIPcreateCurrentSol(), SCIPcreateCutpool(), SCIPcreateEmptyNlRow(), SCIPcreateEmptyRow(), SCIPcreateEmptyRowCons(), SCIPcreateEmptyRowSepa(), SCIPcreateEmptyRowUnspec(), SCIPcreateFiniteSolCopy(), SCIPcreateLPSol(), SCIPcreateNLPSol(), SCIPcreateNlRow(), SCIPcreateNlRowFromRow(), SCIPcreateOrigSol(), SCIPcreateProb(), SCIPcreateProbBasic(), SCIPcreatePseudoSol(), SCIPcreateRelaxSol(), SCIPcreateRootDialog(), SCIPcreateRow(), SCIPcreateRowCons(), SCIPcreateRowSepa(), SCIPcreateRowUnspec(), SCIPcreateSol(), SCIPcreateSolCopy(), SCIPcreateUnknownSol(), SCIPcreateVar(), SCIPcreateVarBasic(), SCIPcutGenerationHeuristicCmir(), SCIPcutoffNode(), SCIPcutpoolAddNewRow(), SCIPcutpoolSeparate(), SCIPdeactivatePricer(), SCIPdeactiveCons(), SCIPdelCons(), SCIPdelConsLocal(), SCIPdelConsNode(), SCIPdelDelayedPoolCut(), SCIPdelPoolCut(), SCIPdelRowCutpool(), SCIPdelVar(), SCIPdialogHasEntry(), SCIPdigraphPrintGml(), SCIPdisableCons(), SCIPdisableConsPropagation(), SCIPdisableConsSeparation(), SCIPdisableVarHistory(), SCIPdispAutoActivate(), SCIPdispInit(), SCIPdomchgApply(), SCIPdropEvent(), SCIPdropRowEvent(), SCIPdropVarEvent(), SCIPenableCons(), SCIPenableConsPropagation(), SCIPenableConsSeparation(), SCIPenableNLP(), SCIPenableVarHistory(), SCIPendDive(), SCIPendDiveNLP(), SCIPendProbing(), SCIPendStrongbranch(), SCIPenfolpCons(), SCIPenfopsCons(), SCIPevalExprtreeGlobalBounds(), SCIPevalExprtreeLocalBounds(), SCIPevalExprtreeSol(), SCIPeventfilterProcess(), SCIPeventhdlrInit(), SCIPeventqueueAdd(), SCIPeventqueueDelay(), SCIPexprAreEqual(), SCIPexprAreMonomialsEqual(), SCIPexprcurvMonomial(), SCIPexprgraphAddConst(), SCIPexprgraphAddExprtreeSum(), SCIPexprgraphAddNode(), SCIPexprgraphAddVars(), SCIPexprgraphAreAllNodeChildrenVars(), SCIPexprgraphCreate(), SCIPexprgraphDisableNode(), SCIPexprgraphEnableNode(), SCIPexprgraphFindConstNode(), SCIPexprgraphFindVarNode(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphHasNodeNonlinearAncestor(), SCIPexprgraphHasNodeSibling(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphPropagateVarBounds(), SCIPexprgraphSimplify(), SCIPexprgraphTightenNodeBounds(), SCIPexprHasParam(), SCIPexprintHessianSparsityDense(), SCIPexprSortMonomialFactors(), SCIPexprtreeRemoveFixedVars(), SCIPfileExists(), SCIPfindCons(), SCIPfindOrigCons(), SCIPfindVar(), SCIPfixParam(), SCIPfixVar(), SCIPfixVarProbing(), SCIPflattenVarAggregationGraph(), SCIPflushLP(), SCIPflushNLP(), SCIPflushRowExtensions(), SCIPfree(), SCIPfreeCutpool(), SCIPfreeParseVarsPolynomialData(), SCIPfreeProb(), SCIPfreeSol(), SCIPfreeSolve(), SCIPfreeTransform(), SCIPgetActiveVars(), SCIPgetAndDatasPseudoboolean(), SCIPgetAvgConflictlengthScore(), SCIPgetAvgConflictlengthScoreCurrentRun(), SCIPgetAvgConflictScore(), SCIPgetAvgConflictScoreCurrentRun(), SCIPgetAvgCutoffs(), SCIPgetAvgCutoffScore(), SCIPgetAvgCutoffScoreCurrentRun(), SCIPgetAvgCutoffsCurrentRun(), SCIPgetAvgDualbound(), SCIPgetAvgInferences(), SCIPgetAvgInferenceScore(), SCIPgetAvgInferenceScoreCurrentRun(), SCIPgetAvgInferencesCurrentRun(), SCIPgetAvgLowerbound(), SCIPgetAvgPseudocost(), SCIPgetAvgPseudocostCount(), SCIPgetAvgPseudocostCountCurrentRun(), SCIPgetAvgPseudocostCurrentRun(), SCIPgetAvgPseudocostScore(), SCIPgetAvgPseudocostScoreCurrentRun(), SCIPgetBestboundNode(), SCIPgetBestChild(), SCIPgetBestLeaf(), SCIPgetBestNode(), SCIPgetBestSibling(), SCIPgetBestSol(), SCIPgetBinvarRepresentative(), SCIPgetBinvarRepresentatives(), SCIPgetBranchingPoint(), SCIPgetBranchScore(), SCIPgetBranchScoreMultiple(), SCIPgetChildren(), SCIPgetCliques(), SCIPgetColFarkasCoef(), SCIPgetColRedcost(), SCIPgetConflictVarLb(), SCIPgetConflictVarUb(), SCIPgetConsCopy(), SCIPgetConsNVars(), SCIPgetConss(), SCIPgetConsVars(), SCIPgetCurrentNode(), SCIPgetCutEfficacy(), SCIPgetCutoffbound(), SCIPgetCutoffdepth(), SCIPgetCuts(), SCIPgetDelayedGlobalCutpool(), SCIPgetDelayedPoolCuts(), SCIPgetDepth(), SCIPgetDualbound(), SCIPgetDualboundRoot(), SCIPgetExprtreeTransformedVars(), SCIPgetExternBranchCands(), SCIPgetFirstLPDualboundRoot(), SCIPgetFirstLPLowerboundRoot(), SCIPgetFirstLPTime(), SCIPgetFixedVars(), SCIPgetFocusDepth(), SCIPgetGap(), SCIPgetGlobalCutpool(), SCIPgetGlobalPseudoObjval(), SCIPgetLastDivenode(), SCIPgetLeaves(), SCIPgetLocalDualbound(), SCIPgetLocalLowerbound(), SCIPgetLocalOrigEstimate(), SCIPgetLocalTransEstimate(), SCIPgetLowerbound(), SCIPgetLowerboundRoot(), SCIPgetLPBasisInd(), SCIPgetLPBInvACol(), SCIPgetLPBInvARow(), SCIPgetLPBInvCol(), SCIPgetLPBInvRow(), SCIPgetLPBranchCands(), SCIPgetLPCols(), SCIPgetLPColsData(), SCIPgetLPColumnObjval(), SCIPgetLPI(), SCIPgetLPLooseObjval(), SCIPgetLPObjval(), SCIPgetLPRootColumnObjval(), SCIPgetLPRootLooseObjval(), SCIPgetLPRootObjval(), SCIPgetLPRows(), SCIPgetLPRowsData(), SCIPgetLPSolstat(), SCIPgetMaxDepth(), SCIPgetMaxTotalDepth(), SCIPgetNActiveConss(), SCIPgetNBacktracks(), SCIPgetNBarrierLPIterations(), SCIPgetNBarrierLPs(), SCIPgetNBestSolsFound(), SCIPgetNBinVars(), SCIPgetNCheckConss(), SCIPgetNChildren(), SCIPgetNCliques(), SCIPgetNConflictConssApplied(), SCIPgetNConflictConssFound(), SCIPgetNConflictConssFoundNode(), SCIPgetNConss(), SCIPgetNContVars(), SCIPgetNCuts(), SCIPgetNCutsApplied(), SCIPgetNCutsFound(), SCIPgetNCutsFoundRound(), SCIPgetNDelayedPoolCuts(), SCIPgetNDivingLPIterations(), SCIPgetNDivingLPs(), SCIPgetNDualLPIterations(), SCIPgetNDualLPs(), SCIPgetNDualResolveLPIterations(), SCIPgetNDualResolveLPs(), SCIPgetNegatedVar(), SCIPgetNegatedVars(), SCIPgetNEnabledConss(), SCIPgetNExternBranchCands(), SCIPgetNFixedVars(), SCIPgetNImplications(), SCIPgetNImplVars(), SCIPgetNIntVars(), SCIPgetNLeaves(), SCIPgetNLimSolsFound(), SCIPgetNLPBranchCands(), SCIPgetNLPCols(), SCIPgetNLPFracVars(), SCIPgetNLPI(), SCIPgetNLPIntPar(), SCIPgetNLPIterations(), SCIPgetNLPNlRows(), SCIPgetNLPNlRowsData(), SCIPgetNLPObjval(), SCIPgetNLPRealPar(), SCIPgetNLPRows(), SCIPgetNLPs(), SCIPgetNLPSolstat(), SCIPgetNLPStatistics(), SCIPgetNLPStringPar(), SCIPgetNLPTermstat(), SCIPgetNLPVars(), SCIPgetNLPVarsData(), SCIPgetNLPVarsLbDualsol(), SCIPgetNLPVarsNonlinearity(), SCIPgetNLPVarsUbDualsol(), SCIPgetNlRowActivity(), SCIPgetNlRowActivityBounds(), SCIPgetNlRowFeasibility(), SCIPgetNlRowNLPActivity(), SCIPgetNlRowNLPFeasibility(), SCIPgetNlRowPseudoActivity(), SCIPgetNlRowPseudoFeasibility(), SCIPgetNlRowSolActivity(), SCIPgetNlRowSolFeasibility(), SCIPgetNNLPNlRows(), SCIPgetNNLPVars(), SCIPgetNNodeInitLPIterations(), SCIPgetNNodeInitLPs(), SCIPgetNNodeLPIterations(), SCIPgetNNodeLPs(), SCIPgetNNodes(), SCIPgetNNodesLeft(), SCIPgetNObjVars(), SCIPgetNodeDualbound(), SCIPgetNodeLowerbound(), SCIPgetNOrigBinVars(), SCIPgetNOrigConss(), SCIPgetNOrigContVars(), SCIPgetNOrigImplVars(), SCIPgetNOrigIntVars(), SCIPgetNOrigVars(), SCIPgetNPoolCuts(), SCIPgetNPriceRounds(), SCIPgetNPricevars(), SCIPgetNPricevarsApplied(), SCIPgetNPricevarsFound(), SCIPgetNPrimalLPIterations(), SCIPgetNPrimalLPs(), SCIPgetNPrimalResolveLPIterations(), SCIPgetNPrimalResolveLPs(), SCIPgetNPrioExternBranchBins(), SCIPgetNPrioExternBranchCands(), SCIPgetNPrioExternBranchConts(), SCIPgetNPrioExternBranchImpls(), SCIPgetNPrioExternBranchInts(), SCIPgetNPrioLPBranchCands(), SCIPgetNPrioPseudoBranchBins(), SCIPgetNPrioPseudoBranchCands(), SCIPgetNPrioPseudoBranchImpls(), SCIPgetNPrioPseudoBranchInts(), SCIPgetNPseudoBranchCands(), SCIPgetNResolveLPIterations(), SCIPgetNResolveLPs(), SCIPgetNRootFirstLPIterations(), SCIPgetNRootLPIterations(), SCIPgetNRootStrongbranchLPIterations(), SCIPgetNRootStrongbranchs(), SCIPgetNRuns(), SCIPgetNSepaRounds(), SCIPgetNSiblings(), SCIPgetNSols(), SCIPgetNSolsFound(), SCIPgetNStrongbranchLPIterations(), SCIPgetNStrongbranchs(), SCIPgetNTotalNodes(), SCIPgetNTotalVars(), SCIPgetNUpgrConss(), SCIPgetNVars(), SCIPgetObjlimit(), SCIPgetObjNorm(), SCIPgetObjsense(), SCIPgetOpenNodesData(), SCIPgetOrigConss(), SCIPgetOrigObjoffset(), SCIPgetOrigObjscale(), SCIPgetOrigVars(), SCIPgetOrigVarsData(), SCIPgetPlungeDepth(), SCIPgetPoolCuts(), SCIPgetPresolvingTime(), SCIPgetPrimalbound(), SCIPgetPrimalRayVal(), SCIPgetPrioChild(), SCIPgetPrioSibling(), SCIPgetProbData(), SCIPgetProbingDepth(), SCIPgetProbName(), SCIPgetProbvarLinearSum(), SCIPgetProbvarSum(), SCIPgetPseudoBranchCands(), SCIPgetPseudoObjval(), SCIPgetReadingTime(), SCIPgetRelaxFeastolFactor(), SCIPgetRelaxSolObj(), SCIPgetRelaxSolVal(), SCIPgetRepropdepth(), SCIPgetRootNode(), SCIPgetRowActivity(), SCIPgetRowFeasibility(), SCIPgetRowLPActivity(), SCIPgetRowLPFeasibility(), SCIPgetRowMaxActivity(), SCIPgetRowMaxCoef(), SCIPgetRowMinActivity(), SCIPgetRowMinCoef(), SCIPgetRowPseudoActivity(), SCIPgetRowPseudoFeasibility(), SCIPgetRowSolActivity(), SCIPgetRowSolFeasibility(), SCIPgetSiblings(), SCIPgetSolHeur(), SCIPgetSolNodenum(), SCIPgetSolOrigObj(), SCIPgetSolRunnum(), SCIPgetSols(), SCIPgetSolTime(), SCIPgetSolTransObj(), SCIPgetSolVal(), SCIPgetSolVals(), SCIPgetSolVarsData(), SCIPgetSolvingTime(), SCIPgetStatus(), SCIPgetSubscipDepth(), SCIPgetTransformedCons(), SCIPgetTransformedConss(), SCIPgetTransformedVar(), SCIPgetTransformedVars(), SCIPgetTransGap(), SCIPgetTransObjoffset(), SCIPgetTransObjscale(), SCIPgetUpperbound(), SCIPgetVarAvgConflictlength(), SCIPgetVarAvgConflictlengthCurrentRun(), SCIPgetVarAvgCutoffs(), SCIPgetVarAvgCutoffScore(), SCIPgetVarAvgCutoffScoreCurrentRun(), SCIPgetVarAvgCutoffsCurrentRun(), SCIPgetVarAvgInferenceCutoffScore(), SCIPgetVarAvgInferenceCutoffScoreCurrentRun(), SCIPgetVarAvgInferences(), SCIPgetVarAvgInferenceScore(), SCIPgetVarAvgInferenceScoreCurrentRun(), SCIPgetVarAvgInferencesCurrentRun(), SCIPgetVarClosestVlb(), SCIPgetVarClosestVub(), SCIPgetVarConflictlengthScore(), SCIPgetVarConflictlengthScoreCurrentRun(), SCIPgetVarConflictScore(), SCIPgetVarConflictScoreCurrentRun(), SCIPgetVarCopy(), SCIPgetVarLbDive(), SCIPgetVarNStrongbranchs(), SCIPgetVarObjDive(), SCIPgetVarPseudocost(), SCIPgetVarPseudocostCount(), SCIPgetVarPseudocostCountCurrentRun(), SCIPgetVarPseudocostCurrentRun(), SCIPgetVarPseudocostScore(), SCIPgetVarPseudocostScoreCurrentRun(), SCIPgetVarPseudocostVal(), SCIPgetVarPseudocostValCurrentRun(), SCIPgetVars(), SCIPgetVarsData(), SCIPgetVarSol(), SCIPgetVarSols(), SCIPgetVarsStrongbranchesFrac(), SCIPgetVarsStrongbranchesInt(), SCIPgetVarStrongbranchFrac(), SCIPgetVarStrongbranchInt(), SCIPgetVarStrongbranchLast(), SCIPgetVarStrongbranchLPAge(), SCIPgetVarStrongbranchNode(), SCIPgetVarStrongbranchWithPropagation(), SCIPgetVarUbDive(), SCIPgetVarVSIDS(), SCIPgetVarVSIDSCurrentRun(), SCIPhasCurrentNodeLP(), SCIPhashmapIsEmpty(), SCIPhasNLPContinuousNonlinearity(), SCIPhasNLPSolution(), SCIPhasPrimalRay(), SCIPhaveVarsCommonClique(), SCIPheurCreate(), SCIPheurInit(), SCIPheurShouldBeExecuted(), SCIPimplicsAdd(), SCIPincConsAge(), SCIPincludeBranchrule(), SCIPincludeBranchruleBasic(), SCIPincludeBranchruleFullstrong(), SCIPincludeBranchruleInference(), SCIPincludeBranchrulePscost(), SCIPincludeBranchruleRelpscost(), SCIPincludeConflicthdlr(), SCIPincludeConflicthdlrBasic(), SCIPincludeConshdlr(), SCIPincludeConshdlrAbspower(), SCIPincludeConshdlrAnd(), SCIPincludeConshdlrBasic(), SCIPincludeConshdlrBivariate(), SCIPincludeConshdlrBounddisjunction(), SCIPincludeConshdlrCountsols(), SCIPincludeConshdlrCumulative(), SCIPincludeConshdlrIndicator(), SCIPincludeConshdlrKnapsack(), SCIPincludeConshdlrLinear(), SCIPincludeConshdlrLogicor(), SCIPincludeConshdlrNonlinear(), SCIPincludeConshdlrPseudoboolean(), SCIPincludeConshdlrQuadratic(), SCIPincludeConshdlrSetppc(), SCIPincludeConshdlrSOC(), SCIPincludeConshdlrSOS1(), SCIPincludeConshdlrSuperindicator(), SCIPincludeConshdlrVarbound(), SCIPincludeConshdlrXor(), SCIPincludeDialogDefault(), SCIPincludeDialogDefaultFix(), SCIPincludeDialogDefaultSet(), SCIPincludeDisp(), SCIPincludeEventhdlr(), SCIPincludeEventhdlrBasic(), SCIPincludeExternalCodeInformation(), SCIPincludeHeur(), SCIPincludeHeurActconsdiving(), SCIPincludeHeurBasic(), SCIPincludeHeurClique(), SCIPincludeHeurCoefdiving(), SCIPincludeHeurCrossover(), SCIPincludeHeurDins(), SCIPincludeHeurDualval(), SCIPincludeHeurFeaspump(), SCIPincludeHeurFixandinfer(), SCIPincludeHeurFracdiving(), SCIPincludeHeurGuideddiving(), SCIPincludeHeurIntdiving(), SCIPincludeHeurLinesearchdiving(), SCIPincludeHeurLocalbranching(), SCIPincludeHeurMutation(), SCIPincludeHeurNlpdiving(), SCIPincludeHeurObjpscostdiving(), SCIPincludeHeurOctane(), SCIPincludeHeurOneopt(), SCIPincludeHeurProximity(), SCIPincludeHeurPscostdiving(), SCIPincludeHeurRandrounding(), SCIPincludeHeurRins(), SCIPincludeHeurRootsoldiving(), SCIPincludeHeurRounding(), SCIPincludeHeurShiftandpropagate(), SCIPincludeHeurSimplerounding(), SCIPincludeHeurSubNlp(), SCIPincludeHeurTwoopt(), SCIPincludeHeurUndercover(), SCIPincludeHeurVbounds(), SCIPincludeHeurVeclendiving(), SCIPincludeHeurZeroobj(), SCIPincludeHeurZirounding(), SCIPincludeLinconsUpgrade(), SCIPincludeNlpi(), SCIPincludeNodesel(), SCIPincludeNodeselBasic(), SCIPincludeNodeselBfs(), SCIPincludeNodeselEstimate(), SCIPincludeNodeselHybridestim(), SCIPincludeNodeselUct(), SCIPincludePresol(), SCIPincludePresolBasic(), SCIPincludePresolBoundshift(), SCIPincludePresolComponents(), SCIPincludePresolConvertinttobin(), SCIPincludePresolGateextraction(), SCIPincludePricer(), SCIPincludePricerBasic(), SCIPincludeProp(), SCIPincludePropBasic(), SCIPincludePropGenvbounds(), SCIPincludePropObbt(), SCIPincludePropProbing(), SCIPincludePropPseudoobj(), SCIPincludeReader(), SCIPincludeReaderBasic(), SCIPincludeReaderLp(), SCIPincludeReaderMps(), SCIPincludeReaderOpb(), SCIPincludeReaderZpl(), SCIPincludeRelax(), SCIPincludeRelaxBasic(), SCIPincludeSepa(), SCIPincludeSepaBasic(), SCIPincludeSepaCGMIP(), SCIPincludeSepaClique(), SCIPincludeSepaClosecuts(), SCIPincludeSepaCmir(), SCIPincludeSepaFlowcover(), SCIPincludeSepaGomory(), SCIPincludeSepaMcf(), SCIPincludeSepaOddcycle(), SCIPincludeSepaRapidlearning(), SCIPincludeSepaStrongcg(), SCIPincludeSepaZerohalf(), SCIPincSolVal(), SCIPinDive(), SCIPinferBinvarCons(), SCIPinferBinvarProp(), SCIPinferVarLbCons(), SCIPinferVarLbProp(), SCIPinferVarUbCons(), SCIPinferVarUbProp(), SCIPinitConflictAnalysis(), SCIPinitlpCons(), SCIPinitVarBranchStats(), SCIPinProbing(), SCIPinRepropagation(), SCIPinterruptSolve(), SCIPintervalIsSubsetEQ(), SCIPintervalPowerScalarInteger(), SCIPintervalPowerScalarIntegerInf(), SCIPintervalPowerScalarIntegerSup(), SCIPisConflictAnalysisApplicable(), SCIPisConflictVarUsed(), SCIPisCutApplicable(), SCIPisCutEfficacious(), SCIPisInRestart(), SCIPisIpoptAvailableIpopt(), SCIPisLinearLocalQuadratic(), SCIPisLPConstructed(), SCIPisLPRelax(), SCIPisLPSolBasic(), SCIPisNLPConstructed(), SCIPisNLPEnabled(), SCIPisObjIntegral(), SCIPisPresolveFinished(), SCIPisPrimalboundSol(), SCIPisRelaxSolValid(), SCIPisRootLPRelax(), SCIPisStopped(), SCIPisUpdateUnreliable(), SCIPisViolatedIndicator(), SCIPlinkCurrentSol(), SCIPlinkLPSol(), SCIPlinkNLPSol(), SCIPlinkPseudoSol(), SCIPlinkRelaxSol(), SCIPlockVarCons(), SCIPlpCalcMIR(), SCIPlpCalcStrongCG(), SCIPlpComputeRelIntPoint(), SCIPlpCreate(), SCIPlpEndDive(), SCIPlpFlush(), SCIPlpGetSol(), SCIPlpGetUnboundedSol(), SCIPlpiAddRows(), SCIPlpiClearState(), SCIPlpiCreate(), SCIPlpiGetIntpar(), SCIPlpiGetSolFeasibility(), SCIPlpiHasDualRay(), SCIPlpiHasPrimalRay(), SCIPlpiHasStateBasis(), SCIPlpiIgnoreInstability(), SCIPlpiIsInfinity(), SCIPlpiIsIterlimExc(), SCIPlpiIsObjlimExc(), SCIPlpiIsStable(), SCIPlpiIsTimelimExc(), SCIPlpiSetIntpar(), SCIPlpIsInfeasibilityProved(), SCIPlpiSolveBarrier(), SCIPlpiSolveDual(), SCIPlpiSolvePrimal(), SCIPlpiStrongbranch(), SCIPlpiStrongbranchesFrac(), SCIPlpiStrongbranchesInt(), SCIPlpiStrongbranchFrac(), SCIPlpiStrongbranchInt(), SCIPlpMarkDivingObjChanged(), SCIPlpMarkFlushed(), SCIPlpReset(), SCIPlpSolveAndEval(), SCIPlpStartDive(), SCIPlpStartProbing(), SCIPlpStartStrongbranch(), SCIPlpStartStrongbranchProbing(), SCIPlpUpdateVarLb(), SCIPlpUpdateVarLbGlobal(), SCIPlpUpdateVarObj(), SCIPlpUpdateVarUb(), SCIPlpUpdateVarUbGlobal(), SCIPmakeIndicatorFeasible(), SCIPmakeRowIntegral(), SCIPmarkColNotRemovableLocal(), SCIPmarkConsPropagate(), SCIPmarkDoNotMultaggrVar(), SCIPmarkRelaxSolInvalid(), SCIPmarkRelaxSolValid(), SCIPmarkRowNotRemovableLocal(), SCIPmultiaggregateVar(), SCIPnewProbingNode(), SCIPnlpCreate(), SCIPnlpFlush(), SCIPnlpHasContinuousNonlinearity(), SCIPnlpHasCurrentNodeNLP(), SCIPnlpiOracleAddConstraints(), SCIPnlpiOracleChgLinearCoefs(), SCIPnlpiOracleChgQuadCoefs(), SCIPnlpiOracleCreate(), SCIPnlpiOracleGetJacobianSparsity(), SCIPnlpiOraclePrintProblemGams(), SCIPnlpSetInitialGuess(), SCIPnlpStartDive(), SCIPnlrowCreate(), SCIPnlrowIsRedundant(), SCIPnodeCutoff(), SCIPnodeFocus(), SCIPnodePrintAncestorBranchings(), SCIPnodePropagateAgain(), SCIPnodePropagateImplics(), SCIPnodeselCreate(), SCIPnodeselInit(), SCIPparamSetBool(), SCIPparamSetChar(), SCIPparamSetInt(), SCIPparamSetLongint(), SCIPparamSetReal(), SCIPparamsetSet(), SCIPparamsetSetBool(), SCIPparamsetSetChar(), SCIPparamsetSetEmphasis(), SCIPparamsetSetInt(), SCIPparamsetSetLongint(), SCIPparamsetSetReal(), SCIPparamsetSetString(), SCIPparamSetString(), SCIPparamSetToDefault(), SCIPparseCons(), SCIPparseVar(), SCIPparseVarName(), SCIPparseVarsLinearsum(), SCIPparseVarsList(), SCIPparseVarsPolynomial(), SCIPpermuteProb(), SCIPpresolCons(), SCIPpresolCreate(), SCIPpresolInit(), SCIPpresolve(), SCIPpriceLoop(), SCIPpricerActivate(), SCIPpricerInit(), SCIPpricestoreStartInitialLP(), SCIPprimalAddOrigSol(), SCIPprimalAddOrigSolFree(), SCIPprimalAddSol(), SCIPprimalAddSolFree(), SCIPprimalTransformSol(), SCIPprimalTrySol(), SCIPprimalTrySolFree(), SCIPprintBestSol(), SCIPprintBestTransSol(), SCIPprintBranchingStatistics(), SCIPprintCons(), SCIPprintDisplayLine(), SCIPprintDualSol(), SCIPprintLPSolutionQuality(), SCIPprintNlRow(), SCIPprintOrigProblem(), SCIPprintRay(), SCIPprintRow(), SCIPprintSol(), SCIPprintStage(), SCIPprintStatistics(), SCIPprintStatus(), SCIPprintTransProblem(), SCIPprintTransSol(), SCIPprintVar(), SCIPprobCheckObjIntegral(), SCIPprobDelVar(), SCIPprobFree(), SCIPprobScaleObj(), SCIPprobSetObjIntegral(), SCIPprobTransform(), SCIPprobUpdateBestRootSol(), SCIPprocessShellArguments(), SCIPprofileFindLeft(), SCIPpropagateCutoffboundVar(), SCIPpropagateDomains(), SCIPpropagateProbing(), SCIPpropagateProbingImplications(), SCIPpropCons(), SCIPpropCreate(), SCIPpropInit(), SCIPpropResolvePropagation(), SCIPquadelemSortedFind(), SCIPreadProb(), SCIPreadSol(), SCIPrealToRational(), SCIPrecalcNlRowActivity(), SCIPrecalcNlRowNLPActivity(), SCIPrecalcNlRowPseudoActivity(), SCIPrecalcRowActivity(), SCIPrecalcRowLPActivity(), SCIPrecalcRowPseudoActivity(), SCIPrelaxationCreate(), SCIPrelaxInit(), SCIPreleaseCons(), SCIPreleaseNlRow(), SCIPreleaseRow(), SCIPreleaseVar(), SCIPremoveInefficaciousCuts(), SCIPrepropagateNode(), SCIPresetConsAge(), SCIPresolveSolHeurSubNlp(), SCIPrespropCons(), SCIPrespropCumulativeCondition(), SCIPrestartSolve(), SCIPretransformObj(), SCIPretransformSol(), SCIProundSol(), SCIProwCalcIntegralScalar(), SCIProwCreate(), SCIProwDelaySort(), SCIProwGetDiscreteScalarProduct(), SCIProwGetScalarProduct(), SCIProwIsRedundant(), SCIPscaleVarBranchFactor(), SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), SCIPsepaCreate(), SCIPsepaInit(), SCIPsepalpCons(), SCIPseparateCutpool(), SCIPseparateKnapsackCuts(), SCIPseparateRelaxedKnapsack(), SCIPseparateSol(), SCIPseparateSolCutpool(), SCIPsepasolCons(), SCIPsepastoreApplyCuts(), SCIPsepastoreStartForceCuts(), SCIPsepastoreStartInitialLP(), SCIPsetBasePointClosecuts(), SCIPsetBranchruleCopy(), SCIPsetBranchruleExecExt(), SCIPsetBranchruleExecLp(), SCIPsetBranchruleExecPs(), SCIPsetBranchruleExit(), SCIPsetBranchruleExitsol(), SCIPsetBranchruleFree(), SCIPsetBranchruleInit(), SCIPsetBranchruleInitsol(), SCIPsetChgBoolParam(), SCIPsetChgCharParam(), SCIPsetChgIntParam(), SCIPsetChgLongintParam(), SCIPsetChgRealParam(), SCIPsetChgStringParam(), SCIPsetConflicthdlrCopy(), SCIPsetConflicthdlrExit(), SCIPsetConflicthdlrExitsol(), SCIPsetConflicthdlrFree(), SCIPsetConflicthdlrInit(), SCIPsetConflicthdlrInitsol(), SCIPsetConsChecked(), SCIPsetConsDynamic(), SCIPsetConsEnforced(), SCIPsetConshdlrActive(), SCIPsetConshdlrCopy(), SCIPsetConshdlrDeactive(), SCIPsetConshdlrDelete(), SCIPsetConshdlrDelvars(), SCIPsetConshdlrDisable(), SCIPsetConshdlrEnable(), SCIPsetConshdlrExit(), SCIPsetConshdlrExitpre(), SCIPsetConshdlrExitsol(), SCIPsetConshdlrFree(), SCIPsetConshdlrGetNVars(), SCIPsetConshdlrGetVars(), SCIPsetConshdlrInit(), SCIPsetConshdlrInitlp(), SCIPsetConshdlrInitpre(), SCIPsetConshdlrInitsol(), SCIPsetConshdlrParse(), SCIPsetConshdlrPresol(), SCIPsetConshdlrPrint(), SCIPsetConshdlrProp(), SCIPsetConshdlrResprop(), SCIPsetConshdlrSepa(), SCIPsetConshdlrTrans(), SCIPsetConsInitial(), SCIPsetConsLocal(), SCIPsetConsModifiable(), SCIPsetConsPropagated(), SCIPsetConsRemovable(), SCIPsetConsSeparated(), SCIPsetConsStickingAtNode(), SCIPsetCopyPlugins(), SCIPsetCreate(), SCIPsetEventhdlrCopy(), SCIPsetEventhdlrDelete(), SCIPsetEventhdlrExit(), SCIPsetEventhdlrExitsol(), SCIPsetEventhdlrFree(), SCIPsetEventhdlrInit(), SCIPsetEventhdlrInitsol(), SCIPsetExistsDialog(), SCIPsetExprtreesNonlinear(), SCIPsetHeurCopy(), SCIPsetHeurExit(), SCIPsetHeurExitsol(), SCIPsetHeurFree(), SCIPsetHeurInit(), SCIPsetHeurInitsol(), SCIPsetLinearConsIndicator(), SCIPsetMessagehdlr(), SCIPsetNLPInitialGuess(), SCIPsetNLPInitialGuessSol(), SCIPsetNLPIntPar(), SCIPsetNLPRealPar(), SCIPsetNLPStringPar(), SCIPsetNlRowExprtree(), SCIPsetNlRowExprtreeParam(), SCIPsetNlRowExprtreeParams(), SCIPsetNodeselCopy(), SCIPsetNodeselExit(), SCIPsetNodeselExitsol(), SCIPsetNodeselFree(), SCIPsetNodeselInit(), SCIPsetNodeselInitsol(), SCIPsetObjIntegral(), SCIPsetObjlimit(), SCIPsetObjsense(), SCIPsetParamsCountsols(), SCIPsetPresolCopy(), SCIPsetPresolExit(), SCIPsetPresolExitpre(), SCIPsetPresolFree(), SCIPsetPresolInit(), SCIPsetPresolInitpre(), SCIPsetPricerCopy(), SCIPsetPricerExit(), SCIPsetPricerExitsol(), SCIPsetPricerFree(), SCIPsetPricerInit(), SCIPsetPricerInitsol(), SCIPsetProbCopy(), SCIPsetProbData(), SCIPsetProbDelorig(), SCIPsetProbDeltrans(), SCIPsetProbExitsol(), SCIPsetProbInitsol(), SCIPsetProbName(), SCIPsetProbTrans(), SCIPsetPropCopy(), SCIPsetPropExit(), SCIPsetPropExitpre(), SCIPsetPropExitsol(), SCIPsetPropFree(), SCIPsetPropInit(), SCIPsetPropInitpre(), SCIPsetPropInitsol(), SCIPsetPropPresol(), SCIPsetPropResprop(), SCIPsetReaderCopy(), SCIPsetReaderFree(), SCIPsetReaderRead(), SCIPsetReaderWrite(), SCIPsetRelaxCopy(), SCIPsetRelaxExit(), SCIPsetRelaxExitsol(), SCIPsetRelaxFree(), SCIPsetRelaxInit(), SCIPsetRelaxInitsol(), SCIPsetRelaxSolVal(), SCIPsetRelaxSolVals(), SCIPsetRelaxSolValsSol(), SCIPsetSepaCopy(), SCIPsetSepaExit(), SCIPsetSepaExitsol(), SCIPsetSepaFree(), SCIPsetSepaInit(), SCIPsetSepaInitsol(), SCIPsetSetFeastol(), SCIPsetSetLimitChanged(), SCIPsetSetLpfeastol(), SCIPsetSolVal(), SCIPsetSolVals(), SCIPsetSortBranchrules(), SCIPsetSortBranchrulesName(), SCIPsetSortConflicthdlrs(), SCIPsetSortConflicthdlrsName(), SCIPsetSortHeurs(), SCIPsetSortHeursName(), SCIPsetSortNlpis(), SCIPsetSortPresols(), SCIPsetSortPresolsName(), SCIPsetSortPricers(), SCIPsetSortPricersName(), SCIPsetSortProps(), SCIPsetSortPropsName(), SCIPsetSortPropsPresol(), SCIPsetSortRelaxs(), SCIPsetSortRelaxsName(), SCIPsetSortSepas(), SCIPsetSortSepasName(), SCIPshrinkDisjunctiveVarSet(), SCIPsolAdjustImplicitSolVals(), SCIPsolCheck(), SCIPsolClear(), SCIPsolCreate(), SCIPsolCreateOriginal(), SCIPsolCreateUnknown(), SCIPsolLinkLPSol(), SCIPsolLinkNLPSol(), SCIPsolLinkPseudoSol(), SCIPsolLinkRelaxSol(), SCIPsolRetransform(), SCIPsolsAreEqual(), SCIPsolSetUnknown(), SCIPsolve(), SCIPsolveCIP(), SCIPsolveCumulative(), SCIPsolveDiveLP(), SCIPsolveDiveNLP(), SCIPsolveIsStopped(), SCIPsolveKnapsackExactly(), SCIPsolveNLP(), SCIPsolveProbingLP(), SCIPsolveProbingLPWithPricing(), SCIPsparseSolGetNextSol(), SCIPstartDive(), SCIPstartDiveNLP(), SCIPstartInteraction(), SCIPstartProbing(), SCIPstartSolvingTime(), SCIPstartStrongbranch(), SCIPstatCreate(), SCIPstatEnableVarHistory(), SCIPstatUpdateMemsaveMode(), SCIPstopSolvingTime(), SCIPstrToIntValue(), SCIPstrToRealValue(), SCIPsumLPRows(), SCIPtightenVarLb(), SCIPtightenVarLbGlobal(), SCIPtightenVarUb(), SCIPtightenVarUbGlobal(), SCIPtransformCons(), SCIPtransformConss(), SCIPtransformMinUC(), SCIPtransformObj(), SCIPtransformProb(), SCIPtransformVar(), SCIPtransformVars(), SCIPtreeCreate(), SCIPtreeCutoff(), SCIPtreeEndProbing(), SCIPtreeLoadLP(), SCIPtreeLoadLPState(), SCIPtreeMarkProbingNodeHasLP(), SCIPtryCurrentSol(), SCIPtrySol(), SCIPtrySolFree(), SCIPunlinkSol(), SCIPunlockVarCons(), SCIPunmarkConsPropagate(), SCIPupdateConsFlags(), SCIPupdateCutoffbound(), SCIPupdateLocalDualbound(), SCIPupdateLocalLowerbound(), SCIPupdateNodeDualbound(), SCIPupdateNodeLowerbound(), SCIPupdateVarBranchPriority(), SCIPupdateVarPseudocost(), SCIPupgradeConsLinear(), SCIPvarAddImplic(), SCIPvarAddLocks(), SCIPvarAddVlb(), SCIPvarAddVub(), SCIPvarAggregate(), SCIPvarFix(), SCIPvarFixBinary(), SCIPvarFlattenAggregationGraph(), SCIPvarGetActiveRepresentatives(), SCIPvarGetImplRedcost(), SCIPvarGetMultaggrLbGlobal(), SCIPvarGetMultaggrLbLocal(), SCIPvarGetMultaggrUbGlobal(), SCIPvarGetMultaggrUbLocal(), SCIPvarGetProbvar(), SCIPvarGetProbvarBinary(), SCIPvarGetRedcost(), SCIPvarMarkDeletable(), SCIPvarMarkDeleted(), SCIPvarMarkDoNotMultaggr(), SCIPvarMultiaggregate(), SCIPvarParseTransformed(), SCIPvarRemove(), SCIPvarTryAggregateVars(), SCIPvarWasFixedEarlier(), SCIPvboundsAdd(), SCIPvisualizeConsCumulative(), SCIPwriteCliqueGraph(), SCIPwriteGms(), SCIPwriteImplicationConflictGraph(), SCIPwriteLp(), SCIPwriteLP(), SCIPwriteMIP(), SCIPwriteNLP(), SCIPwriteOrigProblem(), SCIPwritePip(), SCIPwritePpm(), SCIPwriteTransProblem(), SCIPwriteVarName(), SCIPwriteVarsLinearsum(), SCIPwriteVarsList(), SCIPwriteVarsPolynomial(), selectSolsRandomized(), separateByAuxGraph(), separateByGaussHeuristics(), separateBySolvingAuxIP(), separateCons(), separateConsBinaryRepresentation(), separateConsOnIntegerVariables(), separateCoverCutsCons(), separateCuts(), separateGLS(), separateHeur(), separateIISRounding(), separateIndicators(), separatePoint(), separateSCIs(), separateSequLiftedExtendedWeightInequality(), separateSequLiftedMinimalCoverInequality(), separateSupLiftedMinimalCoverInequality(), separationRoundLP(), separationRoundResolveLP(), separationRoundSol(), sepastoreApplyLb(), sepastoreApplyUb(), sepastoreIsBdchgApplicable(), sepastoreIsCutRedundant(), sepastoreIsCutRedundantOrInfeasible(), setFastmipClpParameters(), setObjective(), setSetppcType(), setupProbingSCIP(), setupSCIPparamsFP2(), setupSCIPparamsStage3(), setupSubproblem(), shiftValues(), shortenConss(), simplifyInequalities(), singletonColumnStuffing(), solHasNewSource(), solIncArrayVal(), solOfInterest(), solSetArrayVal(), solveCoveringProblem(), solveDerivativeEquation(), solveIndependentCons(), solveLp(), solveLP(), solveNode(), solveNodeInitialLP(), solveNodeLP(), solveNodeRelax(), solveProbingLP(), solveSubMIP(), solveSubNLP(), solveSubproblem(), solveSubscip(), SolveWSimplex(), sortGenVBounds(), sortItems(), SORTTPL_NAME(), sortVariables(), spxSolve(), storeMod2Data(), storeSolution(), strengthVarbaounds(), subscipSetParams(), substituteMIRRow(), substituteStrongCGRow(), sumMIRRow(), sumStrongCGRow(), syntaxError(), TCLIQUE_ISEDGE(), TCLIQUE_NEWSOL(), tcliqueAddEdge(), tcliqueAddNode(), tcliqueColoring(), tcliqueCreate(), tcliqueEnsureSizeCachedEdges(), tcliqueEnsureSizeEdges(), tcliqueEnsureSizeNodes(), tcliqueFlush(), tcliquegraphAddImplics(), tcliqueLoadFile(), tcliqueSaveFile(), termIsConstant(), tightenBoundDive(), tightenBounds(), tightenCoefs(), tightenedIntvar(), tightenLbTTEF(), tightenSides(), tightenUbTTEF(), tightenVarBounds(), tightenVarBoundsEasy(), tightenVarLb(), tightenVarUb(), tightenWeights(), tightenWeightsLift(), transformMIRRow(), transformStrongCGRow(), transformToOrig(), transformVariable(), transitiveClosure(), treeBacktrackProbing(), treeCreateProbingNode(), treeFindSwitchForks(), tryAggregateIntVars(), tryUpgrading(), tryUpgradingLogicor(), tryUpgradingSetppc(), tryUpgradingXor(), undoBdchgsDualfarkas(), undoBdchgsDualsol(), undoBdchgsProof(), unlockQuadraticVariable(), unlockRounding(), unlockRoundingAndCons(), updateBestCandidate(), updateConsanddataUses(), updateDualBounds(), updateLazyBounds(), updateVariableDegrees(), upgradeCons(), upgradeIndicatorSuperindicator(), upgradeLinearSuperindicator(), useValuehistory(), varAddImplic(), varAddTransitiveBinaryClosureImplic(), varAddTransitiveImplic(), varGetActiveVar(), varMayRoundDown(), varMayRoundUp(), varParse(), varProcessChgLbGlobal(), varProcessChgUbGlobal(), varRemoveImplicsVbs(), varUpdateAggregationBounds(), vboundsSearchPos(), writeExpandedSolutions(), writeFzn(), writeOpbConstraints(), writeOpbObjective(), writeOpbRelevantAnds(), writeProblem(), xmlParse(), xmlProcess(), and ZerohalfCutDataCreate().

#define FALSE   0

boolean value FALSE

Definition at line 52 of file def.h.

Referenced by addAltLPConstraint(), addAltLPRow(), addBilinearTerm(), addBilinLinearization(), addBilinMcCormick(), addBoundViolated(), addCand(), addCliques(), addCoef(), addCoefTerm(), addConcaveEstimatorBivariate(), addConcaveEstimatorMultivariate(), addConcaveEstimatorUnivariate(), addConflictBinvar(), addConflictBounds(), addCurrentSolution(), addCut(), addCuts(), addExtendedAsymmetricFormulation(), addExtendedFlowFormulation(), addExtraCliques(), addFixParamDialog(), addGLSBinImpls(), addGLSCliques(), addIntervalGradientEstimator(), addLinearCoef(), addLinearConstraints(), addLinearization(), addLinearizationCuts(), addLocalBranchingConstraint(), addNegatedCliques(), addNextLevelBinImpls(), addNextLevelCliques(), addObjCutoff(), addQuadVarTerm(), addRelaxation(), addRow(), addSetParamDialog(), addSquareLinearization(), addSquareSecant(), addVarbound(), adjustCutoffbound(), adjustOversizedJobBounds(), aggregateConstraints(), aggregateVariables(), aggregation(), allRowsInLP(), analyzeConflictLowerbound(), analyzeConflictUpperbound(), analyzeEnergyRequirement(), analyzeZeroResultant(), appendVarSOS1(), appendVarSOS2(), applyBoundChgs(), applyCliqueFixings(), applyFixings(), applyGenVBound(), applyGlobalBounds(), applyImplic(), applyObbt(), applyProbing(), applyProbingVar(), applyVbounds(), applyVboundsFixings(), bdchginfoIsInvalid(), boundchgApplyGlobal(), branch(), calcColActivity(), calcNonZeros(), calcPscostQuot(), calcShiftVal(), calcVarBoundsDominated(), calcVarBoundsDominating(), canTightenBounds(), catchEvent(), catchLhsVarEvents(), catchLinearVarEvents(), catchRhsVarEvents(), catchVarEvents(), checkAltLPInfeasible(), checkAndConss(), checkArraySizesGLS(), checkArraySizesHeur(), checkBlocking(), checkBounddisjunction(), checkCons(), checkConsnames(), checkConstraintMatching(), checkCumulativeCondition(), checkCurvature(), checkCurvatureEasy(), checkDemands(), checkEqualObjective(), checkFeasSubtree(), checkFixedVariables(), checkForOverlapping(), checkIISlocal(), checkImplics(), checkKnapsack(), checkLazyColArray(), checkLogicor(), checkLPBoundsClean(), checkMinweightidx(), checkOrigPbCons(), checkOverloadViaThetaTree(), checkParallelObjective(), checkParameters(), checkRedundancy(), checkRedundancySide(), checkSolOrig(), checkSolution(), checkSolutionOrig(), checkSolveKnapsack(), checkSystemGF2(), checkVarbound(), chgCoefPos(), chgLhs(), chgLinearCoefPos(), chgRhs(), chooseCoefVar(), chooseDoubleVar(), chooseFracVar(), chooseGuidedVar(), choosePscostVar(), cleanCycle(), cleanupHashDatas(), cleanupMIRRow(), cliqueCreateWithData(), cliquePresolve(), coefChanged(), colAddCoef(), collectMaxactVar(), collectMinactImplicVars(), collectMinactVar(), collectSolution(), colMoveCoef(), colSwapCoefs(), colUpdateAddLP(), colUpdateDelLP(), compSubcliques(), computeAndConstraintInfos(), computeConsAndDataChanges(), computeCut(), computeFixingOrder(), computeFixingrate(), computeViolation(), conflictAddConflictCons(), conflictAddConflictset(), conflictAnalyze(), conflictAnalyzeBoundexceedingLP(), conflictAnalyzeInfeasibleLP(), conflictAnalyzeLP(), conflictAnalyzeRemainingBdchgs(), conflictCreateReconvergenceConss(), conflictMarkBoundCheckPresence(), conflictResolveBound(), conflictsetAddBounds(), conflictsetIsRedundant(), consCapacityConstraintsFinder(), consCheckRedundancy(), consdataAddExprtrees(), consdataCalcActivities(), consdataChgWeight(), consdataCollectLinkingCons(), consdataCreate(), consdataCreateBinvars(), consdataCreateEmpty(), consdataDeletePos(), consdataFixResultantZero(), consdataFreeRows(), consdataGetActivity(), consdataGetActivityBounds(), consdataGetActivityResiduals(), consdataInvalidateActivities(), consdataIsResidualIntegral(), consdataLinearize(), consdataMoveLinearVar(), consdataMoveQuadVarTerm(), consdataPrint(), consdataSetExprtrees(), consdataSort(), consdataTightenCoefs(), consdataUpdateActivities(), consdataUpdateActivitiesLb(), consdataUpdateActivitiesUb(), consdataUpdateChgCoef(), consdataUpdateDelCoef(), consFixInteger(), conshdlrAddPropcons(), conshdlrdataCreate(), conshdlrdataFree(), conshdlrdataHasUpgrade(), conshdlrDeactivateCons(), conshdlrDisableCons(), conshdlrDisableConsPropagation(), conshdlrDisableConsSeparation(), conshdlrMarkConsUseful(), conshdlrProcessUpdates(), conshdlrUnmarkConsPropagate(), constructSNFRelaxation(), convertLongEquality(), copyAndSolveComponent(), copyConsPseudoboolean(), copyCuts(), correctConshdlrdata(), correctLocksAndCaptures(), costCalculation(), CREATE_CONSTRAINT(), createAndAddAndCons(), createAndAddLinearCons(), createCapacityRestriction(), createCapacityRestrictionIntvars(), createCGCutCMIR(), createCGCutDirect(), createCGCuts(), createCGCutStrongCG(), createConflict(), createConsFromMonomial(), createCountDialog(), createCoveringProblem(), createCumulativeCons(), createDisjuctiveCons(), createExprtreeFromMonomial(), createIndicatorConstraint(), createLinearCons(), createNewSol(), createNewSols(), createNlRow(), createObjRow(), createPrecedenceCons(), createQuadraticCons(), createRelaxation(), createRows(), createSubproblem(), createSubSCIP(), createSubscip(), createVarUbs(), createZerohalfCutFromZerohalfWeightvector(), cutGenerationHeuristic(), CUTOFF_CONSTRAINT(), cutpoolDelCut(), decomposeProblem(), delCoefPos(), deleteAltLPConstraint(), deleteCliqueDataEntry(), deleteCommodity(), delLinearCoefPos(), delQuadVarTermPos(), depthFirstSearch(), detectImpliedBounds(), detectRedundantConstraints(), detectRedundantVars(), determineBound(), dfs(), dialogExecMenu(), dijkstraHeapIsValid(), displayRelevantStats(), doComment(), domAddHole(), dualBoundStrengthening(), dualPresolve(), dualPresolving(), dualWeightsTightening(), enforceConstraints(), enforceCuts(), enforceIndicators(), enforcePseudo(), enforceSolution(), enforceViolatedFixedNonlinear(), equalTokens(), evaluateCutNumerics(), eventfilterProcessUpdates(), execGenVBounds(), execRelpscost(), exprConvertToPolynomial(), exprgraphAddExpr(), exprgraphFindConstNodePos(), exprgraphNodeAddChildren(), exprgraphNodeIsParent(), exprgraphNodeRemovePolynomialDuplicateChildren(), exprgraphNodeReplaceChild(), exprgraphNodeSimplify(), exprgraphPrintNodeDot(), exprgraphUpdateVarNodeBounds(), exprIsNonSmooth(), exprsimplifyAddChildren(), exprsimplifyFlattenPolynomials(), exprsimplifyRemoveDuplicatePolynomialChildren(), exprsimplifySeparateLinearFromPolynomial(), exprUnconvertPolynomial(), extendToCover(), extractCliques(), extractFlowRows(), extractLinearValues(), extractNodes(), fileExists(), fillDigraph(), findAggregation(), findCumulativeConss(), findDominancePairs(), findFixings(), findNewBounds(), findShortestPathToRoot(), findUnblockedShortestPathToRoot(), fixAdditionalVars(), fixAndPropagate(), fixDeleteOrUpgradeCons(), fixIntegerVariableLb(), fixIntegerVariableUb(), fixTriangle(), fixVariables(), fixVariableZeroNode(), flipCoords(), focusnodeCleanupVars(), focusnodeToFork(), focusnodeToPseudofork(), forbidCover(), forbidFixation(), freeSolve(), freeTransform(), fromCommandLine(), fullDualPresolve(), generate1ConvexIndefiniteUnderestimator(), generate1ConvexIndefiniteUnderestimatorAtBoundary(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternA(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternB(), generateClusterCuts(), generateConvexConcaveEstimator(), generateConvexConcaveUnderestimator(), generateCut(), generateCutFactorable(), generateCutFactorableDo(), generateCutLTI(), generateCutLTIcomputeCoefs(), generateCutLTIfindIntersection(), generateCutLTIgenMulCoeff(), generateCutPoint(), generateCutProjectedPoint(), generateCutSol(), generateCutUnboundedLP(), generateEstimatingHyperplane(), generateLinearizationCut(), generateOddCycleCut(), generateOrthogonal_lx_ly_Underestimator(), generateOrthogonal_lx_uy_Underestimator(), generateOverestimatingHyperplaneCut(), generateRowSOS1(), generateRowSOS2(), generateSecantCut(), generateSecantCutNoCheck(), generateUnderestimatorParallelYFacets(), getActivityResidualsLowerBound(), getActivityResidualsUpperBound(), getBase(), getBestCandidate(), getClosestVlb(), getClosestVub(), getConflictImplics(), getConstraint(), getCover(), getFeasibleSet(), getFixedVariable(), getFixingValue(), getFlowCover(), getFlowrowFit(), getGradientMaxElement(), getLiftingSequenceGUB(), getMaxactImplicObjchg(), getMaxActivity(), getMaxAndConsDim(), getMinactImplicObjchg(), getMinActivity(), getNCountedSols(), getNextFlowrow(), getNextLine(), getNextToken(), getNodeSimilarityScore(), getOptimalShiftingValue(), getRelevantRows(), getVariable(), getVariableOrTerm(), GUBsetCheck(), hashtablelistRemove(), hashtableResize(), hasMatrixMax2EntriesPerRow(), hessLagAddExprtree(), heurdataReset(), impliesVlbPrecedenceCondition(), inCliquehash(), includeConshdlrCountsols(), inferVariableZero(), initAlternativeLP(), initBounds(), initConshdlrData(), initializeCandsLists(), initLP(), initMatrix(), initSolve(), insertColChgcols(), insertSortedRootNeighbors(), insertZerolist(), invalidateSolution(), isBoolExp(), isChar(), isConsIndependently(), isConvexLocal(), isDelimChar(), isEndingSoftConstraintWeight(), isEndLine(), isGAMSprintableSOC(), isIdentifier(), isIntegralScalar(), isLbBetter(), isNeighbor(), isNewSection(), isPseudocostUpdateValid(), isSense(), isSign(), isStartingSoftConstraintWeight(), isTokenChar(), isUbBetter(), isValue(), isValueChar(), isZero(), liftCliqueVariables(), lifting(), liftOddCycleCut(), lockRounding(), lpAlgorithm(), lpBarrier(), lpDelColset(), lpDelRowset(), lpDualSimplex(), lpFlushAddCols(), lpFlushAddRows(), lpFlushChgCols(), lpFlushChgRows(), lpFlushDelCols(), lpFlushDelRows(), lpiStrongbranch(), lpiStrongbranches(), lpLexDualSimplex(), lpPrimalSimplex(), lpRestoreSolVals(), lpSetBarrierconvtol(), lpSetConditionLimit(), lpSetDualfeastol(), lpSetFastmip(), lpSetFeastol(), lpSetFromscratch(), lpSetIntpar(), lpSetIterationLimit(), lpSetPresolving(), lpSetRealpar(), lpSetRowrepswitch(), lpSetScaling(), lpSetThreads(), lpSetUobjlim(), lpSolve(), lpSolveStable(), lpUpdateObjval(), lpUpdateVarColumn(), lpUpdateVarLoose(), markColDeleted(), markRelaxsUnsolved(), maximalslack(), mcfnetworkExtract(), mcfnetworkFill(), mergeMultiples(), moveNodeToLambda(), mpsinputCreate(), mpsinputReadLine(), newsolCliqueAddRow(), newSolution(), nlpFlushVarAdditions(), nlpUpdateObjCoef(), nlrowAddLinearCoef(), nlrowAddQuadElement(), nlrowDelLinearCoefPos(), nlrowDelQuadElemPos(), nlrowMoveLinearCoef(), nlrowMoveQuadElement(), nlrowRemoveFixedLinearCoefPos(), nlrowRemoveFixedQuadVars(), nodeCreate(), nodeDeactivate(), nodeInPartition(), nodepairqueueCreate(), nodepartitionIsConnected(), nodepqDelPos(), nodeReleaseParent(), nodeRepropagate(), nodesHaveCommonClique(), normalizeCons(), normalizeDemands(), objimplicsCreate(), optimize(), origsolOfInterest(), paramCheckBool(), paramCreate(), paramParseBool(), paramsetParse(), paramsetSetPresolvingFast(), parseArray(), parseArrayIndex(), parseArrayType(), parseBoolValue(), parseConstraint(), parseName(), parseType(), performFixing(), performRandRounding(), performSimpleRounding(), performStrongbranchWithPropagation(), performVarDeletions(), polishSolution(), polynomialdataApplyChildmap(), polynomialdataExpandMonomialFactor(), polynomialdataMergeMonomials(), polynomialdataMultiplyByMonomial(), polynomialdataMultiplyByPolynomial(), popPstack(), prepareCons(), preprocess(), preprocessCliques(), preprocessColumns(), preprocessConstraintPairs(), preprocessModGaussElim(), preprocessRows(), preprocessTrivialZerohalfCuts(), presoldataInit(), presoldataInitHashtables(), presolRoundIndicator(), presolRoundSOS1(), presolRoundSOS2(), presolve(), presolveConsEffectiveHorizon(), presolveConsEst(), presolveConsLct(), presolveCreateGlineurApproxDim3(), presolveCreateOuterApprox(), presolveDisaggregate(), presolveFindDuplicates(), presolveFindDuplicatesSolveEquations(), presolvePropagateCons(), presolveRemoveFixedVariables(), presolveRound(), presolveSolve(), presolveTryAddLinearReform(), presolveUpgrade(), prettifyConss(), priceAndCutLoop(), primalAddSol(), primalExistsOrigSol(), primalExistsSol(), printBoundSection(), printColumnSection(), printLinearCons(), printSolutionStatistics(), probRemoveVar(), process(), processBinvarFixings(), processContainedCons(), processFixings(), processIntegerBoundChg(), processNlRow(), processWatchedVars(), procInTag(), profileFindDownFeasibleStart(), profileFindFeasibleStart(), profileUpdate(), propagateBounds(), propagateBoundsCons(), propagateBoundsTightenVar(), propagateBoundsTightenVarLb(), propagateBoundsTightenVarUb(), propagateCons(), propagateConstraintSides(), propagateCumulativeCondition(), propagateCutoffbound(), propagateCutoffboundBinvar(), propagateCutoffboundBinvars(), propagateCutoffboundGlobally(), propagateCutoffboundVar(), propagateDomains(), propagateEdgeFinding(), propagateLowerbound(), propagateLowerboundBinvar(), propagateLowerboundVar(), propagateRedcostBinvar(), propagateRootRedcostBinvar(), propagateRootRedcostVar(), propagateTimetable(), propagateVarbounds(), propagateVbounds(), propagationRound(), propAndSolve(), propdataInit(), propdataReset(), propIndicator(), proposeFeasibleSolution(), propSOS1(), propSOS2(), readBounds(), readCnf(), readCoefficients(), readConstraints(), readExpression(), readFZNFile(), readIndicators(), readInputLine(), readLine(), readLinearCoefs(), readMps(), readMultIncr(), readNonlinearExprs(), readObjective(), readOPBFile(), readPolynomial(), readQMatrix(), readQuadraticCoefs(), readRanges(), readRhs(), readRows(), readSemicontinuous(), readSol(), readSOS(), readSos(), readSOScons(), readVariables(), readXMLSol(), reformEnsureChildrenMinCurvature(), reformMonomial(), reformNode2Var(), reformReplaceNode(), reformulate(), registerBranchingCandidates(), removeBilinearTermsPos(), removeConstraintsDueToNegCliques(), removeDoubleAndSingletonsAndPerformDualpresolve(), removeFixedNonlinearVariables(), removeFixedVariables(), removeRedundantConssAndNonzeros(), removeRedundantConstraints(), removeRedundantNonZeros(), replaceByLinearConstraints(), replaceQuadVarTermPos(), replaceViolatedByLinearConstraints(), resetContributors(), resetPropdata(), resolveGenVBoundPropagation(), resolvePropagation(), resolvePropagationCoretimes(), respropCumulativeCondition(), roundMIRRow(), roundStrongCGRow(), rowAddCoef(), rowCalcActivityBounds(), rowChgCoefPos(), rowDelCoefPos(), rowDelNorms(), rowMoveCoef(), rowScale(), rowSideChanged(), rowSwapCoefs(), rowUpdateAddLP(), rowUpdateDelLP(), runHeuristic(), scale_bound(), scaleCons(), SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_CONFLICTEXEC(), SCIP_DECL_CONSACTIVE(), SCIP_DECL_CONSCHECK(), scip::ObjConshdlr::SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSDEACTIVE(), SCIP_DECL_CONSENFOLP(), SCIP_DECL_CONSENFOPS(), SCIP_DECL_CONSEXIT(), SCIP_DECL_CONSEXITPRE(), scip::ObjConshdlr::SCIP_DECL_CONSGETNVARS(), scip::ObjConshdlr::SCIP_DECL_CONSGETVARS(), SCIP_DECL_CONSGETVARS(), SCIP_DECL_CONSHDLRCOPY(), SCIP_DECL_CONSINIT(), SCIP_DECL_CONSINITLP(), SCIP_DECL_CONSINITPRE(), SCIP_DECL_CONSINITSOL(), SCIP_DECL_CONSLOCK(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_CONSPRINT(), SCIP_DECL_CONSPROP(), SCIP_DECL_CONSRESPROP(), SCIP_DECL_CONSSEPALP(), SCIP_DECL_CONSSEPASOL(), SCIP_DECL_CONSTRANS(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_EXPRCURV(), SCIP_DECL_EXPRGRAPHNODEREFORM(), SCIP_DECL_EXPRGRAPHVARADDED(), SCIP_DECL_HASHKEYEQ(), SCIP_DECL_HEUREXEC(), SCIP_DECL_HEUREXIT(), SCIP_DECL_HEUREXITSOL(), SCIP_DECL_HEURINIT(), SCIP_DECL_HEURINITSOL(), SCIP_DECL_NLPISOLVE(), SCIP_DECL_NONLINCONSUPGD(), scip::ObjProbCloneable::SCIP_DECL_OBJPROBISCLONEABLE(), SCIP_DECL_PARAMCHGD(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_PRESOLEXIT(), SCIP_DECL_PRESOLINIT(), SCIP_DECL_PROPEXEC(), SCIP_DECL_PROPEXITPRE(), SCIP_DECL_PROPEXITSOL(), SCIP_DECL_PROPINIT(), SCIP_DECL_PROPINITSOL(), SCIP_DECL_PROPPRESOL(), SCIP_DECL_PROPRESPROP(), SCIP_DECL_QUADCONSUPGD(), SCIP_DECL_READERREAD(), SCIP_DECL_READERWRITE(), SCIP_DECL_SEPAEXECLP(), SCIP_DECL_SEPAEXECSOL(), SCIP_DECL_SEPAEXITSOL(), SCIP_DECL_SOLVECUMULATIVE(), scip::ObjProbData::scip_trans(), scip::ObjVardata::scip_trans(), SCIPactivatePricer(), SCIPactiveCons(), SCIPaddClique(), SCIPaddCoefPseudoboolean(), SCIPaddConflictBd(), SCIPaddConflictBinvar(), SCIPaddConflictLb(), SCIPaddConflictRelaxedBd(), SCIPaddConflictRelaxedLb(), SCIPaddConflictRelaxedUb(), SCIPaddConflictUb(), SCIPaddCons(), SCIPaddConsAge(), SCIPaddConsLocal(), SCIPaddConsLocks(), SCIPaddConsNode(), SCIPaddCurrentSol(), SCIPaddCut(), SCIPaddDelayedPoolCut(), SCIPaddDialogHistoryLine(), SCIPaddExternBranchCand(), SCIPaddLinearCoefsToNlRow(), SCIPaddLinearCoefToNlRow(), SCIPaddNewRowCutpool(), SCIPaddNlRow(), SCIPaddObjoffset(), SCIPaddOrigObjoffset(), SCIPaddPoolCut(), SCIPaddPricedVar(), SCIPaddQuadElementsToNlRow(), SCIPaddQuadElementToNlRow(), SCIPaddQuadVarLinearCoefQuadratic(), SCIPaddQuadVarsToNlRow(), SCIPaddQuadVarToNlRow(), SCIPaddRowCutpool(), SCIPaddRowDive(), SCIPaddSol(), SCIPaddSolFree(), SCIPaddSquareCoefQuadratic(), SCIPaddVar(), SCIPaddVarBranchFactor(), SCIPaddVarBranchPriority(), SCIPaddVarImplication(), SCIPaddVarLocks(), SCIPaddVarObj(), SCIPaddVarsToRow(), SCIPaddVarsToRowSameCoef(), SCIPaddVarToRow(), SCIPaddVarVlb(), SCIPaddVarVub(), SCIPadjustedVarLb(), SCIPadjustedVarUb(), SCIPadjustImplicitSolVals(), SCIPaggregateVars(), SCIPallColsInLP(), SCIPallVarsInProb(), SCIPanalyzeConflict(), SCIPanalyzeConflictCons(), SCIPanalyzeDeductionsProbing(), SCIPapplyHeurDualval(), SCIPapplyHeurSubNlp(), SCIPapplyProbingVar(), SCIPapplyProximity(), SCIPapplyUndercover(), SCIPapplyZeroobj(), SCIPareSolsEqual(), SCIPbacktrackProbing(), SCIPbdchgidxIsEarlier(), SCIPbdchginfoCreate(), SCIPboolarrayExtend(), SCIPboolarrayGetVal(), SCIPboolarraySetVal(), SCIPboundchgApply(), SCIPbranchcandContainsExternCand(), SCIPbranchExtern(), SCIPbranchLP(), SCIPbranchPseudo(), SCIPbranchruleCreate(), SCIPbranchruleExit(), SCIPbranchruleSetPriority(), SCIPbranchVar(), SCIPbranchVarHole(), SCIPbranchVarVal(), SCIPbranchVarValNary(), SCIPbtnodeIsLeftchild(), SCIPbtnodeIsRightchild(), SCIPbufferAllocMem(), SCIPbufferFreeMem(), SCIPcacheRowExtensions(), SCIPcalcChildEstimate(), SCIPcalcCliquePartition(), SCIPcalcIntegralScalar(), SCIPcalcMIR(), SCIPcalcNodeselPriority(), SCIPcalcRowIntegralScalar(), SCIPcalcStrongCG(), SCIPcaptureCons(), SCIPcaptureNlRow(), SCIPcaptureRow(), SCIPcaptureVar(), SCIPcatchEvent(), SCIPcatchRowEvent(), SCIPcatchVarEvent(), SCIPcheckCons(), SCIPcheckSol(), SCIPcheckSolOrig(), SCIPchgBarrierconvtol(), SCIPchgChildPrio(), SCIPchgConsName(), SCIPchgCutoffboundDive(), SCIPchgDualfeastol(), SCIPchgLpfeastol(), SCIPchgNlRowConstant(), SCIPchgNlRowLhs(), SCIPchgNlRowLinearCoef(), SCIPchgNlRowQuadElement(), SCIPchgNlRowRhs(), SCIPchgRowLhs(), SCIPchgRowLhsDive(), SCIPchgRowRhs(), SCIPchgRowRhsDive(), SCIPchgVarBoundsDiveNLP(), SCIPchgVarBranchDirection(), SCIPchgVarBranchFactor(), SCIPchgVarBranchPriority(), SCIPchgVarLb(), SCIPchgVarLbDive(), SCIPchgVarLbGlobal(), SCIPchgVarLbLazy(), SCIPchgVarLbNode(), SCIPchgVarLbProbing(), SCIPchgVarName(), SCIPchgVarObj(), SCIPchgVarObjDive(), SCIPchgVarObjDiveNLP(), SCIPchgVarsBoundsDiveNLP(), SCIPchgVarType(), SCIPchgVarUb(), SCIPchgVarUbDive(), SCIPchgVarUbGlobal(), SCIPchgVarUbLazy(), SCIPchgVarUbNode(), SCIPchgVarUbProbing(), SCIPclearCuts(), SCIPclearExternBranchCands(), SCIPclearRelaxSolVals(), SCIPclearSol(), SCIPcliqueAddVar(), SCIPcliquelistCheck(), SCIPcliquelistsHaveCommonClique(), SCIPcliquetableAdd(), SCIPcliquetableCleanup(), SCIPclockDisable(), SCIPcolChgLb(), SCIPcolChgObj(), SCIPcolChgUb(), SCIPcolCreate(), SCIPcolGetStrongbranch(), SCIPcolGetStrongbranches(), SCIPcolInvalidateStrongbranchData(), SCIPcomputeCoverUndercover(), SCIPcomputeLPRelIntPoint(), SCIPconflictAddBound(), SCIPconflictAddRelaxedBound(), SCIPconflictAnalyze(), SCIPconflictAnalyzeLP(), SCIPconflictAnalyzePseudo(), SCIPconflictAnalyzeStrongbranch(), SCIPconflictApplicable(), SCIPconflicthdlrCreate(), SCIPconflicthdlrExit(), SCIPconflicthdlrSetPriority(), SCIPconflictIsVarUsed(), SCIPconsCopy(), SCIPconsCreate(), SCIPconsDelete(), SCIPconsDisablePropagation(), SCIPconsDisableSeparation(), SCIPconsEnablePropagation(), SCIPconsEnableSeparation(), SCIPconsGetNVars(), SCIPconsGetVars(), SCIPconshdlrCreate(), SCIPconshdlrEnforceLPSol(), SCIPconshdlrEnforcePseudoSol(), SCIPconshdlrExit(), SCIPconshdlrInit(), SCIPconshdlrInitpre(), SCIPconshdlrInitsol(), SCIPconshdlrPopProp(), SCIPconshdlrPropagate(), SCIPconshdlrSeparateLP(), SCIPconshdlrSeparateSol(), SCIPconsMarkPropagate(), SCIPconsParse(), SCIPconssetchgAddAddedCons(), SCIPconsTransform(), SCIPconstructCurrentLP(), SCIPconstructLP(), SCIPconsUnmarkPropagate(), SCIPcontainsExternBranchCand(), SCIPconvertCutsToConss(), SCIPcopy(), SCIPcopyConsLinear(), SCIPcopyConss(), SCIPcopyCuts(), SCIPcopyImplicationsCliques(), SCIPcopyOrig(), SCIPcopyOrigConss(), SCIPcopyOrigProb(), SCIPcopyOrigVars(), SCIPcopyParamSettings(), SCIPcopyPlugins(), SCIPcopyProb(), SCIPcopyVars(), SCIPcount(), SCIPcreate(), SCIPcreateChild(), SCIPcreateCons(), SCIPcreateConsAnd(), SCIPcreateConsBasicAbspower(), SCIPcreateConsBasicAnd(), SCIPcreateConsBasicBivariate(), SCIPcreateConsBasicBounddisjunction(), SCIPcreateConsBasicConjunction(), SCIPcreateConsBasicCumulative(), SCIPcreateConsBasicDisjunction(), SCIPcreateConsBasicIndicator(), SCIPcreateConsBasicIndicatorLinCons(), SCIPcreateConsBasicKnapsack(), SCIPcreateConsBasicLinear(), SCIPcreateConsBasicLinking(), SCIPcreateConsBasicLogicor(), SCIPcreateConsBasicNonlinear(), SCIPcreateConsBasicNonlinear2(), SCIPcreateConsBasicOr(), SCIPcreateConsBasicOrbitope(), SCIPcreateConsBasicPseudoboolean(), SCIPcreateConsBasicQuadratic(), SCIPcreateConsBasicQuadratic2(), SCIPcreateConsBasicSetcover(), SCIPcreateConsBasicSetpack(), SCIPcreateConsBasicSetpart(), SCIPcreateConsBasicSOC(), SCIPcreateConsBasicSOS1(), SCIPcreateConsBasicSOS2(), SCIPcreateConsBasicSuperindicator(), SCIPcreateConsBasicVarbound(), SCIPcreateConsBasicXor(), SCIPcreateConsBivariate(), SCIPcreateConsConjunction(), SCIPcreateConsDisjunction(), SCIPcreateConsIndicator(), SCIPcreateConsIndicatorLinCons(), SCIPcreateConsNonlinear(), SCIPcreateConsNonlinear2(), SCIPcreateConsPseudoboolean(), SCIPcreateConsPseudobooleanWithConss(), SCIPcreateConsQuadratic(), SCIPcreateConsQuadratic2(), SCIPcreateConsSOC(), SCIPcreateConsSOS1(), SCIPcreateConsSOS2(), SCIPcreateConsSuperindicator(), SCIPcreateCurrentSol(), SCIPcreateCutpool(), SCIPcreateEmptyNlRow(), SCIPcreateEmptyRow(), SCIPcreateEmptyRowCons(), SCIPcreateEmptyRowSepa(), SCIPcreateEmptyRowUnspec(), SCIPcreateFiniteSolCopy(), SCIPcreateLPSol(), SCIPcreateNLPSol(), SCIPcreateNlRow(), SCIPcreateNlRowFromRow(), SCIPcreateObjMessagehdlr(), SCIPcreateOrigSol(), SCIPcreateProb(), SCIPcreateProbBasic(), SCIPcreatePseudoSol(), SCIPcreateRelaxSol(), SCIPcreateRow(), SCIPcreateRowCons(), SCIPcreateRowSepa(), SCIPcreateRowUnspec(), SCIPcreateSol(), SCIPcreateSolCopy(), SCIPcreateUnknownSol(), SCIPcreateVar(), SCIPcreateVarBasic(), SCIPcutGenerationHeuristicCmir(), SCIPcutoffNode(), SCIPcutpoolClear(), SCIPcutpoolSeparate(), SCIPdeactivatePricer(), SCIPdeactiveCons(), SCIPdelCons(), SCIPdelConsLocal(), SCIPdelConsNode(), SCIPdelDelayedPoolCut(), SCIPdelPoolCut(), SCIPdelRowCutpool(), SCIPdelVar(), SCIPdialogHasEntry(), SCIPdialoghdlrGetWord(), SCIPdisableCons(), SCIPdisableConsPropagation(), SCIPdisableConsSeparation(), SCIPdisableVarHistory(), SCIPdispAutoActivate(), SCIPdispCreate(), SCIPdispExit(), SCIPdispPrintLine(), SCIPdomchgAddBoundchg(), SCIPdomchgApply(), SCIPdomchgApplyGlobal(), SCIPdropEvent(), SCIPdropRowEvent(), SCIPdropVarEvent(), SCIPenableCons(), SCIPenableConsPropagation(), SCIPenableConsSeparation(), SCIPenableNLP(), SCIPenableVarHistory(), SCIPendDive(), SCIPendDiveNLP(), SCIPendProbing(), SCIPendStrongbranch(), SCIPenfolpCons(), SCIPenfopsCons(), SCIPevalExprtreeGlobalBounds(), SCIPevalExprtreeLocalBounds(), SCIPevalExprtreeSol(), SCIPeventfilterCreate(), SCIPeventfilterProcess(), SCIPeventhdlrCreate(), SCIPeventhdlrExit(), SCIPeventqueueCreate(), SCIPeventqueueProcess(), SCIPexprAreEqual(), SCIPexprAreMonomialsEqual(), SCIPexprcurvMonomial(), SCIPexprFindMonomialFactor(), SCIPexprgraphAddExprtreeSum(), SCIPexprgraphAreAllNodeChildrenVars(), SCIPexprgraphDisableNode(), SCIPexprgraphFindConstNode(), SCIPexprgraphFindVarNode(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphGetSumTrees(), SCIPexprgraphHasNodeNonlinearAncestor(), SCIPexprgraphHasNodeSibling(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphPrintNode(), SCIPexprgraphPropagateNodeBounds(), SCIPexprgraphPropagateVarBounds(), SCIPexprgraphReplaceVarByLinearSum(), SCIPexprgraphSimplify(), SCIPexprgraphTightenNodeBounds(), SCIPexprHasParam(), SCIPexprintGrad(), SCIPexprintHessianDense(), SCIPexprtreeRemoveFixedVars(), SCIPfileExists(), SCIPfindCons(), SCIPfindOrigCons(), SCIPfindVar(), SCIPfixVar(), SCIPfixVarProbing(), SCIPflattenVarAggregationGraph(), SCIPflushLP(), SCIPflushNLP(), SCIPflushRowExtensions(), SCIPfree(), SCIPfreeCutpool(), SCIPfreeParseVarsPolynomialData(), SCIPfreeProb(), SCIPfreeSol(), SCIPfreeSolve(), SCIPfreeTransform(), SCIPgenVBoundAdd(), SCIPgetActiveVars(), SCIPgetAvgConflictlengthScore(), SCIPgetAvgConflictlengthScoreCurrentRun(), SCIPgetAvgConflictScore(), SCIPgetAvgConflictScoreCurrentRun(), SCIPgetAvgCutoffs(), SCIPgetAvgCutoffScore(), SCIPgetAvgCutoffScoreCurrentRun(), SCIPgetAvgCutoffsCurrentRun(), SCIPgetAvgDualbound(), SCIPgetAvgInferences(), SCIPgetAvgInferenceScore(), SCIPgetAvgInferenceScoreCurrentRun(), SCIPgetAvgInferencesCurrentRun(), SCIPgetAvgLowerbound(), SCIPgetAvgPseudocost(), SCIPgetAvgPseudocostCount(), SCIPgetAvgPseudocostCountCurrentRun(), SCIPgetAvgPseudocostCurrentRun(), SCIPgetAvgPseudocostScore(), SCIPgetAvgPseudocostScoreCurrentRun(), SCIPgetBestboundNode(), SCIPgetBestChild(), SCIPgetBestLeaf(), SCIPgetBestNode(), SCIPgetBestSibling(), SCIPgetBestSol(), SCIPgetBinvarRepresentative(), SCIPgetBinvarRepresentatives(), SCIPgetBranchingPoint(), SCIPgetBranchScore(), SCIPgetBranchScoreMultiple(), SCIPgetChildren(), SCIPgetCliques(), SCIPgetColFarkasCoef(), SCIPgetColRedcost(), SCIPgetConflictVarLb(), SCIPgetConflictVarUb(), SCIPgetConsCopy(), SCIPgetConsNVars(), SCIPgetConss(), SCIPgetConsVars(), SCIPgetCurrentNode(), SCIPgetCutEfficacy(), SCIPgetCutoffbound(), SCIPgetCutoffdepth(), SCIPgetCuts(), SCIPgetDelayedGlobalCutpool(), SCIPgetDelayedPoolCuts(), SCIPgetDepth(), SCIPgetDualbound(), SCIPgetDualboundRoot(), SCIPgetExprtreeTransformedVars(), SCIPgetExternBranchCands(), SCIPgetFirstLPDualboundRoot(), SCIPgetFirstLPLowerboundRoot(), SCIPgetFirstLPTime(), SCIPgetFixedVars(), SCIPgetFocusDepth(), SCIPgetGap(), SCIPgetGlobalCutpool(), SCIPgetGlobalPseudoObjval(), SCIPgetLastDivenode(), SCIPgetLeaves(), SCIPgetLocalDualbound(), SCIPgetLocalLowerbound(), SCIPgetLocalOrigEstimate(), SCIPgetLocalTransEstimate(), SCIPgetLowerbound(), SCIPgetLowerboundRoot(), SCIPgetLPBasisInd(), SCIPgetLPBInvACol(), SCIPgetLPBInvARow(), SCIPgetLPBInvCol(), SCIPgetLPBInvRow(), SCIPgetLPBranchCands(), SCIPgetLPCols(), SCIPgetLPColsData(), SCIPgetLPColumnObjval(), SCIPgetLPI(), SCIPgetLPLooseObjval(), SCIPgetLPObjval(), SCIPgetLPRootColumnObjval(), SCIPgetLPRootLooseObjval(), SCIPgetLPRootObjval(), SCIPgetLPRows(), SCIPgetLPRowsData(), SCIPgetLPSolstat(), SCIPgetMaxDepth(), SCIPgetMaxTotalDepth(), SCIPgetNActiveConss(), SCIPgetNBacktracks(), SCIPgetNBarrierLPIterations(), SCIPgetNBarrierLPs(), SCIPgetNBestSolsFound(), SCIPgetNBinVars(), SCIPgetNCheckConss(), SCIPgetNChildren(), SCIPgetNCliques(), SCIPgetNConflictConssApplied(), SCIPgetNConflictConssFound(), SCIPgetNConflictConssFoundNode(), SCIPgetNConss(), SCIPgetNContVars(), SCIPgetNCuts(), SCIPgetNCutsApplied(), SCIPgetNCutsFound(), SCIPgetNCutsFoundRound(), SCIPgetNDelayedPoolCuts(), SCIPgetNDivingLPIterations(), SCIPgetNDivingLPs(), SCIPgetNDualLPIterations(), SCIPgetNDualLPs(), SCIPgetNDualResolveLPIterations(), SCIPgetNDualResolveLPs(), SCIPgetNegatedVar(), SCIPgetNegatedVars(), SCIPgetNEnabledConss(), SCIPgetNExternBranchCands(), SCIPgetNFixedVars(), SCIPgetNImplications(), SCIPgetNImplVars(), SCIPgetNIntVars(), SCIPgetNLeaves(), SCIPgetNLimSolsFound(), SCIPgetNLPBranchCands(), SCIPgetNLPCols(), SCIPgetNLPFracVars(), SCIPgetNLPI(), SCIPgetNLPIntPar(), SCIPgetNLPIterations(), SCIPgetNLPNlRows(), SCIPgetNLPNlRowsData(), SCIPgetNLPObjval(), SCIPgetNLPRealPar(), SCIPgetNLPRows(), SCIPgetNLPs(), SCIPgetNLPSolstat(), SCIPgetNLPStatistics(), SCIPgetNLPStringPar(), SCIPgetNLPTermstat(), SCIPgetNLPVars(), SCIPgetNLPVarsData(), SCIPgetNLPVarsLbDualsol(), SCIPgetNLPVarsNonlinearity(), SCIPgetNLPVarsUbDualsol(), SCIPgetNlRowActivity(), SCIPgetNlRowActivityBounds(), SCIPgetNlRowFeasibility(), SCIPgetNlRowNLPActivity(), SCIPgetNlRowNLPFeasibility(), SCIPgetNlRowPseudoActivity(), SCIPgetNlRowPseudoFeasibility(), SCIPgetNlRowSolActivity(), SCIPgetNlRowSolFeasibility(), SCIPgetNNLPNlRows(), SCIPgetNNLPVars(), SCIPgetNNodeInitLPIterations(), SCIPgetNNodeInitLPs(), SCIPgetNNodeLPIterations(), SCIPgetNNodeLPs(), SCIPgetNNodes(), SCIPgetNNodesLeft(), SCIPgetNObjVars(), SCIPgetNodeDualbound(), SCIPgetNodeLowerbound(), SCIPgetNOrigBinVars(), SCIPgetNOrigConss(), SCIPgetNOrigContVars(), SCIPgetNOrigImplVars(), SCIPgetNOrigIntVars(), SCIPgetNOrigVars(), SCIPgetNPoolCuts(), SCIPgetNPriceRounds(), SCIPgetNPricevars(), SCIPgetNPricevarsApplied(), SCIPgetNPricevarsFound(), SCIPgetNPrimalLPIterations(), SCIPgetNPrimalLPs(), SCIPgetNPrimalResolveLPIterations(), SCIPgetNPrimalResolveLPs(), SCIPgetNPrioExternBranchBins(), SCIPgetNPrioExternBranchCands(), SCIPgetNPrioExternBranchConts(), SCIPgetNPrioExternBranchImpls(), SCIPgetNPrioExternBranchInts(), SCIPgetNPrioLPBranchCands(), SCIPgetNPrioPseudoBranchBins(), SCIPgetNPrioPseudoBranchCands(), SCIPgetNPrioPseudoBranchImpls(), SCIPgetNPrioPseudoBranchInts(), SCIPgetNPseudoBranchCands(), SCIPgetNResolveLPIterations(), SCIPgetNResolveLPs(), SCIPgetNRootFirstLPIterations(), SCIPgetNRootLPIterations(), SCIPgetNRootStrongbranchLPIterations(), SCIPgetNRootStrongbranchs(), SCIPgetNRuns(), SCIPgetNSepaRounds(), SCIPgetNSiblings(), SCIPgetNSols(), SCIPgetNSolsFound(), SCIPgetNStrongbranchLPIterations(), SCIPgetNStrongbranchs(), SCIPgetNTotalNodes(), SCIPgetNTotalVars(), SCIPgetNUpgrConss(), SCIPgetNVars(), SCIPgetObjlimit(), SCIPgetObjNorm(), SCIPgetObjsense(), SCIPgetOpenNodesData(), SCIPgetOrigConss(), SCIPgetOrigObjoffset(), SCIPgetOrigObjscale(), SCIPgetOrigVars(), SCIPgetOrigVarsData(), SCIPgetPlungeDepth(), SCIPgetPoolCuts(), SCIPgetPresolvingTime(), SCIPgetPrimalbound(), SCIPgetPrimalRayVal(), SCIPgetPrioChild(), SCIPgetPrioSibling(), SCIPgetProbData(), SCIPgetProbingDepth(), SCIPgetProbName(), SCIPgetProbvarLinearSum(), SCIPgetProbvarSum(), SCIPgetPseudoBranchCands(), SCIPgetPseudoObjval(), SCIPgetReadingTime(), SCIPgetRelaxFeastolFactor(), SCIPgetRelaxSolObj(), SCIPgetRelaxSolVal(), SCIPgetRepropdepth(), SCIPgetRootNode(), SCIPgetRowActivity(), SCIPgetRowFeasibility(), SCIPgetRowLPActivity(), SCIPgetRowLPFeasibility(), SCIPgetRowMaxActivity(), SCIPgetRowMaxCoef(), SCIPgetRowMinActivity(), SCIPgetRowMinCoef(), SCIPgetRowPseudoActivity(), SCIPgetRowPseudoFeasibility(), SCIPgetRowSolActivity(), SCIPgetRowSolFeasibility(), SCIPgetSiblings(), SCIPgetSolHeur(), SCIPgetSolNodenum(), SCIPgetSolOrigObj(), SCIPgetSolRunnum(), SCIPgetSols(), SCIPgetSolTime(), SCIPgetSolTransObj(), SCIPgetSolVal(), SCIPgetSolVals(), SCIPgetSolVarsData(), SCIPgetSolvingTime(), SCIPgetSubscipDepth(), SCIPgetTransformedCons(), SCIPgetTransformedConss(), SCIPgetTransformedVar(), SCIPgetTransformedVars(), SCIPgetTransGap(), SCIPgetTransObjoffset(), SCIPgetTransObjscale(), SCIPgetUpperbound(), SCIPgetVarAvgConflictlength(), SCIPgetVarAvgConflictlengthCurrentRun(), SCIPgetVarAvgCutoffs(), SCIPgetVarAvgCutoffScore(), SCIPgetVarAvgCutoffScoreCurrentRun(), SCIPgetVarAvgCutoffsCurrentRun(), SCIPgetVarAvgInferenceCutoffScore(), SCIPgetVarAvgInferenceCutoffScoreCurrentRun(), SCIPgetVarAvgInferences(), SCIPgetVarAvgInferenceScore(), SCIPgetVarAvgInferenceScoreCurrentRun(), SCIPgetVarAvgInferencesCurrentRun(), SCIPgetVarClosestVlb(), SCIPgetVarClosestVub(), SCIPgetVarConflictlengthScore(), SCIPgetVarConflictlengthScoreCurrentRun(), SCIPgetVarConflictScore(), SCIPgetVarConflictScoreCurrentRun(), SCIPgetVarCopy(), SCIPgetVarLbDive(), SCIPgetVarNStrongbranchs(), SCIPgetVarObjDive(), SCIPgetVarPseudocost(), SCIPgetVarPseudocostCount(), SCIPgetVarPseudocostCountCurrentRun(), SCIPgetVarPseudocostCurrentRun(), SCIPgetVarPseudocostScore(), SCIPgetVarPseudocostScoreCurrentRun(), SCIPgetVarPseudocostVal(), SCIPgetVarPseudocostValCurrentRun(), SCIPgetVars(), SCIPgetVarsData(), SCIPgetVarSol(), SCIPgetVarSols(), SCIPgetVarsStrongbranchesFrac(), SCIPgetVarsStrongbranchesInt(), SCIPgetVarStrongbranchFrac(), SCIPgetVarStrongbranchInt(), SCIPgetVarStrongbranchLast(), SCIPgetVarStrongbranchLPAge(), SCIPgetVarStrongbranchNode(), SCIPgetVarStrongbranchWithPropagation(), SCIPgetVarUbDive(), SCIPgetVarVSIDS(), SCIPgetVarVSIDSCurrentRun(), SCIPgetVectorEfficacyNorm(), SCIPhasCurrentNodeLP(), SCIPhashmapIsEmpty(), SCIPhasNLPContinuousNonlinearity(), SCIPhasNLPSolution(), SCIPhasPrimalRay(), SCIPhaveVarsCommonClique(), SCIPheurCreate(), SCIPheurExec(), SCIPheurExit(), SCIPheurInitsol(), SCIPheurSetPriority(), SCIPheurShouldBeExecuted(), SCIPimplicsAdd(), SCIPincConsAge(), SCIPincludeBranchrule(), SCIPincludeBranchruleBasic(), SCIPincludeBranchruleCloud(), SCIPincludeBranchruleInference(), SCIPincludeBranchrulePscost(), SCIPincludeBranchruleRandom(), SCIPincludeBranchruleRelpscost(), SCIPincludeConflicthdlr(), SCIPincludeConflicthdlrBasic(), SCIPincludeConshdlr(), SCIPincludeConshdlrAbspower(), SCIPincludeConshdlrBasic(), SCIPincludeConshdlrBivariate(), SCIPincludeConshdlrBounddisjunction(), SCIPincludeConshdlrCumulative(), SCIPincludeConshdlrDisjunction(), SCIPincludeConshdlrIndicator(), SCIPincludeConshdlrKnapsack(), SCIPincludeConshdlrLinear(), SCIPincludeConshdlrLinking(), SCIPincludeConshdlrNonlinear(), SCIPincludeConshdlrQuadratic(), SCIPincludeConshdlrSOC(), SCIPincludeConshdlrSOS1(), SCIPincludeConshdlrSuperindicator(), SCIPincludeConshdlrVarbound(), SCIPincludeConshdlrViolatedCut(), SCIPincludeDialogDefault(), SCIPincludeDialogDefaultSet(), SCIPincludeDisp(), SCIPincludeEventhdlr(), SCIPincludeEventhdlrBasic(), SCIPincludeExternalCodeInformation(), SCIPincludeHeur(), SCIPincludeHeurActconsdiving(), SCIPincludeHeurBasic(), SCIPincludeHeurClique(), SCIPincludeHeurCoefdiving(), SCIPincludeHeurCrossover(), SCIPincludeHeurDins(), SCIPincludeHeurDualval(), SCIPincludeHeurFeaspump(), SCIPincludeHeurFracdiving(), SCIPincludeHeurGuideddiving(), SCIPincludeHeurIntdiving(), SCIPincludeHeurLinesearchdiving(), SCIPincludeHeurLocalbranching(), SCIPincludeHeurMutation(), SCIPincludeHeurNlpdiving(), SCIPincludeHeurObjpscostdiving(), SCIPincludeHeurOctane(), SCIPincludeHeurPscostdiving(), SCIPincludeHeurRins(), SCIPincludeHeurRootsoldiving(), SCIPincludeHeurSubNlp(), SCIPincludeHeurTrySol(), SCIPincludeHeurUndercover(), SCIPincludeHeurVbounds(), SCIPincludeHeurVeclendiving(), SCIPincludeHeurZeroobj(), SCIPincludeLinconsUpgrade(), SCIPincludeNlpi(), SCIPincludeNodesel(), SCIPincludeNodeselBasic(), SCIPincludeNodeselEstimate(), SCIPincludeNodeselHybridestim(), SCIPincludeNodeselRestartdfs(), SCIPincludeNonlinconsUpgrade(), SCIPincludePresol(), SCIPincludePresolBasic(), SCIPincludePresolComponents(), SCIPincludePresolDomcol(), SCIPincludePricer(), SCIPincludePricerBasic(), SCIPincludeProp(), SCIPincludePropBasic(), SCIPincludePropObbt(), SCIPincludePropProbing(), SCIPincludePropRedcost(), SCIPincludePropVbounds(), SCIPincludeQuadconsUpgrade(), SCIPincludeReader(), SCIPincludeReaderBasic(), SCIPincludeReaderCip(), SCIPincludeReaderCnf(), SCIPincludeReaderGms(), SCIPincludeReaderOpb(), SCIPincludeReaderPbm(), SCIPincludeReaderPpm(), SCIPincludeReaderZpl(), SCIPincludeRelax(), SCIPincludeRelaxBasic(), SCIPincludeSepa(), SCIPincludeSepaBasic(), SCIPincludeSepaCGMIP(), SCIPincludeSepaClique(), SCIPincludeSepaClosecuts(), SCIPincludeSepaCmir(), SCIPincludeSepaFlowcover(), SCIPincludeSepaGomory(), SCIPincludeSepaMcf(), SCIPincludeSepaOddcycle(), SCIPincludeSepaStrongcg(), SCIPincludeSepaZerohalf(), SCIPincSolVal(), SCIPinDive(), SCIPinferBinvarCons(), SCIPinferBinvarProp(), SCIPinferVarLbCons(), SCIPinferVarLbProp(), SCIPinferVarUbCons(), SCIPinferVarUbProp(), SCIPinitConflictAnalysis(), SCIPinitlpCons(), SCIPinitVarBranchStats(), SCIPinProbing(), SCIPinRepropagation(), SCIPinterruptSolve(), SCIPintervalHasRoundingControl(), SCIPintervalIsSubsetEQ(), SCIPisAndConsSorted(), SCIPisConcaveQuadratic(), SCIPisConflictAnalysisApplicable(), SCIPisConflictVarUsed(), SCIPisConvexQuadratic(), SCIPisCutApplicable(), SCIPisCutEfficacious(), SCIPisInRestart(), SCIPisIpoptAvailableIpopt(), SCIPisLinearLocalQuadratic(), SCIPisLPConstructed(), SCIPisLPRelax(), SCIPisLPSolBasic(), SCIPisNLPConstructed(), SCIPisNLPEnabled(), SCIPisObjIntegral(), SCIPisPresolveFinished(), SCIPisPrimalboundSol(), SCIPisRelaxSolValid(), SCIPisRootLPRelax(), SCIPisStopped(), SCIPisUpdateUnreliable(), SCIPisViolatedIndicator(), SCIPlinkCurrentSol(), SCIPlinkLPSol(), SCIPlinkNLPSol(), SCIPlinkPseudoSol(), SCIPlinkRelaxSol(), SCIPlockVarCons(), SCIPlpAddCol(), SCIPlpAddRow(), SCIPlpCalcMIR(), SCIPlpCalcStrongCG(), SCIPlpComputeRelIntPoint(), SCIPlpCreate(), SCIPlpEndDive(), SCIPlpEndProbing(), SCIPlpEndStrongbranch(), SCIPlpEndStrongbranchProbing(), SCIPlpFlush(), SCIPlpGetProvedLowerbound(), SCIPlpGetSol(), SCIPlpGetUnboundedSol(), SCIPlpiAddRows(), SCIPlpiCreate(), SCIPlpiExistsDualRay(), SCIPlpiExistsPrimalRay(), SCIPlpiGetInternalStatus(), SCIPlpiGetIntpar(), SCIPlpiGetSolFeasibility(), SCIPlpiHasDualRay(), SCIPlpiHasPrimalRay(), SCIPlpiHasStateBasis(), SCIPlpiIgnoreInstability(), SCIPlpiIsDualFeasible(), SCIPlpiIsDualInfeasible(), SCIPlpiIsDualUnbounded(), SCIPlpiIsInfinity(), SCIPlpiIsIterlimExc(), SCIPlpiIsObjlimExc(), SCIPlpiIsOptimal(), SCIPlpiIsPrimalFeasible(), SCIPlpiIsPrimalInfeasible(), SCIPlpiIsPrimalUnbounded(), SCIPlpiIsStable(), SCIPlpiIsTimelimExc(), SCIPlpiSetIntpar(), SCIPlpiSolveBarrier(), SCIPlpiSolveDual(), SCIPlpiSolvePrimal(), SCIPlpiStrongbranch(), SCIPlpiStrongbranchesFrac(), SCIPlpiStrongbranchFrac(), SCIPlpiWasSolved(), SCIPlpMarkFlushed(), SCIPlpRecalculateObjSqrNorm(), SCIPlpReset(), SCIPlpSetCutoffbound(), SCIPlpSetState(), SCIPlpShrinkCols(), SCIPlpShrinkRows(), SCIPlpSolveAndEval(), SCIPlpStartDive(), SCIPlpSumRows(), SCIPlpUpdateVarLb(), SCIPlpUpdateVarLbGlobal(), SCIPlpUpdateVarObj(), SCIPlpUpdateVarUb(), SCIPlpUpdateVarUbGlobal(), SCIPmakeIndicatorFeasible(), SCIPmakeIndicatorsFeasible(), SCIPmakeRowIntegral(), SCIPmarkColNotRemovableLocal(), SCIPmarkConsPropagate(), SCIPmarkDoNotMultaggrVar(), SCIPmarkRelaxSolInvalid(), SCIPmarkRelaxSolValid(), SCIPmarkRowNotRemovableLocal(), SCIPmultiaggregateVar(), SCIPnewProbingNode(), SCIPnlpChgVarObjDive(), SCIPnlpCreate(), SCIPnlpEndDive(), SCIPnlpHasContinuousNonlinearity(), SCIPnlpiOracleAddConstraints(), SCIPnlpiOracleChgExprtree(), SCIPnlpiOracleChgLinearCoefs(), SCIPnlpiOracleChgQuadCoefs(), SCIPnlpiOracleDelConsSet(), SCIPnlpiOracleGetJacobianSparsity(), SCIPnlpiOraclePrintProblem(), SCIPnlpiOraclePrintProblemGams(), SCIPnlpiOracleSetObjective(), SCIPnlpReset(), SCIPnlpSetInitialGuess(), SCIPnlrowCreate(), SCIPnlrowIsRedundant(), SCIPnodeAddHoleinfer(), SCIPnodeFocus(), SCIPnodeMarkPropagated(), SCIPnodePropagateImplics(), SCIPnodeselCreate(), SCIPnodeselExit(), SCIPparamIsDefault(), SCIPparamSetBool(), SCIPparamSetChar(), SCIPparamSetInt(), SCIPparamsetIsFixed(), SCIPparamSetLongint(), SCIPparamSetReal(), SCIPparamsetSetEmphasis(), SCIPparamsetSetToSubscipsOff(), SCIPparamSetString(), SCIPparseCons(), SCIPparseVar(), SCIPparseVarName(), SCIPparseVarsLinearsum(), SCIPparseVarsList(), SCIPparseVarsPolynomial(), SCIPpermuteProb(), SCIPpresolCons(), SCIPpresolCreate(), SCIPpresolExit(), SCIPpresolInit(), SCIPpresolInitpre(), SCIPpresolSetPriority(), SCIPpresolve(), SCIPpriceLoop(), SCIPpricerActivate(), SCIPpricerCreate(), SCIPpricerDeactivate(), SCIPpricerExec(), SCIPpricerExit(), SCIPpricerSetPriority(), SCIPpricestoreCreate(), SCIPpricestoreEndInitialLP(), SCIPprimalAddOrigSol(), SCIPprimalAddOrigSolFree(), SCIPprimalAddSol(), SCIPprimalAddSolFree(), SCIPprimalHeuristics(), SCIPprimalTransformSol(), SCIPprimalTryCurrentSol(), SCIPprimalTrySol(), SCIPprimalTrySolFree(), SCIPprintBestSol(), SCIPprintBestTransSol(), SCIPprintBranchingStatistics(), SCIPprintCons(), SCIPprintDisplayLine(), SCIPprintLPSolutionQuality(), SCIPprintNlRow(), SCIPprintOrigProblem(), SCIPprintRay(), SCIPprintRow(), SCIPprintSol(), SCIPprintStatistics(), SCIPprintTransProblem(), SCIPprintTransSol(), SCIPprintVar(), SCIPprobAddCons(), SCIPprobCopy(), SCIPprobCreate(), SCIPprobDelVar(), SCIPprobUpdateBestRootSol(), SCIPprocessShellArguments(), SCIPprofileFindLeft(), SCIPprofileGetEarliestFeasibleStart(), SCIPprofileGetLatestFeasibleStart(), SCIPprofileInsertCore(), SCIPpropagateProbing(), SCIPpropagateProbingImplications(), SCIPpropCons(), SCIPpropCreate(), SCIPpropCumulativeCondition(), SCIPpropExit(), SCIPpropInit(), SCIPpropInitpre(), SCIPpropSetPresolPriority(), SCIPpropSetPriority(), SCIPquadelemSortedFind(), SCIPreadLp(), SCIPreadOpb(), SCIPreadPip(), SCIPreadProb(), SCIPreadSol(), SCIPrealToRational(), SCIPrecalcNlRowActivity(), SCIPrecalcNlRowNLPActivity(), SCIPrecalcNlRowPseudoActivity(), SCIPrecalcRowActivity(), SCIPrecalcRowLPActivity(), SCIPrecalcRowPseudoActivity(), SCIPrelaxationCreate(), SCIPrelaxCreate(), SCIPrelaxExit(), SCIPrelaxSetPriority(), SCIPreleaseCons(), SCIPreleaseNlRow(), SCIPreleaseRow(), SCIPreleaseVar(), SCIPremoveInefficaciousCuts(), SCIPrepropagateNode(), SCIPresetConsAge(), SCIPresolveSolHeurSubNlp(), SCIPrespropCons(), SCIPrestartSolve(), SCIPretransformObj(), SCIPretransformSol(), SCIProundSol(), SCIProwCalcIntegralScalar(), SCIProwCreate(), SCIProwForceSort(), SCIProwGetDiscreteScalarProduct(), SCIProwGetScalarProduct(), SCIProwIsRedundant(), SCIPscaleVarBranchFactor(), SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), SCIPsepaCreate(), SCIPsepaExit(), SCIPsepaInit(), SCIPsepaInitsol(), SCIPsepalpCons(), SCIPseparateCutpool(), SCIPseparateKnapsackCuts(), SCIPseparateRelaxedKnapsack(), SCIPseparateSol(), SCIPseparateSolCutpool(), SCIPseparationRound(), SCIPsepaSetPriority(), SCIPsepasolCons(), SCIPsepastoreApplyCuts(), SCIPsepastoreCreate(), SCIPsepastoreEndForceCuts(), SCIPsepastoreEndInitialLP(), SCIPsepastoreRemoveInefficaciousCuts(), SCIPsetBranchruleCopy(), SCIPsetBranchruleExecExt(), SCIPsetBranchruleExecLp(), SCIPsetBranchruleExecPs(), SCIPsetBranchruleExit(), SCIPsetBranchruleExitsol(), SCIPsetBranchruleFree(), SCIPsetBranchruleInit(), SCIPsetBranchruleInitsol(), SCIPsetConflicthdlrCopy(), SCIPsetConflicthdlrExit(), SCIPsetConflicthdlrExitsol(), SCIPsetConflicthdlrFree(), SCIPsetConflicthdlrInit(), SCIPsetConflicthdlrInitsol(), SCIPsetConsChecked(), SCIPsetConsDynamic(), SCIPsetConsEnforced(), SCIPsetConshdlrActive(), SCIPsetConshdlrCopy(), SCIPsetConshdlrDeactive(), SCIPsetConshdlrDelete(), SCIPsetConshdlrDelvars(), SCIPsetConshdlrDisable(), SCIPsetConshdlrEnable(), SCIPsetConshdlrExit(), SCIPsetConshdlrExitpre(), SCIPsetConshdlrExitsol(), SCIPsetConshdlrFree(), SCIPsetConshdlrGetNVars(), SCIPsetConshdlrGetVars(), SCIPsetConshdlrInit(), SCIPsetConshdlrInitlp(), SCIPsetConshdlrInitpre(), SCIPsetConshdlrInitsol(), SCIPsetConshdlrParse(), SCIPsetConshdlrPresol(), SCIPsetConshdlrPrint(), SCIPsetConshdlrProp(), SCIPsetConshdlrResprop(), SCIPsetConshdlrSepa(), SCIPsetConshdlrTrans(), SCIPsetConsInitial(), SCIPsetConsLocal(), SCIPsetConsModifiable(), SCIPsetConsPropagated(), SCIPsetConsRemovable(), SCIPsetConsSeparated(), SCIPsetConsStickingAtNode(), SCIPsetCopyPlugins(), SCIPsetCreate(), SCIPsetEventhdlrCopy(), SCIPsetEventhdlrDelete(), SCIPsetEventhdlrExit(), SCIPsetEventhdlrExitsol(), SCIPsetEventhdlrFree(), SCIPsetEventhdlrInit(), SCIPsetEventhdlrInitsol(), SCIPsetExistsDialog(), SCIPsetHeurCopy(), SCIPsetHeurExit(), SCIPsetHeurExitsol(), SCIPsetHeurFree(), SCIPsetHeurInit(), SCIPsetHeurInitsol(), SCIPsetIncludeBranchrule(), SCIPsetIncludeConflicthdlr(), SCIPsetIncludeHeur(), SCIPsetIncludeNlpi(), SCIPsetIncludePresol(), SCIPsetIncludePricer(), SCIPsetIncludeProp(), SCIPsetIncludeRelax(), SCIPsetIncludeSepa(), SCIPsetLinearConsIndicator(), SCIPsetMessagehdlr(), SCIPsetNLPInitialGuess(), SCIPsetNLPInitialGuessSol(), SCIPsetNLPIntPar(), SCIPsetNLPRealPar(), SCIPsetNLPStringPar(), SCIPsetNlRowExprtree(), SCIPsetNlRowExprtreeParam(), SCIPsetNlRowExprtreeParams(), SCIPsetNodeselCopy(), SCIPsetNodeselExit(), SCIPsetNodeselExitsol(), SCIPsetNodeselFree(), SCIPsetNodeselInit(), SCIPsetNodeselInitsol(), SCIPsetObjIntegral(), SCIPsetObjlimit(), SCIPsetObjsense(), SCIPsetPresolCopy(), SCIPsetPresolExit(), SCIPsetPresolExitpre(), SCIPsetPresolFree(), SCIPsetPresolInit(), SCIPsetPresolInitpre(), SCIPsetPricerCopy(), SCIPsetPricerExit(), SCIPsetPricerExitsol(), SCIPsetPricerFree(), SCIPsetPricerInit(), SCIPsetPricerInitsol(), SCIPsetProbCopy(), SCIPsetProbData(), SCIPsetProbDelorig(), SCIPsetProbDeltrans(), SCIPsetProbExitsol(), SCIPsetProbInitsol(), SCIPsetProbName(), SCIPsetProbTrans(), SCIPsetPropCopy(), SCIPsetPropExit(), SCIPsetPropExitpre(), SCIPsetPropExitsol(), SCIPsetPropFree(), SCIPsetPropInit(), SCIPsetPropInitpre(), SCIPsetPropInitsol(), SCIPsetPropPresol(), SCIPsetPropResprop(), SCIPsetReaderCopy(), SCIPsetReaderFree(), SCIPsetReaderRead(), SCIPsetReaderWrite(), SCIPsetRelaxCopy(), SCIPsetRelaxExit(), SCIPsetRelaxExitsol(), SCIPsetRelaxFree(), SCIPsetRelaxInit(), SCIPsetRelaxInitsol(), SCIPsetRelaxSolVal(), SCIPsetRelaxSolVals(), SCIPsetRelaxSolValsSol(), SCIPsetSepaCopy(), SCIPsetSepaExit(), SCIPsetSepaExitsol(), SCIPsetSepaFree(), SCIPsetSepaInit(), SCIPsetSepaInitsol(), SCIPsetSetPriorityNlpi(), SCIPsetSolVal(), SCIPsetSolVals(), SCIPsetSortBranchrules(), SCIPsetSortBranchrulesName(), SCIPsetSortConflicthdlrs(), SCIPsetSortConflicthdlrsName(), SCIPsetSortHeurs(), SCIPsetSortHeursName(), SCIPsetSortPresols(), SCIPsetSortPresolsName(), SCIPsetSortPricers(), SCIPsetSortPricersName(), SCIPsetSortProps(), SCIPsetSortPropsName(), SCIPsetSortPropsPresol(), SCIPsetSortRelaxs(), SCIPsetSortRelaxsName(), SCIPsetSortSepas(), SCIPsetSortSepasName(), SCIPshrinkDisjunctiveVarSet(), SCIPsolAdjustImplicitSolVals(), SCIPsolCreate(), SCIPsolCreateOriginal(), SCIPsolCreateUnknown(), SCIPsolIncVal(), SCIPsolRetransform(), SCIPsolsAreEqual(), SCIPsolSetVal(), SCIPsolve(), SCIPsolveCIP(), SCIPsolveCumulative(), SCIPsolveDiveLP(), SCIPsolveDiveNLP(), SCIPsolveIsStopped(), SCIPsolveKnapsackExactly(), SCIPsolveNLP(), SCIPsolveProbingLP(), SCIPsolveProbingLPWithPricing(), SCIPsparseSolGetNextSol(), SCIPstartDive(), SCIPstartDiveNLP(), SCIPstartInteraction(), SCIPstartProbing(), SCIPstartSolvingTime(), SCIPstartStrongbranch(), SCIPstatCreate(), SCIPstatDisableVarHistory(), SCIPstatReset(), SCIPstatUpdateMemsaveMode(), SCIPstopSolvingTime(), SCIPstrToIntValue(), SCIPstrToRealValue(), SCIPsumLPRows(), SCIPtightenVarLb(), SCIPtightenVarLbGlobal(), SCIPtightenVarUb(), SCIPtightenVarUbGlobal(), SCIPtransformCons(), SCIPtransformConss(), SCIPtransformMinUC(), SCIPtransformObj(), SCIPtransformProb(), SCIPtransformVar(), SCIPtransformVars(), SCIPtreeBranchVar(), SCIPtreeBranchVarHole(), SCIPtreeBranchVarNary(), SCIPtreeClear(), SCIPtreeCreate(), SCIPtreeCreatePresolvingRoot(), SCIPtreeCutoff(), SCIPtreeEndProbing(), SCIPtreeFreePresolvingRoot(), SCIPtreeLoadLPState(), SCIPtreeLoadProbingLPState(), SCIPtreeStartProbing(), SCIPtryCurrentSol(), SCIPtrySol(), SCIPtrySolFree(), SCIPunfixParam(), SCIPunlinkSol(), SCIPunlockVarCons(), SCIPunmarkConsPropagate(), SCIPupdateConsFlags(), SCIPupdateCutoffbound(), SCIPupdateLocalDualbound(), SCIPupdateLocalLowerbound(), SCIPupdateNodeDualbound(), SCIPupdateNodeLowerbound(), SCIPupdateVarBranchPriority(), SCIPupdateVarPseudocost(), SCIPvarAddClique(), SCIPvarAddImplic(), SCIPvarAddVlb(), SCIPvarAddVub(), SCIPvarAggregate(), SCIPvarDoNotMultaggr(), SCIPvarFix(), SCIPvarFixBinary(), SCIPvarGetActiveRepresentatives(), SCIPvarGetImplRedcost(), SCIPvarGetMultaggrLbGlobal(), SCIPvarGetMultaggrLbLocal(), SCIPvarGetMultaggrUbGlobal(), SCIPvarGetMultaggrUbLocal(), SCIPvarIsTransformedOrigvar(), SCIPvarMarkNotDeletable(), SCIPvarMultiaggregate(), SCIPvarParseOriginal(), SCIPvarRemove(), SCIPvarTryAggregateVars(), SCIPvarWasFixedEarlier(), SCIPvbcCreate(), SCIPvboundsAdd(), SCIPwriteCliqueGraph(), SCIPwriteGms(), SCIPwriteImplicationConflictGraph(), SCIPwriteLP(), SCIPwriteMIP(), SCIPwriteNLP(), SCIPwriteOrigProblem(), SCIPwritePip(), SCIPwritePpm(), SCIPwriteTransProblem(), SCIPwriteVarName(), SCIPwriteVarsLinearsum(), SCIPwriteVarsList(), SCIPwriteVarsPolynomial(), selectSolsRandomized(), separateByAuxGraph(), separateByEnumerationHeuristics(), separateByGaussHeuristics(), separateBySolvingAuxIP(), separateCons(), separateConsBinaryRepresentation(), separateCoverCutsCons(), separateCuts(), separateGLS(), separateHeur(), separateIISRounding(), separateIndicators(), separatePoint(), separateSCIs(), separateSequLiftedExtendedWeightInequality(), separateSequLiftedMinimalCoverInequality(), separateSupLiftedMinimalCoverInequality(), separationRoundLP(), separationRoundResolveLP(), separationRoundSol(), sepastoreAddCut(), sepastoreApplyBdchg(), sepastoreApplyLb(), sepastoreApplyUb(), sepastoreIsBdchgApplicable(), sepastoreIsCutRedundant(), sepastoreIsCutRedundantOrInfeasible(), setObjective(), setupProbingSCIP(), setupSCIPparamsFP2(), setupSCIPparamsStage3(), setupSubproblem(), shortenConss(), simplifyInequalities(), singletonColumnStuffing(), solClearArrays(), solCutIsViolated(), solHasNewSource(), solOfInterest(), solveCoveringProblem(), solveDerivativeEquation(), solveIndependentCons(), solveLp(), solveLP(), solveNode(), solveNodeInitialLP(), solveNodeLP(), solveProbingLP(), solveSubMIP(), solveSubNLP(), solveSubproblem(), solveSubscip(), sortItems(), SORTTPL_NAME(), sortVariables(), storeMod2Data(), storeSolution(), subscipSetParams(), sumMIRRow(), sumStrongCGRow(), TCLIQUE_ISEDGE(), TCLIQUE_NEWSOL(), tcliqueAddEdge(), tcliqueAddNode(), tcliqueColoring(), tcliqueEnsureSizeNodes(), tcliqueFlush(), tcliquegraphAddImplics(), tcliquegraphAddImplicsCliqueVars(), tcliqueLoadFile(), tcliqueSaveFile(), tightenBoundDive(), tightenBounds(), tightenCapacity(), tightenCoefs(), tightenVarBounds(), tightenVarBoundsEasy(), tightenVarLb(), tightenVarUb(), tightenWeights(), tightenWeightsLift(), transformMIRRow(), transformStrongCGRow(), transformToOrig(), transformVariable(), treeCreateProbingNode(), treeFindSwitchForks(), treeSwitchPath(), tryAggregateIntVars(), tryDelta(), tryUpgradingXor(), undoBdchgsDualfarkas(), undoBdchgsDualsol(), undoBdchgsProof(), unlockRounding(), unsetFastmipClpParameters(), updateBestCandidate(), updateConsanddataUses(), updateCutoffbound(), updateDualBounds(), updateFirstRow(), updateLoopStatus(), updatePrimalRay(), upgradeCons(), upgradeIndicatorSuperindicator(), upgradeLinearSuperindicator(), upgradeSuperindicator(), useValuehistory(), varAddImplic(), varAddLbchginfo(), varAddTransitiveBinaryClosureImplic(), varAddTransitiveImplic(), varAddUbchginfo(), varCreate(), varMayRoundDown(), varMayRoundUp(), varParse(), varRemoveImplicsVbs(), varUpdateAggregationBounds(), vboundsSearchPos(), writeFzn(), writeOpbConstraints(), writeOpbObjective(), writeOpbRelevantAnds(), writeProblem(), xmlParse(), xmlProcess(), and ZerohalfCutDataCreate().

#define EXTERN   extern

Definition at line 71 of file def.h.

#define SCIP_VERSION   310

SCIP version number (multiplied by 100 to get integer number)

Definition at line 84 of file def.h.

Referenced by SCIPmajorVersion(), SCIPminorVersion(), SCIPparamsetWrite(), SCIPtechVersion(), and SCIPversion().

#define SCIP_SUBVERSION   0

SCIP sub version number

Definition at line 85 of file def.h.

Referenced by SCIPparamsetWrite(), and SCIPsubversion().

#define SCIP_COPYRIGHT   "Copyright (c) 2002-2014 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin (ZIB)"

Definition at line 86 of file def.h.

Referenced by SCIPprintVersion().

#define SCIP_VARTYPE_BINARY_CHAR   'B'
#define SCIP_VARTYPE_INTEGER_CHAR   'I'
#define SCIP_VARTYPE_IMPLINT_CHAR   'M'
#define SCIP_VARTYPE_CONTINUOUS_CHAR   'C'
#define SCIP_Longint   long long

type used for long integer values

Definition at line 107 of file def.h.

Referenced by addCliques(), addCoefTerm(), addCut(), addKnapsackConstraints(), addNegatedCliques(), aggregateVariables(), applyCuts(), applyFixings(), applyObbt(), applyVbounds(), checkCons(), checkKnapsack(), checkMinweightidx(), checkSolution(), collectSolution(), computeMinweightsGUB(), consdataChgWeight(), consdataUpdateSignatures(), countSparseSol(), createAndAddLinearCons(), createCapacityRestriction(), createCGCutCMIR(), createCGCutStrongCG(), createNormalizedKnapsack(), createSubscip(), cutpoolSeparate(), deleteRedundantVars(), detectImpliedBounds(), detectRedundantVars(), dualWeightsTightening(), execRelpscost(), filterBounds(), findNewBounds(), getCover(), getFlowCover(), getHighestCapacityUsage(), getIntegralVal(), getIterationsLeft(), getLinearConsVarsData(), getRelevantRows(), getVarSignature(), hashtableResize(), initMatrix(), makeCoverMinimal(), nodeRepropagate(), normalizeCons(), normalizeCumulativeCondition(), normalizeWeights(), paramCopyLongint(), paramParseLongint(), paramsetSetHeuristicsAggressive(), performFixing(), performLPRandRounding(), performLPSimpleRounding(), performRandRounding(), performStrongbranchWithPropagation(), prepareCons(), preprocessConstraintPairs(), presolve(), presolveTryAddLinearReform(), prettifyConss(), priceAndCutLoop(), printLinearCons(), printNLRow(), printNonLinearCons(), printPBRow(), printPseudobooleanCons(), printRow(), printTime(), printValue(), processWatchedVars(), propagateCons(), propAndSolve(), readOPBFile(), removeRedundantConstraints(), SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_CONSRESPROP(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_DISPOUTPUT(), SCIP_DECL_HEUREXEC(), SCIP_DECL_NODESELCOMP(), SCIP_DECL_NODESELSELECT(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_PROPEXEC(), SCIP_DECL_READERWRITE(), SCIP_DECL_SEPAEXECLP(), SCIPaddCoefPseudoboolean(), SCIPapplyProximity(), SCIPapplyUndercover(), SCIPbranchruleExecExternSol(), SCIPbranchruleExecLPSol(), SCIPbranchruleExecPseudoSol(), SCIPcalcBinomCoef(), SCIPcalcIntegralScalar(), SCIPcalcSmaComMul(), SCIPconshdlrEnforceLPSol(), SCIPconshdlrEnforcePseudoSol(), SCIPconshdlrPropagate(), SCIPconshdlrSeparateLP(), SCIPconshdlrSeparateSol(), SCIPcutpoolSeparate(), SCIPdispInt(), SCIPdispLongint(), SCIPdispTime(), SCIPgetVarStrongbranchWithPropagation(), SCIPheurExec(), SCIPlpGetSol(), SCIPlpGetUnboundedSol(), SCIPlpSolveAndEval(), SCIPparamsetSet(), SCIPprimalHeuristics(), SCIPprobScaleObj(), SCIPpropExec(), SCIPrealToRational(), SCIProwCalcIntegralScalar(), SCIPselectSimpleValue(), SCIPselectVarStrongBranching(), SCIPsepaExecLP(), SCIPsepaExecSol(), SCIPseparateKnapsackCuts(), SCIPseparateRelaxedKnapsack(), SCIPsolveCIP(), SCIPsolveDiveLP(), SCIPsolveKnapsackApproximately(), SCIPsolveKnapsackExactly(), SCIPsparseSolGetFirstSol(), SCIPsparseSolGetNextSol(), SCIPstatUpdateMemsaveMode(), SCIPtransformProb(), SCIPvbcNewChild(), SCIPwriteCcg(), SCIPwriteGms(), SCIPwriteLp(), SCIPwritePbm(), SCIPwritePip(), SCIPwritePpm(), separationRoundLP(), separationRoundSol(), sequentialUpAndDownLifting(), sequentialUpAndDownLiftingGUB(), setupSubproblem(), simplifyInequalities(), solveNode(), solveNodeInitialLP(), solveNodeLP(), solveProbingLP(), solveSubMIP(), solveSubscip(), stableSort(), superadditiveUpLifting(), tightenWeights(), tightenWeightsLift(), transformSols(), tryAggregateIntVars(), writeExpandedSolutions(), writeFzn(), writeOpbConstraints(), writeOpbObjective(), and writeOpbRelevantAnds().

#define SCIP_LONGINT_MIN   LLONG_MIN

Definition at line 109 of file def.h.

#define SCIP_Real   double

type used for floating point values

Definition at line 123 of file def.h.

Referenced by addAltLPConstraint(), addAltLPRow(), addBilinLinearization(), addBilinMcCormick(), addBoundViolated(), addCand(), addCliques(), addCoef(), addConcaveEstimatorBivariate(), addConcaveEstimatorMultivariate(), addConcaveEstimatorUnivariate(), addConflictBinvar(), addConflictBounds(), addConstraint(), addCut(), addExtendedAsymmetricFormulation(), addExtendedFlowFormulation(), addFlowrowToCommodity(), addGLSBinImpls(), addIntervalGradientEstimator(), addKnapsackConstraints(), addLinearization(), addLinearizationCuts(), addLocalBranchingConstraint(), addLogicOrConstraints(), addRelaxation(), addRow(), addRowToAggregation(), addSetppcConstraints(), addSideRemoval(), addSquareLinearization(), addSquareSecant(), addVarbound(), addVarboundConstraints(), adjustCutoffbound(), adjustOversizedJobBounds(), aggregateConstraints(), aggregateVariables(), aggregation(), analyseInfeasibelCoreInsertion(), analyzeConflict(), analyzeConflictLowerbound(), analyzeConflictOverload(), analyzeConflictUpperbound(), analyzeEnergyRequirement(), analyzeGenVBoundConflict(), analyzeStrongbranch(), applyAlternativeBoundsBranching(), applyAlternativeBoundsFixing(), applyBounding(), applyFixings(), applyGenVBound(), applyGlobalBounds(), applyImplic(), applyObbt(), applyProbing(), applyVariableAssignment(), applyVbounds(), boundchgApplyGlobal(), branch(), branchcandCalcLPCands(), branchCons(), calcActivityBounds(), calcColActivity(), calcColorValue(), calcEfficacy(), calcMaxObjPseudoactivity(), calcObjWeight(), calcPscostQuot(), calcScore(), calcShiftVal(), calculateAlternatives(), calculateBounds(), calcVarBoundsDominated(), calcVarBoundsDominating(), catchObjEvent(), changePartitionCovervars(), changePartitionFeasiblesetvars(), checkAltLPInfeasible(), checkAndConss(), checkArraySizesGLS(), checkArraySizesHeur(), checkBounddisjunction(), checkCons(), checkConsnames(), checkConstraintMatching(), checkEqualObjective(), checkFactorable(), checkFixedVariables(), checkImplic(), checkImplics(), checkImplicsApplied(), checkKnapsack(), checkLPBoundsClean(), checkOrigPbCons(), checkParallelObjective(), checkPartialObjective(), checkRedundancy(), checkRedundancySide(), checkSolOrig(), checkSolution(), checkSystemGF2(), checkValueScore(), checkVarbound(), checkViolations(), chgCoefPos(), chgLhs(), chgLinearCoefPos(), chgRhs(), chooseCoefVar(), chooseDoubleVar(), chooseFracVar(), chooseGuidedVar(), choosePscostVar(), chooseVeclenVar(), cleanupMIRRow(), clockSetType(), colCalcInternalFarkasCoef(), colCalcInternalRedcost(), collectBranchingCands(), collectMaxactVar(), collectMinactImplicVar(), collectMinactImplicVars(), collectMinactVar(), collectNonBinaryImplicationData(), collectNonBinaryVBoundData(), colSwapCoefs(), compareNodes(), computeBoundsX(), computeBoundsZ(), computeCut(), computeEstOmegaset(), computeFixingOrder(), computeFixingrate(), computeImpliedEst(), computeImpliedLct(), computeObjWeightSize(), computeRanks(), computeRelaxedLowerbound(), computeRelaxedUpperbound(), computeScore(), computeSCTable(), computeViolation(), computeViolations(), conflictAddConflictCons(), conflictAnalyze(), conflictAnalyzeLP(), conflictAnalyzeRemainingBdchgs(), conflictCreateReconvergenceConss(), conflictInsertConflictset(), conflictMarkBoundCheckPresence(), conflictResolveBound(), conflictsetAddBound(), conflictsetAddBounds(), conflictsetCalcScore(), consdataCalcMaxAbsval(), consdataCheckSuperindicator(), consdataComputePseudoActivity(), consdataGetActivity(), consdataGetActivityResiduals(), consdataGetFeasibility(), consdataGetGlbActivityResiduals(), consdataGetReliableResidualActivity(), consdataLinearize(), consdataPrint(), consdataRecomputeGlbMaxactivity(), consdataRecomputeGlbMinactivity(), consdataRecomputeMaxactivity(), consdataRecomputeMaxActivityDelta(), consdataRecomputeMinactivity(), consdataSort(), consdataTightenCoefs(), consdataUpdateActivities(), consdataUpdateAddCoef(), consdataUpdateChgCoef(), consdataUpdateDelCoef(), consdataUpdateLinearActivity(), consdataUpdateLinearActivityLbChange(), consdataUpdateLinearActivityUbChange(), consdataUpdateSignatures(), consFixInteger(), constructSNFRelaxation(), convertBoundToInt(), convertLongEquality(), convertToActiveVar(), convertUnaryEquality(), copyAndSolveComponent(), copyConsPseudoboolean(), copySol(), coretimesUpdateLb(), coretimesUpdateUb(), correctLocksAndCaptures(), costCalculation(), costFixing(), countNonZeroRootRedcostVars(), countSparseSol(), cputime2sec(), CREATE_CONSTRAINT(), createAndAddAndCons(), createAndAddLinearCons(), createCapacityRestriction(), createCapacityRestrictionIntvars(), createCGCutCMIR(), createCGCutDirect(), createCGCuts(), createCGCutStrongCG(), createConsFromMonomial(), createConsFromQuadTerm(), createConstantAssignment(), createCoverCutsTimepoint(), createCoveringProblem(), createEdgesFromRow(), createExprtreeFromMonomial(), createGenVBound(), createIndicatorConstraint(), createLinking(), createNAryBranch(), createNewSol(), createNewSols(), createNlRow(), createObjRow(), createPrecedenceCons(), createRelaxation(), createRow(), createRows(), createSolFromSubScipSol(), createSubproblem(), createSubSCIP(), createSubscip(), createVarUbs(), createZerohalfCutFromZerohalfWeightvector(), cutGenerationHeuristic(), CUTOFF_CONSTRAINT(), decomposeProblem(), delCoefPos(), delLinearCoefPos(), depthFirstSearch(), detectImpliedBounds(), detectParallelCols(), detectRedundantConstraints(), determineBound(), dijkstra(), domMerge(), dropObjEvent(), dualBoundStrengthening(), dualPresolve(), dualPresolving(), enforceConstraints(), enforceCuts(), enforceIndicators(), enforceSOS1(), enforceSOS2(), enforceViolatedFixedNonlinear(), eval(), evalFunctionGradient(), evalFunctionValue(), evalLhs(), evaluateAggrCand(), evaluateValueCand(), execRelpscost(), exprConvertToPolynomial(), exprgraphFindParentByOperator(), exprgraphNodeAddChildren(), exprgraphNodeCreateExpr(), exprgraphNodeEval(), exprgraphNodePropagateBounds(), exprgraphNodeSimplify(), exprgraphPrintNodeDot(), exprgraphPrintNodeExpression(), exprgraphUpdateVarNodeBounds(), exprParse(), exprsimplifyAddChildren(), exprsimplifyFlattenPolynomials(), exprUnconvertPolynomial(), extendToCover(), extractCapacities(), extractCapacityRows(), extractCliques(), extractFlow(), extractFlowRows(), extractLinearValues(), extractNodes(), filterExistingLP(), filterRound(), findAggregation(), findBestLb(), findBestUb(), findClosestLb(), findClosestUb(), findDominancePairs(), findUncapacitatedArcs(), fixAltLPVariable(), fixAltLPVariables(), fixAndPropagate(), fixColumns(), fixDeleteOrUpgradeCons(), fixDiscreteVars(), fixVariable(), fixVariables(), fixVariableZeroNode(), forbidCover(), forbidFixation(), freeMemory(), fullDualPresolve(), generate1ConvexIndefiniteUnderestimator(), generate1ConvexIndefiniteUnderestimatorAtBoundary(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternA(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternB(), generateAverageNBRay(), generateAverageRay(), generateCloseCutPoint(), generateClusterCuts(), generateConvexConcaveEstimator(), generateConvexConcaveUnderestimator(), generateCut(), generateCutConvex(), generateCutFactorable(), generateCutFactorableDo(), generateCutLTI(), generateCutLTIcomputeCoefs(), generateCutLTIfindIntersection(), generateCutLTIgenMulCoeff(), generateCutNonConvex(), generateCutPoint(), generateCutProjectedPoint(), generateCutSol(), generateCutUnboundedLP(), generateEstimatingHyperplane(), generateLinearizationCut(), generateLinearizationCutProject(), generateNeighborFacets(), generateOddCycleCut(), generateOrthogonal_lx_ly_Underestimator(), generateOrthogonal_lx_uy_Underestimator(), generateOverestimatingHyperplaneCut(), generateRowSOS1(), generateRowSOS2(), generateSecantCut(), generateSecantCutNoCheck(), generateSparseCut(), generateUnderestimatorParallelYFacets(), getActiveVar(), getActiveVariables2(), getActivityResidualsLowerBound(), getActivityResidualsUpperBound(), getAggrScore(), getBestCandidate(), getBinVarsRepresentatives(), getBounddist(), getBoundsForSubstitution(), getClosestLb(), getClosestUb(), getClosestVlb(), getClosestVub(), getConflictImplics(), getCover(), getDblParam(), getDualbound(), getFeasibleSet(), getFilterCoef(), getFixedVariable(), getFixingValue(), getFlowCover(), getFlowrowFit(), getGenVBoundsBound(), getGenVBoundsMinActivity(), getGenVBoundsMinActivityConflict(), getGradientMaxElement(), getGradientNorm(), getHighestCapacityUsage(), getImpliedBounds(), getIncidentNodes(), getIndCandVars(), getIntegralVal(), getL1L2(), getLiftingSequence(), getLiftingSequenceGUB(), getLinearCoeffs(), getLinearConsVarsData(), getMaxAbsWeightCalcSparsity(), getMaxactImplicObjchg(), getMaxActivity(), getMaxactObjchg(), getMaxColActWithoutRow(), getMaxObjPseudoactivityResidual(), getMaxObjPseudoactivityResidualValue(), getMinActivity(), getMinColActWithoutRow(), getMIRRowActivity(), getNActiveConsScore(), getNewSidesAfterAggregation(), getNextFlowrow(), getNLPFracVars(), getNodeSimilarityScore(), getObjective(), getOptimalShiftingValue(), getRedCostEst(), getRelevantColumns(), getRelevantRows(), getValueScore(), getVarObjchg(), getZiValue(), handle1Cycle(), handleCycle(), handleLinearCons(), hessLagAddExprtree(), hessLagSparsitySetNzFlagForExprtree(), identifySourcesTargets(), impliesVlbPrecedenceCondition(), impliesVubPrecedenceCondition(), infCounterUpdate(), inferboundsEdgeFinding(), initAlternativeLP(), initData(), initMatrix(), initSepaData(), initSepaDataCreateVred(), initSolve(), insertSortedRootNeighbors(), isBoundchgUseless(), isIntegralScalar(), isLbBetter(), isLiteralSatisfied(), isLiteralViolated(), isNeighbor(), isNewValueUnreliable(), isPseudocostUpdateValid(), isUbBetter(), lifting(), lpAlgorithm(), lpBarrier(), lpCheckRealpar(), lpDualSimplex(), lpFlushAddCols(), lpFlushAddRows(), lpFlushChgCols(), lpFlushChgRows(), lpGetResolveItlim(), lpiStrongbranch(), lpiStrongbranches(), lpiStrongbranchIntegral(), lpLexDualSimplex(), lpPrimalSimplex(), lpUpdateObjNorms(), lpUpdateVarColumn(), lpUpdateVarColumnProved(), lpUpdateVarLoose(), lpUpdateVarLooseProved(), makeCoverMinimal(), maximalslack(), mcfnetworkFill(), mergeAndCleanLinearVars(), mergeMultiples(), multiAggregateBinvar(), nlpAddNlRows(), nlpCalcFracVars(), nlpFlushNlRowAdditions(), nlpFlushObjective(), nlpFlushVarAdditions(), nlpRowChanged(), nlpSolve(), nlpUpdateObjCoef(), nlpUpdateVarBounds(), nlrowAddToLinearCoef(), nlrowCalcActivityBounds(), nlrowConstantChanged(), nlrowExprtreeParamChanged(), nlrowRemoveFixedExprtreeVars(), nlrowRemoveFixedLinearCoefPos(), nlrowRemoveFixedQuadVars(), nlrowSideChanged(), nodeGetUctScore(), nodepairqueueCreate(), nodepartitionCreate(), nodepqDelPos(), normalizeCons(), optimize(), paramCopyReal(), paramParseReal(), parseAggregation(), parseArray(), parseArrayDimension(), parseArrayIndex(), parseConstantArrayAssignment(), parseConstraint(), parseLinking(), parseOutputDimensioninfo(), parseQuadratic(), parseSolveItem(), parseVariable(), parseVariableArrayAssignment(), performBranching(), performDualfix(), performFixing(), performLPSimpleRounding(), performRandRounding(), performRelaxSimpleRounding(), performSimpleRounding(), performStrongbranchWithPropagation(), permSortConsdata(), perturb(), polishSolution(), polynomialdataExpandMonomialFactor(), polynomialdataPower(), predBndStr(), prepareCons(), preprocessColumns(), preprocessColumnsWithSmallFracsol(), preprocessConsiderMinSlack(), preprocessConstraintPairs(), preprocessRows(), preprocessTrivialZerohalfCuts(), presolComponents(), presolRoundIndicator(), presolRoundSOS1(), presolRoundSOS2(), presolve(), presolveConsEst(), presolveConsLct(), presolveCreateBenTalNemirovskiApproxDim3(), presolveCreateGlineurApproxDim3(), presolveDisaggregate(), presolveDual(), presolveFindDuplicates(), presolveFindDuplicatesUpgradeCons(), presolveRemoveFixedVariables(), presolveSolve(), presolveTryAddAND(), presolveTryAddLinearReform(), presolveUpgrade(), prettifyConss(), priceAndCutLoop(), primalAddSol(), primalExistsOrigSol(), primalExistsSol(), primalSearchOrigSolPos(), primalSearchSolPos(), primalSetUpperbound(), printActiveVariables(), printAggregatedCons(), printAndCons(), printBoundSection(), printColumnSection(), printConflictStatistics(), printConstraintTimingStatistics(), printDualSol(), printExpr(), printHolelist(), printIndicatorCons(), printLinearCons(), printLPStatistics(), printNonLinearCons(), printNonlinearCons(), printPBRow(), printPropagatorStatistics(), printPseudobooleanCons(), printQuadraticCons(), printRangeSection(), printRootStatistics(), printSOCCons(), printSolutionStatistics(), printSOSCons(), printTimingStatistics(), printTreeStatistics(), processWatchedVars(), projectVbd(), propagateBounds(), propagateBoundsCons(), propagateBoundsGetQuadActivity(), propagateBoundsTightenVar(), propagateCons(), propagateCutoffbound(), propagateCutoffboundBinvar(), propagateCutoffboundGlobally(), propagateCutoffboundVar(), propagateLbTTEF(), propagateLowerbound(), propagateLowerboundBinvar(), propagateLowerboundVar(), propagateRedcostBinvar(), propagateRedcostVar(), propagateRootRedcostBinvar(), propagateRootRedcostVar(), propagateTTEF(), propagateUbTTEF(), propagateVarbounds(), propagateVbounds(), propdataInit(), propIndicator(), proposeBranchingPoint(), proposeFeasibleSolution(), provedBound(), rangedRowSimplify(), readBinaries(), readBounds(), readCnf(), readCoefficients(), readCols(), readConstraints(), readExpression(), readFZNFile(), readGenerals(), readIndicators(), readLinearCoefs(), readNonlinearExprs(), readObjective(), readOPBFile(), readPolynomial(), readQCMatrix(), readQMatrix(), readQuadraticCoefs(), readRanges(), readRhs(), readSemicontinuous(), readSol(), readSOS(), readSos(), readSOScons(), readVariables(), readXMLSol(), recomputeLooseObjectiveValue(), reformMonomial(), reformNode2Var(), reformulate(), registerBranchingCandidates(), registerLargeLPValueVariableForBranching(), registerVariableInfeasibilities(), relaxVar(), removeDoubleAndSingletonsAndPerformDualpresolve(), removeFixedLinearVariables(), removeFixedNonlinearVariables(), removeFixedVariables(), replaceByLinearConstraints(), replaceQuadVarTermPos(), replaceViolatedByLinearConstraints(), resolveGenVBoundPropagation(), resolvePropagation(), resolvePropagationCoretimes(), respropCumulativeCondition(), roundFixingValue(), roundMIRRow(), roundStrongCGRow(), rowAddNorms(), rowCalcActivityBounds(), rowCalcIdxsAndVals(), rowChgCoefPos(), rowDelCoefPos(), rowDelNorms(), rowFindSlackVar(), rowMerge(), rowScale(), rowSwapCoefs(), scaleCons(), scaleFirstRow(), SCIP_DECL_BRANCHEXECEXT(), SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_BRANCHFREE(), SCIP_DECL_CONFLICTEXEC(), SCIP_DECL_CONSCHECK(), SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSENFOLP(), SCIP_DECL_CONSENFOPS(), SCIP_DECL_CONSEXITPRE(), SCIP_DECL_CONSINITLP(), SCIP_DECL_CONSINITPRE(), SCIP_DECL_CONSINITSOL(), SCIP_DECL_CONSLOCK(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_CONSPRINT(), SCIP_DECL_CONSRESPROP(), SCIP_DECL_CONSSEPALP(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_DISPOUTPUT(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_EXPRCOPYDATA(), SCIP_DECL_EXPRCURV(), SCIP_DECL_EXPREVAL(), SCIP_DECL_EXPRFREEDATA(), SCIP_DECL_EXPRGRAPHNODEREFORM(), SCIP_DECL_EXPRINTEVAL(), SCIP_DECL_HASHKEYEQ(), SCIP_DECL_HASHKEYVAL(), SCIP_DECL_HEUREXEC(), SCIP_DECL_HEUREXIT(), SCIP_DECL_LINCONSUPGD(), SCIP_DECL_NODESELCOMP(), SCIP_DECL_NODESELSELECT(), SCIP_DECL_NONLINCONSUPGD(), SCIP_DECL_PARAMCHGD(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_PROPEXEC(), SCIP_DECL_PROPPRESOL(), SCIP_DECL_PROPRESPROP(), SCIP_DECL_QUADCONSUPGD(), SCIP_DECL_READERREAD(), SCIP_DECL_READERWRITE(), SCIP_DECL_SEPAEXECLP(), SCIP_DECL_SEPAEXECSOL(), SCIP_DECL_SOLVECUMULATIVE(), SCIP_DECL_SORTINDCOMP(), SCIP_DECL_SORTPTRCOMP(), SCIPaddCoefLinear(), SCIPaddCut(), SCIPaddToNlpiProblemQuadratic(), SCIPaddToNlpiProblemSOC(), SCIPaddVarImplication(), SCIPaggregateVars(), SCIPanalyzeDeductionsProbing(), SCIPapplyHeurDualval(), SCIPapplyHeurSubNlp(), SCIPapplyProximity(), SCIPapplyUndercover(), SCIPapplyZeroobj(), SCIPbranchExecExtern(), SCIPbranchExecLP(), SCIPbranchExecPseudo(), SCIPbranchGetBranchingPoint(), SCIPbranchGetScore(), SCIPbranchGetScoreMultiple(), SCIPbranchruleExecExternSol(), SCIPbranchruleExecLPSol(), SCIPbranchruleExecPseudoSol(), SCIPcalcBinomCoef(), SCIPcalcIntegralScalar(), SCIPcalcMachineEpsilon(), SCIPcliquetableCleanup(), SCIPclockGetTime(), SCIPclockGetTimeOfDay(), SCIPcolCalcFarkasCoef(), SCIPcolCalcRedcost(), SCIPcolGetFarkasValue(), SCIPcolGetFeasibility(), SCIPcolGetStrongbranch(), SCIPcolGetStrongbranches(), SCIPcomputeLPRelIntPoint(), SCIPconflictAddBound(), SCIPconflictAddRelaxedBound(), SCIPconflictAnalyzePseudo(), SCIPconflictAnalyzeStrongbranch(), SCIPconflictIsVarUsed(), SCIPcopy(), SCIPcopyConsLinear(), SCIPcopyImplicationsCliques(), SCIPcopyOrig(), SCIPcreateConsIndicator(), SCIPcreateConsIndicatorLinCons(), SCIPcreateConsLinear(), SCIPcreateConsOrbitope(), SCIPcreateConsPseudoboolean(), SCIPcreateConsQuadratic(), SCIPcreateFiniteSolCopy(), SCIPcutGenerationHeuristicCmir(), SCIPendStrongbranch(), SCIPevalExprtreeSol(), SCIPexprAdd(), SCIPexprAddToLinear(), SCIPexprAreEqual(), SCIPexprCreate(), SCIPexprCreateLinear(), SCIPexprcurvMonomial(), SCIPexprcurvPower(), SCIPexprEval(), SCIPexprGetLinearCoefs(), SCIPexprGetLinearConstant(), SCIPexprgraphAddExprtreeSum(), SCIPexprgraphCreateNode(), SCIPexprgraphCreateNodeLinear(), SCIPexprgraphGetNodeLinearCoefs(), SCIPexprgraphGetNodeLinearConstant(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphGetSumTrees(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphReplaceVarByLinearSum(), SCIPexprgraphSimplify(), SCIPexprintHessianSparsityDense(), SCIPexprMonomialPower(), SCIPexprMulConstant(), SCIPexprPrint(), SCIPexprtreeRemoveFixedVars(), SCIPexprtreeSimplify(), SCIPfindSimpleRational(), SCIPfixVarProbing(), SCIPgetAvgConflictlengthScore(), SCIPgetAvgConflictlengthScoreCurrentRun(), SCIPgetAvgConflictScore(), SCIPgetAvgConflictScoreCurrentRun(), SCIPgetAvgCutoffScore(), SCIPgetAvgCutoffScoreCurrentRun(), SCIPgetAvgInferenceScore(), SCIPgetAvgInferenceScoreCurrentRun(), SCIPgetAvgPseudocostScore(), SCIPgetAvgPseudocostScoreCurrentRun(), SCIPgetGap(), SCIPgetLinDatasWithoutAndPseudoboolean(), SCIPgetRandomInt(), SCIPgetRandomReal(), SCIPgetReadingTime(), SCIPgetTransGap(), SCIPgetVarAvgCutoffScore(), SCIPgetVarAvgCutoffScoreCurrentRun(), SCIPgetVarAvgInferenceCutoffScore(), SCIPgetVarAvgInferenceCutoffScoreCurrentRun(), SCIPgetVarAvgInferenceScore(), SCIPgetVarAvgInferenceScoreCurrentRun(), SCIPgetVarConflictlengthScore(), SCIPgetVarConflictlengthScoreCurrentRun(), SCIPgetVarConflictScore(), SCIPgetVarConflictScoreCurrentRun(), SCIPgetVarCopy(), SCIPgetVarPseudocostScore(), SCIPgetVarPseudocostScoreCurrentRun(), SCIPgetVarStrongbranchWithPropagation(), SCIPgetVectorEfficacyNorm(), SCIPgetViolationAbspower(), SCIPhashmapPrintStatistics(), SCIPhashtableGetLoad(), SCIPhashtablePrintStatistics(), SCIPhistoryGetAvgBranchdepth(), SCIPhistoryGetAvgConflictlength(), SCIPhistoryGetAvgCutoffs(), SCIPhistoryGetAvgInferences(), SCIPhistoryUpdatePseudocost(), SCIPincludeSepaClique(), SCIPinferBinvarCons(), SCIPinferBinvarProp(), SCIPinferVarLbCons(), SCIPinferVarLbProp(), SCIPinferVarUbCons(), SCIPinferVarUbProp(), SCIPintervalExp(), SCIPintervalLog(), SCIPintervalMulInf(), SCIPintervalMulSup(), SCIPintervalPowerScalarInteger(), SCIPintervalPowerScalarIntegerInf(), SCIPintervalPowerScalarIntegerSup(), SCIPintervalPowerScalarScalar(), SCIPintervalQuad(), SCIPintervalQuadBivar(), SCIPintervalQuadUpperBound(), SCIPintervalSolveBivariateQuadExpressionAllScalar(), SCIPintervalSolveUnivariateQuadExpression(), SCIPintervalSolveUnivariateQuadExpressionPositiveAllScalar(), SCIPintervalSquare(), SCIPintervalSquareRoot(), SCIPlpCalcMIR(), SCIPlpCalcStrongCG(), SCIPlpComputeRelIntPoint(), SCIPlpEndDive(), SCIPlpGetDualfarkas(), SCIPlpGetModifiedProvedPseudoObjval(), SCIPlpGetModifiedPseudoObjval(), SCIPlpGetPrimalRay(), SCIPlpGetSol(), SCIPlpGetUnboundedSol(), SCIPlpiAddCols(), SCIPlpiAddRows(), SCIPlpiChgBounds(), SCIPlpiCreate(), SCIPlpiGetBase(), SCIPlpiGetBInvACol(), SCIPlpiGetBInvARow(), SCIPlpiGetIntpar(), SCIPlpiGetSolFeasibility(), SCIPlpiGetSolverName(), SCIPlpiIsStable(), SCIPlpiLoadColLP(), SCIPlpiScaleCol(), SCIPlpiScaleRow(), SCIPlpiSetState(), SCIPlpIsInfeasibilityProved(), SCIPlpiSolveDual(), SCIPlpiStrongbranchesInt(), SCIPlpiStrongbranchFrac(), SCIPlpiStrongbranchInt(), SCIPlpMarkFlushed(), SCIPlpSolveAndEval(), SCIPlpUpdateVarLb(), SCIPlpUpdateVarLbGlobal(), SCIPlpUpdateVarObj(), SCIPlpUpdateVarUb(), SCIPlpUpdateVarUbGlobal(), SCIPlpWriteMip(), SCIPmakeIndicatorFeasible(), SCIPnlpChgVarObjDive(), SCIPnlpEndDive(), SCIPnlpiOracleEvalJacobian(), SCIPnlpiOraclePrintProblem(), SCIPnlpiOraclePrintProblemGams(), SCIPnlrowAddLinearCoef(), SCIPnlrowGetNLPFeasibility(), SCIPnlrowGetPseudoFeasibility(), SCIPnlrowGetSolActivity(), SCIPnlrowGetSolFeasibility(), SCIPnlrowIsRedundant(), SCIPnlrowRecalcNLPActivity(), SCIPnlrowRecalcPseudoActivity(), SCIPnodeAddBoundinfer(), SCIPnodeAddHoleinfer(), SCIPnodepqInsert(), SCIPnodePropagateImplics(), SCIPnodeUpdateLowerbound(), SCIPnodeUpdateLowerboundLP(), SCIPparamsetSet(), SCIPparseVarsLinearsum(), SCIPparseVarsPolynomial(), SCIPpriceLoop(), SCIPpricestoreAddProbVars(), SCIPprimalHeuristics(), SCIPprimalSetCutoffbound(), SCIPprimalTransformSol(), SCIPprimalUpdateObjlimit(), SCIPprimalUpdateObjoffset(), SCIPprintBranchingStatistics(), SCIPprintLPSolutionQuality(), SCIPprintNodeRootPath(), SCIPprintSol(), SCIPprintSolReaderFzn(), SCIPprintVersion(), SCIPprobCheckObjIntegral(), SCIPprobExternObjval(), SCIPprobGetObjlim(), SCIPprobInternObjval(), SCIPprobPrintPseudoSol(), SCIPprobScaleObj(), SCIPprobUpdateBestRootSol(), SCIPpropagateCutoffboundVar(), SCIPreadProb(), SCIPrealarrayExtend(), SCIPrealarrayIncVal(), SCIPrealToRational(), SCIPrelDiff(), SCIPresolveSolHeurSubNlp(), SCIProwCalcIntegralScalar(), SCIProwChgConstant(), SCIProwChgLhs(), SCIProwChgRhs(), SCIProwGetLPActivity(), SCIProwGetLPEfficacy(), SCIProwGetLPFeasibility(), SCIProwGetNLPEfficacy(), SCIProwGetNLPFeasibility(), SCIProwGetObjParallelism(), SCIProwGetParallelism(), SCIProwGetPseudoActivity(), SCIProwGetPseudoFeasibility(), SCIProwGetRelaxEfficacy(), SCIProwGetRelaxFeasibility(), SCIProwGetScalarProduct(), SCIProwGetSolActivity(), SCIProwGetSolEfficacy(), SCIProwGetSolFeasibility(), SCIProwIsLPEfficacious(), SCIProwIsRedundant(), SCIProwIsSolEfficacious(), SCIProwMakeIntegral(), SCIPselectSimpleValue(), SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), SCIPseparateKnapsackCuts(), SCIPseparateRelaxedKnapsack(), SCIPsepastoreApplyCuts(), SCIPsetCutoffbounddelta(), SCIPsetIsFeasEQ(), SCIPsetIsFeasGE(), SCIPsetIsFeasGT(), SCIPsetIsFeasLE(), SCIPsetIsFeasLT(), SCIPsetIsLbBetter(), SCIPsetIsRelEQ(), SCIPsetIsRelGE(), SCIPsetIsRelGT(), SCIPsetIsRelLE(), SCIPsetIsRelLT(), SCIPsetIsScalingIntegral(), SCIPsetIsSumRelEQ(), SCIPsetIsSumRelGE(), SCIPsetIsSumRelGT(), SCIPsetIsSumRelLE(), SCIPsetIsSumRelLT(), SCIPsetIsUbBetter(), SCIPsetIsUpdateUnreliable(), SCIPsetNLPInitialGuessSol(), SCIPsetObjlimit(), SCIPsetRelaxSolValsSol(), SCIPshrinkDisjunctiveVarSet(), SCIPsolAdjustImplicitSolVals(), SCIPsolCheck(), SCIPsolGetRayVal(), SCIPsolGetVal(), SCIPsolIncVal(), SCIPsolPrint(), SCIPsolPrintRay(), SCIPsolRecomputeObj(), SCIPsolRetransform(), SCIPsolRound(), SCIPsolsAreEqual(), SCIPsolSetVal(), SCIPsolUpdateVarObj(), SCIPsolUpdateVarsum(), SCIPsolveCIP(), SCIPsolveKnapsackApproximately(), SCIPsolveKnapsackApproximatelyLT(), SCIPsolveKnapsackExactly(), SCIPstatUpdateMemsaveMode(), SCIPstatUpdatePrimalDualIntegral(), SCIPstoreSolutionGap(), SCIPtightenVarLb(), SCIPtightenVarLbGlobal(), SCIPtightenVarUb(), SCIPtightenVarUbGlobal(), SCIPtransformProb(), SCIPtreeBranchVar(), SCIPtreeBranchVarHole(), SCIPtreeBranchVarNary(), SCIPtreeCalcChildEstimate(), SCIPtreeCalcNodeselPriority(), SCIPtreeGetAvgLowerbound(), SCIPtreeGetLowerbound(), SCIPtreeGetLowerboundNode(), SCIPtreeGetPrioChild(), SCIPtreeGetPrioSibling(), SCIPupgradeConsLinear(), SCIPvarAddHoleGlobal(), SCIPvarAddHoleLocal(), SCIPvarAddObj(), SCIPvarAddVlb(), SCIPvarAddVub(), SCIPvarAggregate(), SCIPvarChgLbDive(), SCIPvarChgLbGlobal(), SCIPvarChgLbLocal(), SCIPvarChgObj(), SCIPvarChgUbDive(), SCIPvarChgUbGlobal(), SCIPvarChgUbLocal(), SCIPvarCopy(), SCIPvarFix(), SCIPvarFlattenAggregationGraph(), SCIPvarGetActiveRepresentatives(), SCIPvarGetAggregatedObj(), SCIPvarGetAvgInferences(), SCIPvarGetAvgInferencesCurrentRun(), SCIPvarGetAvgSol(), SCIPvarGetBestRootSol(), SCIPvarGetClosestVlb(), SCIPvarGetClosestVub(), SCIPvarGetImplRedcost(), SCIPvarGetLPSol_rec(), SCIPvarGetMultaggrLbGlobal(), SCIPvarGetMultaggrLbLocal(), SCIPvarGetMultaggrUbGlobal(), SCIPvarGetMultaggrUbLocal(), SCIPvarGetNLPSol_rec(), SCIPvarGetPseudoSol_rec(), SCIPvarGetRedcost(), SCIPvarGetRelaxSol(), SCIPvarGetRootSol(), SCIPvarMultiaggregate(), SCIPvarParseOriginal(), SCIPvarParseTransformed(), SCIPvarPrint(), SCIPvarTransform(), SCIPvarTryAggregateVars(), SCIPvarUpdateBestRootSol(), SCIPvbcCutoffNode(), SCIPvbcNewChild(), SCIPvbcSolvedNode(), SCIPvbcUpdateChild(), SCIPversion(), SCIPwriteCcg(), SCIPwriteGms(), SCIPwriteLp(), SCIPwritePbm(), SCIPwritePip(), SCIPwritePpm(), selectBranchVar(), selectEssentialRounding(), selectRounding(), selectShifting(), separateByAuxGraph(), separateByEnumerationHeuristics(), separateBySolvingAuxIP(), separateCons(), separateConsBinaryRepresentation(), separateCoverCutsCons(), separateCuts(), separateGLS(), separateHeur(), separateIISRounding(), separateIndicators(), separatePoint(), separateSCIs(), separateSequLiftedExtendedWeightInequality(), separateSequLiftedMinimalCoverInequality(), separateSupLiftedMinimalCoverInequality(), sepastoreAddCut(), sepastoreApplyBdchg(), sepastoreApplyCut(), sepastoreGetBestCut(), sepastoreIsBdchgApplicable(), sepastoreIsCutRedundant(), sepastoreIsCutRedundantOrInfeasible(), sepastoreUpdateOrthogonalities(), sequentialUpAndDownLifting(), setAltLPObj(), setAltLPObjZero(), setColumnMajorFormat(), setObjective(), shiftValues(), shortenConss(), simplifyInequalities(), singletonColumns(), singletonColumnStuffing(), solCutIsViolated(), solOfInterest(), solUnlinkVar(), solveCoveringProblem(), solveDerivativeEquation(), solveIndependentCons(), solveLp(), solveNode(), solveNodeInitialLP(), solveNodeLP(), solveNodeRelax(), solveSubMIP(), solveSubNLP(), solveSubproblem(), solveSubscip(), sortVariables(), splitOffLinearPart(), splitProblem(), storeCutInArrays(), storeMod2Data(), storeSolution(), strengthVarbaounds(), substituteMIRRow(), substituteStrongCGRow(), sumMIRRow(), sumStrongCGRow(), superadditiveUpLifting(), TCLIQUE_NEWSOL(), tcliquegraphConstructCliqueTable(), tightenBoundDive(), tightenBounds(), tightenCoefs(), tightenedIntvar(), tightenLbTTEF(), tightenUbTTEF(), tightenVarBounds(), tightenVarBoundsEasy(), tightenVarLb(), tightenVarUb(), transformColumn(), transformMIRRow(), transformSols(), transformStrongCGRow(), transformVariable(), treeAddPendingBdchg(), treeApplyPendingBdchgs(), treeChildrenToSiblings(), tryAggregateIntVars(), tryDelta(), tryUpgradingLogicor(), tryUpgradingSetppc(), tryUpgradingXor(), undoBdchgsDualfarkas(), undoBdchgsDualsol(), undoBdchgsProof(), unfixAltLPVariable(), unfixAltLPVariables(), updateActivities(), updateBestCandidate(), updateBounds(), updateCutoffbound(), updateDualBounds(), updateEstimate(), updateNActiveConts(), updatePrimalRay(), updatePseudocost(), updateRowActivities(), updateSlacks(), updateStatistics(), updateTransformation(), updateViolations(), upgradeIndicatorSuperindicator(), upgradeLinearSuperindicator(), varAddImplic(), varAddTransitiveBinaryClosureImplic(), varAddTransitiveImplic(), varAddVbound(), varMayRoundDown(), varMayRoundUp(), varParse(), varProcessAddHoleGlobal(), varProcessAddHoleLocal(), varProcessChgBranchFactor(), varProcessChgLbGlobal(), varProcessChgLbLocal(), varProcessChgUbGlobal(), varProcessChgUbLocal(), varRemoveImplicsVbs(), varUpdateAggregationBounds(), walltime2sec(), writeExpandedSolutions(), writeFzn(), and writeOpbConstraints().

#define SCIP_REAL_MAX   (SCIP_Real)DBL_MAX

Definition at line 124 of file def.h.

Referenced by chooseVeclenVar(), conflictCreateReconvergenceConss(), conflictRemoveCand(), enforceSOS1(), exprgraphCreateNode(), extractCapacityRows(), generateAverageNBRay(), generateAverageRay(), getFlowCover(), SCIP_DECL_CONSINITSOL(), SCIP_DECL_HEUREXEC(), SCIPapplyUndercover(), SCIPcalcIntegralScalar(), SCIPexprgraphAddNode(), SCIPexprgraphAddVars(), SCIPexprgraphEnableNode(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphReplaceVarByLinearSum(), SCIPincludeBranchruleInference(), SCIPincludeBranchrulePscost(), SCIPincludeBranchruleRelpscost(), SCIPincludeConshdlrIndicator(), SCIPincludeConshdlrLinear(), SCIPincludeHeurActconsdiving(), SCIPincludeHeurClique(), SCIPincludeHeurCoefdiving(), SCIPincludeHeurCrossover(), SCIPincludeHeurDins(), SCIPincludeHeurFeaspump(), SCIPincludeHeurFracdiving(), SCIPincludeHeurGuideddiving(), SCIPincludeHeurIntdiving(), SCIPincludeHeurLinesearchdiving(), SCIPincludeHeurLocalbranching(), SCIPincludeHeurNlpdiving(), SCIPincludeHeurObjpscostdiving(), SCIPincludeHeurPscostdiving(), SCIPincludeHeurRins(), SCIPincludeHeurRootsoldiving(), SCIPincludeHeurUndercover(), SCIPincludeHeurVeclendiving(), SCIPincludeNodeselBfs(), SCIPincludeNodeselEstimate(), SCIPincludeNodeselHybridestim(), SCIPincludePresolComponents(), SCIPincludePropObbt(), SCIPincludeReaderGms(), SCIPincludeSepaCGMIP(), SCIPincludeSepaClique(), SCIPincludeSepaClosecuts(), SCIPincludeSepaCmir(), SCIPincludeSepaFlowcover(), SCIPincludeSepaGomory(), SCIPincludeSepaMcf(), SCIPincludeSepaRapidlearning(), SCIPincludeSepaStrongcg(), SCIPintervalExp(), SCIPintervalLog(), SCIPintervalPowerScalar(), SCIPintervalPowerScalarInteger(), SCIPintervalPowerScalarScalar(), SCIPintervalSignPowerScalar(), SCIPintervalSolveUnivariateQuadExpressionPositiveAllScalar(), SCIPintervalSquareRoot(), SCIPparamSetReal(), SCIProwCalcIntegralScalar(), SCIPsetCreate(), SCIPsolveCIP(), SCIPstatReset(), SCIPtreeBranchVarNary(), SCIPvarGetClosestVub(), selectShifting(), separateCuts(), and varCreate().

#define SCIP_REAL_FORMAT   "lf"

Definition at line 126 of file def.h.

Referenced by checkCons(), paramParseReal(), and SCIP_DECL_DIALOGEXEC().

#define SCIP_DEFAULT_INFINITY   1e+20
#define SCIP_DEFAULT_EPSILON   1e-09

default upper bound for floating points to be considered zero

Definition at line 129 of file def.h.

Referenced by createConstraint(), SCIP_DECL_HASHKEYEQ(), SCIPcalcIntegralScalar(), SCIPnlpiOracleAddVars(), SCIPnlpiOracleChgConsSides(), SCIPnlpiOracleChgVarBounds(), SCIProwPrint(), and SCIPsetCreate().

#define SCIP_DEFAULT_SUMEPSILON   1e-06

default upper bound for sums of floating points to be considered zero

Definition at line 130 of file def.h.

Referenced by rowCalcActivityBounds(), SCIP_DECL_HASHKEYEQ(), SCIProwRecalcPseudoActivity(), and SCIPsetCreate().

#define SCIP_DEFAULT_FEASTOL   1e-06

default feasibility tolerance for constraints

Definition at line 131 of file def.h.

Referenced by SCIP_DECL_NLPICREATEPROBLEM(), and SCIPsetCreate().

#define SCIP_DEFAULT_LPFEASTOL   1e-06

default primal feasibility tolerance of LP solver

Definition at line 132 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_DEFAULT_DUALFEASTOL   1e-07

default feasibility tolerance for reduced costs

Definition at line 133 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_DEFAULT_BARRIERCONVTOL   1e-10

default convergence tolerance used in barrier algorithm

Definition at line 134 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_DEFAULT_BOUNDSTREPS   0.05

default minimal relative improve for strengthening bounds

Definition at line 135 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_DEFAULT_PSEUDOCOSTEPS   1e-01

default minimal variable distance value to use for pseudo cost updates

Definition at line 136 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_DEFAULT_PSEUDOCOSTDELTA   1e-04

default minimal objective distance value to use for pseudo cost updates

Definition at line 137 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_DEFAULT_RECOMPFAC   1e+07

default minimal decrease factor that causes the recomputation of a value (e.g., pseudo objective) instead of an update

Definition at line 138 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_DEFAULT_HUGEVAL   1e+15

values larger than this are considered huge and should be handled separately (e.g., in activity computation)

Definition at line 139 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_MAXEPSILON   1e-03

maximum value for any numerical epsilon

Definition at line 140 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_MINEPSILON   1e-20

minimum value for any numerical epsilon

Definition at line 141 of file def.h.

Referenced by SCIPsetCreate().

#define SCIP_INVALID   1e+99

floating point value is not valid

Definition at line 142 of file def.h.

Referenced by addBilinearTerm(), addFlowrowToCommodity(), addLinearCoef(), addQuadVarTerm(), branchcandCalcLPCands(), catchLinearVarEvents(), checkAltLPInfeasible(), chgLinearCoefPos(), chooseCoefVar(), chooseDoubleVar(), chooseFracVar(), chooseGuidedVar(), choosePscostVar(), coefChanged(), colCalcInternalFarkasCoef(), colCalcInternalRedcost(), collectNonBinaryImplicationData(), collectNonBinaryVBoundData(), computeScore(), computeViolation(), conflictAnalyzeLP(), consdataAddExprtrees(), consdataCalcActivities(), consdataCalcMaxAbsval(), consdataCreate(), consdataCreateEmpty(), consdataGetActivityBounds(), consdataGetActivityResiduals(), consdataGetGlbActivityBounds(), consdataGetGlbActivityResiduals(), consdataGetMaxAbsval(), consdataInvalidateActivities(), consdataSetExprtrees(), consdataUpdateActivities(), consdataUpdateAddCoef(), consdataUpdateChgCoef(), consdataUpdateDelCoef(), consdataUpdateLinearActivity(), consdataUpdateLinearActivityLbChange(), consdataUpdateLinearActivityUbChange(), CREATE_CONSTRAINT(), createNodedata(), createSolFromNLP(), createSolFromSubScipSol(), delLinearCoefPos(), delQuadVarTermPos(), dualPresolving(), execRelpscost(), exprgraphCreateNode(), exprgraphNodeEval(), exprgraphNodeSimplify(), extractCapacityRows(), extractFlowRows(), generate1ConvexIndefiniteUnderestimator(), generateCutLTIcomputeCoefs(), generateCutLTIfindIntersection(), generateOverestimatingHyperplaneCut(), getBestCandidate(), getDualbound(), getMaxObjPseudoactivityResidualValue(), initSolve(), invalidateSolution(), isNewValueUnreliable(), isPseudocostUpdateValid(), lpDelColset(), lpDelRowset(), lpFlushAddCols(), lpFlushAddRows(), lpFlushChgCols(), lpFlushChgRows(), lpFlushDelCols(), lpFlushDelRows(), lpRestoreSolVals(), lpSetBarrierconvtol(), lpSetDualfeastol(), lpSetFeastol(), lpSetIterationLimit(), lpSetUobjlim(), markColDeleted(), markRowDeleted(), mergeMultiples(), nlpCalcFracVars(), nlpSolve(), nlrowConstantChanged(), nlrowExprtreeChanged(), nlrowExprtreeParamChanged(), nlrowLinearCoefChanged(), nlrowQuadElemChanged(), normalizeCons(), parseLinking(), parseQuadratic(), presolve(), presolveDual(), presolveRound(), printDualSol(), propagateBoundsCons(), propagateLowerbound(), propagateRootRedcostBinvar(), propagateRootRedcostVar(), propdataInit(), propdataReset(), proposeBranchingPoint(), rangedRowSimplify(), readVariables(), registerBranchingVariables(), registerLargeLPValueVariableForBranching(), registerVariableInfeasibilities(), removeBilinearTermsPos(), replaceQuadVarTermPos(), rowRestoreSolVals(), rowStoreSolVals(), SCIP_DECL_BRANCHEXECEXT(), SCIP_DECL_CONSCHECK(), SCIP_DECL_CONSENFOPS(), SCIP_DECL_DISPOUTPUT(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_HEUREXEC(), SCIP_DECL_NLPISOLVE(), SCIP_DECL_PROPEXEC(), SCIPaddQuadVarLinearCoefQuadratic(), SCIPaddSquareCoefQuadratic(), SCIPbranchExecLP(), SCIPbranchExecPseudo(), SCIPbranchGetBranchingPoint(), SCIPbranchVar(), SCIPcalcIntegralScalar(), SCIPcolCreate(), SCIPcolGetFarkasCoef(), SCIPcolGetRedcost(), SCIPcolGetStrongbranch(), SCIPcolGetStrongbranches(), SCIPcolInvalidateStrongbranchData(), SCIPcreateConsNonlinear2(), SCIPeventGetHoleLeft(), SCIPeventGetHoleRight(), SCIPeventGetNewobj(), SCIPeventGetOldobj(), SCIPeventGetRowNewCoefVal(), SCIPeventGetRowNewConstVal(), SCIPeventGetRowNewSideVal(), SCIPeventGetRowOldCoefVal(), SCIPeventGetRowOldConstVal(), SCIPeventGetRowOldSideVal(), SCIPexprgraphAddNode(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphReplaceVarByLinearSum(), SCIPgetActivityLinear(), SCIPgetDualfarkasKnapsack(), SCIPgetDualfarkasLinear(), SCIPgetDualfarkasLogicor(), SCIPgetDualfarkasSetppc(), SCIPgetDualfarkasVarbound(), SCIPgetDualsolKnapsack(), SCIPgetDualsolLinear(), SCIPgetDualsolLogicor(), SCIPgetDualsolSetppc(), SCIPgetDualsolVarbound(), SCIPgetFeasibilityLinear(), SCIPgetFirstLPLowerboundRoot(), SCIPgetLhsLinear(), SCIPgetLhsPseudoboolean(), SCIPgetLhsVarbound(), SCIPgetLocalDualbound(), SCIPgetLocalLowerbound(), SCIPgetLocalOrigEstimate(), SCIPgetLocalTransEstimate(), SCIPgetNLPObjval(), SCIPgetRelaxSolObj(), SCIPgetRelaxSolVal(), SCIPgetRhsLinear(), SCIPgetRhsPseudoboolean(), SCIPgetRhsVarbound(), SCIPgetVarFarkasCoef(), SCIPgetVarImplRedcost(), SCIPgetVarLbDive(), SCIPgetVarObjDive(), SCIPgetVarRedcost(), SCIPgetVarUbDive(), SCIPgetVbdcoefVarbound(), SCIPgetViolationNonlinear(), SCIPlpComputeRelIntPoint(), SCIPlpCreate(), SCIPlpGetColumnObjval(), SCIPlpGetDualfarkas(), SCIPlpGetLooseObjval(), SCIPlpGetObjval(), SCIPlpGetRootObjval(), SCIPlpGetUnboundedSol(), SCIPlpiGetRealSolQuality(), SCIPlpiIsStable(), SCIPlpInvalidateRootObjval(), SCIPlpSetCutoffbound(), SCIPnlpCreate(), SCIPnlpEndDive(), SCIPnlrowCreate(), SCIPnlrowGetActivityBounds(), SCIPnlrowGetNLPActivity(), SCIPnlrowGetPseudoActivity(), SCIPnlrowGetSolActivity(), SCIPnlrowRecalcNLPActivity(), SCIPnodeAddBoundinfer(), SCIPparseVarsPolynomial(), SCIPprimalCreate(), SCIPprintLPSolutionQuality(), SCIPprobCreate(), SCIPprobExitSolve(), SCIPprobGetObjlim(), SCIPprobTransform(), SCIPprobUpdateBestRootSol(), SCIPprobUpdateDualbound(), SCIPrealarrayIncVal(), SCIProwCalcIntegralScalar(), SCIProwChgConstant(), SCIProwCreate(), SCIProwGetLPActivity(), SCIProwGetMaxActivity(), SCIProwGetMinActivity(), SCIProwGetPseudoActivity(), SCIProwRecalcLPActivity(), SCIPsepastoreApplyCuts(), SCIPsepastoreRemoveInefficaciousCuts(), SCIPsetCreate(), SCIPsetInitsolPlugins(), SCIPsetLpfeastol(), SCIPshrinkDisjunctiveVarSet(), SCIPsolCheck(), SCIPsolGetVal(), SCIPtreeBranchVar(), SCIPtreeBranchVarNary(), SCIPvarGetBestRootLPObjval(), SCIPvarGetBestRootRedcost(), SCIPvarGetLbAtIndex(), SCIPvarGetLbLP(), SCIPvarGetLPSol_rec(), SCIPvarGetNLPSol_rec(), SCIPvarGetPseudoSol_rec(), SCIPvarGetRelaxSol(), SCIPvarGetRootSol(), SCIPvarGetUbAtIndex(), SCIPvarGetUbLP(), selectBranchVar(), sepastoreAddCut(), sepastoreApplyBdchg(), sepastoreApplyCut(), sepastoreGetBestCut(), sepastoreUpdateOrthogonalities(), simplifyInequalities(), tightenBounds(), updateBestCandidate(), updateMaxObjPseudoactivity(), updatePseudocost(), and varCreate().

#define REALABS (   x)    (fabs(x))

Definition at line 146 of file def.h.

Referenced by addBilinLinearization(), addBilinMcCormick(), addCoef(), addConcaveEstimatorBivariate(), addConcaveEstimatorMultivariate(), addConcaveEstimatorUnivariate(), addLinearization(), addLinearizationCuts(), addRelaxation(), addSquareLinearization(), addSquareSecant(), aggregateConstraints(), aggregation(), analyzeConflict(), analyzeGenVBoundConflict(), applyFixings(), checkCons(), checkFixedVariables(), checkRedundancySide(), collectMinactImplicVar(), computeBoundsX(), computeBoundsZ(), computeCut(), computeRanks(), computeViolation(), consdataCalcMaxAbsval(), consdataGetReliableResidualActivity(), consdataRecomputeMaxActivityDelta(), consdataUpdateActivities(), consdataUpdateAddCoef(), consdataUpdateChgCoef(), consdataUpdateDelCoef(), convertLongEquality(), createSolFromSubScipSol(), createSubproblem(), createSubSCIP(), createSubscip(), dualPresolve(), enforceSOS1(), enforceSOS2(), evaluateAggrCand(), evaluateValueCand(), extractCliques(), fixDiscreteVars(), fixVariables(), fullDualPresolve(), generate1ConvexIndefiniteUnderestimator(), generate1ConvexIndefiniteUnderestimatorAtBoundary(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternA(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternB(), generateClusterCuts(), generateConvexConcaveUnderestimator(), generateCut(), generateCutUnboundedLP(), generateEstimatingHyperplane(), generateOrthogonal_lx_ly_Underestimator(), generateOrthogonal_lx_uy_Underestimator(), generateRowSOS2(), generateSecantCut(), generateSecantCutNoCheck(), generateSparseCut(), generateUnderestimatorParallelYFacets(), getClosestVlb(), getClosestVub(), getConflictImplics(), getGradientMaxElement(), getMaxAbsWeightCalcSparsity(), getMinactImplicObjchg(), getObjvalDeltaLb(), getObjvalDeltaObj(), getObjvalDeltaUb(), getRelevantRows(), initSolve(), isLbBetter(), isNewValueUnreliable(), isPseudocostUpdateValid(), isUbBetter(), lifting(), lpUpdateObjNorms(), lpUpdateObjval(), lpUpdateVarProved(), nodeGetUctScore(), nodepairqueueCreate(), normalizeCons(), performDualfix(), preprocessConstraintPairs(), presolveDisaggregate(), presolveFindDuplicates(), presolveFindDuplicatesSolveEquations(), presolveRemoveFixedVariables(), presolveTryAddLinearReform(), prettifyConss(), primalExistsSol(), printLinearCons(), printRootStatistics(), printSolutionStatistics(), propagateCons(), propIndicator(), proposeFeasibleSolution(), readRanges(), registerBranchingCandidates(), registerLargeLPValueVariableForBranching(), registerVariableInfeasibilities(), rowAddNorms(), rowCalcActivityBounds(), rowCalcIdxsAndVals(), rowDelNorms(), scaleCons(), scaleFirstRow(), SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_CONSCHECK(), SCIP_DECL_CONSINITLP(), SCIP_DECL_CONSINITSOL(), SCIP_DECL_CONSLOCK(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_DISPOUTPUT(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_EXPRGRAPHNODEREFORM(), SCIP_DECL_HASHKEYEQ(), SCIP_DECL_HASHKEYVAL(), SCIP_DECL_HEUREXEC(), SCIP_DECL_LINCONSUPGD(), SCIP_DECL_NONLINCONSUPGD(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_SORTINDCOMP(), SCIP_DECL_SORTPTRCOMP(), SCIPaddBilinTermQuadratic(), SCIPaddCoefLinear(), SCIPaddConstantQuadratic(), SCIPaddLinearVarNonlinear(), SCIPaddLinearVarQuadratic(), SCIPaddQuadVarLinearCoefQuadratic(), SCIPaddQuadVarQuadratic(), SCIPaddSquareCoefQuadratic(), SCIPapplyHeurDualval(), SCIPbranchGetBranchingPoint(), SCIPcalcIntegralScalar(), SCIPcolGetFeasibility(), SCIPcreateConsAbspower(), SCIPcreateConsBivariate(), SCIPcreateConsIndicator(), SCIPcreateConsLinear(), SCIPcutGenerationHeuristicCmir(), SCIPdispTime(), SCIPgetGap(), SCIPgetTransGap(), SCIPgetVectorEfficacyNorm(), SCIPgetViolationAbspower(), SCIPhistoryUpdatePseudocost(), SCIPintervalQuadBivar(), SCIPintervalSolveBivariateQuadExpressionAllScalar(), SCIPlpCalcMIR(), SCIPlpComputeRelIntPoint(), SCIPlpGetModifiedProvedPseudoObjval(), SCIPlpGetModifiedPseudoObjval(), SCIPlpiSetState(), SCIPlpWriteMip(), SCIPmakeIndicatorFeasible(), SCIPnlpiOracleSetObjective(), SCIPnlrowCreate(), SCIPprobScaleObj(), SCIPrealToRational(), SCIPrelDiff(), SCIPresolveSolHeurSubNlp(), SCIProwAddConstant(), SCIProwCalcIntegralScalar(), SCIProwChgConstant(), SCIProwGetObjParallelism(), SCIProwGetParallelism(), SCIProwPrint(), SCIPseparateRelaxedKnapsack(), SCIPsetIsLbBetter(), SCIPsetIsScalingIntegral(), SCIPsetIsUbBetter(), SCIPsolGetRayVal(), SCIPstatUpdatePrimalDualIntegral(), SCIPstoreSolutionGap(), SCIPtransformProb(), SCIPvarAddToRow(), SCIPvarGetProbvarBinary(), SCIPvarTryAggregateVars(), selectBranchVar(), separatePoint(), sepastoreApplyBdchg(), simplifyInequalities(), solCutIsViolated(), solveSubNLP(), storeCutInArrays(), sumMIRRow(), transformMIRRow(), undoBdchgsDualfarkas(), updateBestCandidate(), upgradeConss(), and varAddImplic().

#define EPSLT (   x,
  y,
  eps 
)    ((x)-(y) < -(eps))
#define EPSLE (   x,
  y,
  eps 
)    ((x)-(y) <= (eps))
#define EPSGT (   x,
  y,
  eps 
)    ((x)-(y) > (eps))
#define EPSGE (   x,
  y,
  eps 
)    ((x)-(y) >= -(eps))
#define EPSCEIL (   x,
  eps 
)    (ceil((x)-(eps)))
#define EPSROUND (   x,
  eps 
)    (ceil((x)-0.5+(eps)))
#define EPSFRAC (   x,
  eps 
)    ((x)-EPSFLOOR(x,eps))

Definition at line 158 of file def.h.

Referenced by SCIPsetFeasFrac(), SCIPsetFrac(), and SCIPsetSumFrac().

#define SCIP_MAXSTRLEN   1024

maximum string length in SCIP

Definition at line 196 of file def.h.

Referenced by addCliques(), addCut(), addExtendedAsymmetricFormulation(), addExtendedFlowFormulation(), addExtraCliques(), addFixParamDialog(), addLocalBranchingConstraint(), addObjCutoff(), addRelaxation(), addSetParamDialog(), addVarbound(), adjustOversizedJobBounds(), applyFixings(), btPrintSubtree(), cliquePresolve(), computeEffectiveHorizon(), computeMinDistance(), consdataCollectLinkingCons(), consdataCreateBinvars(), convertLongEquality(), copyAndSolveComponent(), copyCuts(), createAndAddAndCons(), createAndAddLinearCons(), createCapacityRestriction(), createCapacityRestrictionIntvars(), createCGCutCMIR(), createCGCutDirect(), createCGCutStrongCG(), createConflict(), createCoverCutsTimepoint(), createCoveringProblem(), createRelaxation(), createRows(), createSubSCIP(), createSubscip(), createZerohalfCutFromZerohalfWeightvector(), deleteRedundantVars(), detectRedundantVars(), displayRelevantStats(), dualPresolve(), exprparseReadVariable(), extractGates(), findAggregation(), findCumulativeConss(), fixDeleteOrUpgradeCons(), forbidCover(), forbidFixation(), generateConvexConcaveEstimator(), generateCut(), generateCutConvex(), generateCutFactorableDo(), generateCutLTI(), generateCutNonConvex(), generateCutPoint(), generateCutProjectedPoint(), generateCutSol(), generateLinearizationCut(), generateOddCycleCut(), generateRowSOS1(), generateRowSOS2(), generateSecantCut(), getFixedVariable(), handleMessage(), lpBarrier(), lpDualSimplex(), lpPrimalSimplex(), newsolCliqueAddRow(), paramsetSetHeuristicsAggressive(), paramsetSetHeuristicsDefault(), paramsetSetHeuristicsOff(), paramsetSetPresolvingAggressive(), paramsetSetPresolvingDefault(), paramsetSetPresolvingFast(), paramsetSetPresolvingOff(), paramsetSetSeparatingAggressive(), paramsetSetSeparatingDefault(), paramsetSetSeparatingOff(), parseBounds(), preprocess(), presolveDisaggregate(), presolveFindDuplicates(), presolveTryAddAND(), presolveTryAddLinearReform(), printSolutionStatistics(), process(), processNlRow(), propIndicator(), readBounds(), readCnf(), readCnfLine(), readCoefficients(), readConstraints(), readSemicontinuous(), readSol(), readSos(), readSOScons(), readVariables(), reformMonomial(), reformNode2Var(), reformulate(), resolvePropagation(), SCIP_DECL_CONFLICTEXEC(), SCIP_DECL_CONSINITPRE(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSTRANS(), SCIP_DECL_DIALOGDESC(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_EXPRGRAPHNODEREFORM(), SCIP_DECL_HEUREXEC(), SCIP_DECL_NONLINCONSUPGD(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_QUADCONSUPGD(), SCIP_DECL_READERREAD(), SCIP_DECL_SEPAEXECLP(), SCIP_DECL_SOLVECUMULATIVE(), SCIPbranchruleCreate(), SCIPconflicthdlrCreate(), SCIPconshdlrCreate(), SCIPconsParse(), SCIPcopy(), SCIPcopyOrig(), SCIPcreateConsIndicator(), SCIPcreateFiniteSolCopy(), SCIPdialogDisplayMenuEntry(), SCIPdialogGetPath(), SCIPdialoghdlrAddHistory(), SCIPdialoghdlrCreate(), SCIPdialoghdlrGetWord(), SCIPdigraphPrintGml(), SCIPdispCreate(), SCIPdispLongint(), SCIPdispTime(), SCIPgetVarCopy(), SCIPheurCreate(), SCIPincludeLinconsUpgrade(), SCIPincludeNlpi(), SCIPincludeNonlinconsUpgrade(), SCIPincludeQuadconsUpgrade(), SCIPincludeReaderZpl(), SCIPincludeSepaZerohalf(), SCIPlpiWriteState(), SCIPlpWriteMip(), SCIPmessagehdlrCreate(), SCIPmessagePrintErrorHeader(), SCIPmessageVFPrintDialog(), SCIPmessageVFPrintInfo(), SCIPmessageVFPrintVerbInfo(), SCIPmessageVFPrintWarning(), SCIPmessageVPrintError(), SCIPnodePrintAncestorBranchings(), SCIPnodeselCreate(), SCIPparamsetSetToSubscipsOff(), SCIPparseVarName(), SCIPpresolCreate(), SCIPpricerCreate(), SCIPprintReal(), SCIPprintSysError(), SCIPprobTransform(), SCIPprocessShellArguments(), SCIPpropCreate(), SCIPrelaxCreate(), SCIPsepaCreate(), SCIPsetConshdlrPresol(), SCIPsetConshdlrProp(), SCIPsetConshdlrSepa(), SCIPsetPropPresol(), SCIPstrCopySection(), SCIPtransformMinUC(), SCIPvarNegate(), SCIPvarParseOriginal(), SCIPvarParseTransformed(), SCIPvarTransform(), SCIPvisualizeConsCumulative(), SCIPwriteCliqueGraph(), separateCons(), separateGLS(), separateSCIs(), separateSequLiftedExtendedWeightInequality(), separateSequLiftedMinimalCoverInequality(), separateSupLiftedMinimalCoverInequality(), setObjective(), setupSubproblem(), strengthVarbaounds(), tightenWeights(), tryAggregateIntVars(), tryUpgradingLogicor(), tryUpgradingSetppc(), tryUpgradingXor(), upgradeIndicatorSuperindicator(), upgradeLinearSuperindicator(), varParse(), varSetName(), and writeFzn().

#define SCIP_HASHSIZE_PARAMS   4099

size of hash table in parameter name tables

Definition at line 202 of file def.h.

Referenced by SCIPparamsetCreate().

#define SCIP_HASHSIZE_NAMES   131101

size of hash table in name tables

Definition at line 203 of file def.h.

Referenced by SCIP_DECL_READERREAD(), and SCIPprobCreate().

#define SCIP_HASHSIZE_CUTPOOLS   131101

size of hash table in cut pools

Definition at line 204 of file def.h.

Referenced by SCIPcutpoolCreate().

#define SCIP_HASHSIZE_CLIQUES   131101

size of hash table in clique tables

Definition at line 205 of file def.h.

Referenced by SCIPcliquetableCleanup().

#define SCIP_HASHSIZE_NAMES_SMALL   8011

size of hash table in name tables for small problems

Definition at line 206 of file def.h.

Referenced by SCIPprobCreate().

#define SCIP_HASHSIZE_CUTPOOLS_SMALL   8011

size of hash table in cut pools for small problems

Definition at line 207 of file def.h.

Referenced by SCIPcutpoolCreate().

#define SCIP_HASHSIZE_CLIQUES_SMALL   8011

size of hash table in clique tables for small problems

Definition at line 208 of file def.h.

Referenced by SCIPcliquetableCleanup().

#define SCIP_HASHSIZE_VBC   131101

size of hash map for node -> nodenum mapping used for VBC output

Definition at line 209 of file def.h.

Referenced by SCIPvbcInit().

#define SCIPABORT ( )    assert(FALSE)

this macro is used to stop SCIP in debug mode such that errors can be debugged;

Note
In optimized mode this macro has no effect. That means, in case of an error it has to be ensured that code terminates with an error code or continues safely.

Definition at line 230 of file def.h.

Referenced by addConflictBounds(), addLinearizationCuts(), applyFixings(), checkCons(), checkLPBoundsClean(), checkSolution(), checkSolutionOrig(), computeViolation(), conflictMarkBoundCheckPresence(), convertSides(), convertstat_mosek2scip(), convertstat_mosek2scip_slack(), convertstat_scip2mosek(), convertstat_scip2mosek_slack(), cpxObjsen(), createAndAddAndCons(), dualPresolving(), errorMessageAbort(), exprgraphNodePropagateBounds(), extractFlowRows(), generateCut(), generateSparseCut(), getDblParam(), getIntParam(), getVarWeight(), lpalgoName(), lpLexDualSimplex(), paramFree(), preprocessConstraintPairs(), probRemoveVar(), readFZNFile(), readSOS(), readSos(), readSOScons(), reconvertBothSides(), reconvertLhs(), reconvertRhs(), reformulate(), resolvePropagation(), respropCumulativeCondition(), rowSideChanged(), SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSEXITSOL(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_HEUREXEC(), SCIP_DECL_NLPISETWARMSTARTMEMO(), SCIP_DECL_READERREAD(), SCIP_DECL_READERWRITE(), SCIP_DECL_SORTPTRCOMP(), SCIPaddCoefLinear(), SCIPaddCoefPseudoboolean(), SCIPaddTermPseudoboolean(), SCIPbranchGetBranchingPoint(), SCIPbranchGetScore(), SCIPchgAndConsCheckFlagWhenUpgr(), SCIPchgAndConsRemovableFlagWhenUpgr(), SCIPchgConsName(), SCIPchgVarName(), SCIPclockGetTime(), SCIPclockReset(), SCIPclockSetTime(), SCIPclockStart(), SCIPclockStop(), SCIPconflictIsVarUsed(), SCIPcreateConsLinear(), SCIPeventChgNode(), SCIPeventChgSol(), SCIPeventGetHoleLeft(), SCIPeventGetHoleRight(), SCIPeventGetNewbound(), SCIPeventGetNewobj(), SCIPeventGetNode(), SCIPeventGetOldbound(), SCIPeventGetOldobj(), SCIPeventGetRow(), SCIPeventGetRowCol(), SCIPeventGetRowNewCoefVal(), SCIPeventGetRowNewConstVal(), SCIPeventGetRowNewSideVal(), SCIPeventGetRowOldCoefVal(), SCIPeventGetRowOldConstVal(), SCIPeventGetRowOldSideVal(), SCIPeventGetRowSide(), SCIPeventGetSol(), SCIPeventGetVar(), SCIPexprAreEqual(), SCIPexprcurvNegate(), SCIPexprgraphCreateNode(), SCIPexprPrint(), SCIPfindCons(), SCIPfindOrigCons(), SCIPfindVar(), SCIPgetActivityLinear(), SCIPgetAndDatasPseudoboolean(), SCIPgetBinvarsLinking(), SCIPgetBoundsBounddisjunction(), SCIPgetBoundtypesBounddisjunction(), SCIPgetCapacityCumulative(), SCIPgetCapacityKnapsack(), SCIPgetColFarkasCoef(), SCIPgetColRedcost(), SCIPgetConss(), SCIPgetDemandsCumulative(), SCIPgetDualfarkasKnapsack(), SCIPgetDualfarkasLinear(), SCIPgetDualfarkasLogicor(), SCIPgetDualfarkasSetppc(), SCIPgetDualfarkasVarbound(), SCIPgetDualsolKnapsack(), SCIPgetDualsolLinear(), SCIPgetDualsolLogicor(), SCIPgetDualsolSetppc(), SCIPgetDualsolVarbound(), SCIPgetDurationsCumulative(), SCIPgetFeasibilityLinear(), SCIPgetFixedVars(), SCIPgetHmaxCumulative(), SCIPgetHminCumulative(), SCIPgetIndVarPseudoboolean(), SCIPgetIntvarLinking(), SCIPgetIpoptApplicationPointerIpopt(), SCIPgetLhsLinear(), SCIPgetLhsPseudoboolean(), SCIPgetLhsVarbound(), SCIPgetLinDatasWithoutAndPseudoboolean(), SCIPgetLinearConsPseudoboolean(), SCIPgetLinearConsTypePseudoboolean(), SCIPgetNAndsPseudoboolean(), SCIPgetNBinVars(), SCIPgetNBinvarsLinking(), SCIPgetNConss(), SCIPgetNContVars(), SCIPgetNFixedonesSetppc(), SCIPgetNFixedVars(), SCIPgetNFixedzerosSetppc(), SCIPgetNImplVars(), SCIPgetNIntVars(), SCIPgetNLinVarsWithoutAndPseudoboolean(), SCIPgetNLPBranchCands(), SCIPgetNlpiOracleIpopt(), SCIPgetNLPNlRows(), SCIPgetNLPSolstat(), SCIPgetNLPTermstat(), SCIPgetNLPVars(), SCIPgetNLPVarsLbDualsol(), SCIPgetNLPVarsUbDualsol(), SCIPgetNNLPNlRows(), SCIPgetNNLPVars(), SCIPgetNObjVars(), SCIPgetNPrioLPBranchCands(), SCIPgetNSols(), SCIPgetNTotalVars(), SCIPgetNUpgrConss(), SCIPgetNVars(), SCIPgetNVarsAnd(), SCIPgetNVarsBounddisjunction(), SCIPgetNVarsCumulative(), SCIPgetNVarsKnapsack(), SCIPgetNVarsLinear(), SCIPgetNVarsLogicor(), SCIPgetNVarsOr(), SCIPgetNVarsSetppc(), SCIPgetNVarsSOS1(), SCIPgetNVarsSOS2(), SCIPgetNVarsXor(), SCIPgetProbData(), SCIPgetProbingDepth(), SCIPgetRelaxSolObj(), SCIPgetRelaxSolVal(), SCIPgetResultantAnd(), SCIPgetResultantOr(), SCIPgetRhsLinear(), SCIPgetRhsPseudoboolean(), SCIPgetRhsVarbound(), SCIPgetRhsXor(), SCIPgetRowKnapsack(), SCIPgetRowLinear(), SCIPgetRowLogicor(), SCIPgetRowSetppc(), SCIPgetRowVarbound(), SCIPgetTypeSetppc(), SCIPgetValsLinear(), SCIPgetValsLinking(), SCIPgetVarCopy(), SCIPgetVarFarkasCoef(), SCIPgetVarImplRedcost(), SCIPgetVarLbDive(), SCIPgetVarObjDive(), SCIPgetVarRedcost(), SCIPgetVars(), SCIPgetVarsAnd(), SCIPgetVarsBounddisjunction(), SCIPgetVarsCumulative(), SCIPgetVarsKnapsack(), SCIPgetVarsLinear(), SCIPgetVarsLogicor(), SCIPgetVarsOr(), SCIPgetVarsSetppc(), SCIPgetVarsSOS1(), SCIPgetVarsSOS2(), SCIPgetVarsXor(), SCIPgetVarUbDive(), SCIPgetVarVarbound(), SCIPgetVbdcoefVarbound(), SCIPgetVbdvarVarbound(), SCIPgetWeightsKnapsack(), SCIPgetWeightsSOS1(), SCIPgetWeightsSOS2(), SCIPhasNLPContinuousNonlinearity(), SCIPhasNLPSolution(), SCIPisAndConsSorted(), SCIPisObjIntegral(), SCIPlpiGetBase(), SCIPlpiGetRows(), SCIPlpiGetSides(), SCIPlpiGetSol(), SCIPlpiIsStable(), SCIPlpiSetBase(), SCIPlpiSetIntpar(), SCIPlpiSetState(), SCIPnodeAddBoundinfer(), SCIPnodeAddHoleinfer(), SCIPnodeCaptureLPIState(), SCIPparamIsDefault(), SCIPparamsetIsFixed(), SCIPpresolve(), SCIPprobFindCons(), SCIPprobFindVar(), SCIPprobUpdateDualbound(), SCIProwGetLPEfficacy(), SCIProwGetNLPEfficacy(), SCIProwGetParallelism(), SCIProwGetRelaxEfficacy(), SCIProwGetSolEfficacy(), SCIPsetHmaxCumulative(), SCIPsetModifiedDefaultSettingsIpopt(), SCIPsolGetRayVal(), SCIPsolGetVal(), SCIPsortAndCons(), SCIPtreeBranchVar(), SCIPtreeBranchVarHole(), SCIPtreeBranchVarNary(), SCIPupdateLocalDualbound(), SCIPupdateLocalLowerbound(), SCIPvarChgBranchDirection(), SCIPvarChgBranchFactor(), SCIPvarChgBranchPriority(), SCIPvarDoNotMultaggr(), SCIPvarFix(), SCIPvarGetAggregatedObj(), SCIPvarGetAvgBranchdepth(), SCIPvarGetAvgBranchdepthCurrentRun(), SCIPvarGetAvgConflictlength(), SCIPvarGetAvgConflictlengthCurrentRun(), SCIPvarGetAvgCutoffs(), SCIPvarGetAvgCutoffsCurrentRun(), SCIPvarGetAvgInferences(), SCIPvarGetAvgInferencesCurrentRun(), SCIPvarGetAvgSol(), SCIPvarGetBestRootLPObjval(), SCIPvarGetBestRootRedcost(), SCIPvarGetBestRootSol(), SCIPvarGetCutoffSum(), SCIPvarGetCutoffSumCurrentRun(), SCIPvarGetInferenceSum(), SCIPvarGetInferenceSumCurrentRun(), SCIPvarGetLbAtIndex(), SCIPvarGetLbLP(), SCIPvarGetLPSol_rec(), SCIPvarGetNActiveConflicts(), SCIPvarGetNActiveConflictsCurrentRun(), SCIPvarGetNBranchings(), SCIPvarGetNBranchingsCurrentRun(), SCIPvarGetNLocksDown(), SCIPvarGetNLocksUp(), SCIPvarGetNLPSol_rec(), SCIPvarGetObjLP(), SCIPvarGetProbvar(), SCIPvarGetProbvarSum(), SCIPvarGetPseudocost(), SCIPvarGetPseudocostCount(), SCIPvarGetPseudocostCountCurrentRun(), SCIPvarGetPseudocostCurrentRun(), SCIPvarGetPseudoSol_rec(), SCIPvarGetRelaxSol(), SCIPvarGetRootSol(), SCIPvarGetUbAtIndex(), SCIPvarGetUbLP(), SCIPvarGetVSIDS_rec(), SCIPvarGetVSIDSCurrentRun(), SCIPvarPrint(), SCIPvarSetNLPSol(), SCIPvarsGetActiveVars(), SCIPwriteCliqueGraph(), selectBranchVar(), separateGLS(), separateHeur(), separatePoint(), setDblParam(), setIntParam(), solGetArrayVal(), solveSubNLP(), spxObjsen(), treeCheckPath(), treeUpdatePathLPSize(), updateBestCandidate(), varGetActiveVar(), varProcessChgBranchDirection(), varProcessChgBranchFactor(), varProcessChgBranchPriority(), writeOpbObjective(), and xprsObjsen().

#define SCIP_CALL_ABORT_QUIET (   x)    do { if( (x) != SCIP_OKAY ) SCIPABORT(); } while( FALSE )

Definition at line 232 of file def.h.

#define SCIP_ALLOC_ABORT_QUIET (   x)    do { if( NULL == (x) ) SCIPABORT(); } while( FALSE )

Definition at line 234 of file def.h.

#define SCIP_ALLOC_QUIET (   x)    do { if( NULL == (x) ) return SCIP_NOMEMORY; } while( FALSE )

Definition at line 235 of file def.h.

#define SCIP_CALL_ABORT (   x)
Value:
do \
{ \
SCIP_RETCODE _restat_; \
if( (_restat_ = (x)) != SCIP_OKAY ) \
{ \
SCIPerrorMessage("Error <%d> in function call\n", _restat_); \
SCIPABORT(); \
} \
} \
while( FALSE )

Definition at line 237 of file def.h.

Referenced by freeConstraint(), scip::ObjBranchrule::ObjBranchrule(), scip::ObjConshdlr::ObjConshdlr(), scip::ObjDialog::ObjDialog(), scip::ObjDisp::ObjDisp(), scip::ObjEventhdlr::ObjEventhdlr(), scip::ObjHeur::ObjHeur(), scip::ObjNodesel::ObjNodesel(), scip::ObjPresol::ObjPresol(), scip::ObjPricer::ObjPricer(), scip::ObjProp::ObjProp(), scip::ObjReader::ObjReader(), scip::ObjRelax::ObjRelax(), scip::ObjSepa::ObjSepa(), SCIPadjustedVarLb(), SCIPadjustedVarUb(), SCIPallColsInLP(), SCIPallVarsInProb(), SCIPareSolsEqual(), SCIPcalcChildEstimate(), SCIPcalcNodeselPriority(), SCIPclearExternBranchCands(), SCIPcontainsExternBranchCand(), SCIPdisableVarHistory(), SCIPenableNLP(), SCIPenableVarHistory(), SCIPfindCons(), SCIPfindOrigCons(), SCIPfindVar(), SCIPfreeParseVarsPolynomialData(), SCIPgetAvgConflictlengthScore(), SCIPgetAvgConflictlengthScoreCurrentRun(), SCIPgetAvgConflictScore(), SCIPgetAvgConflictScoreCurrentRun(), SCIPgetAvgCutoffs(), SCIPgetAvgCutoffScore(), SCIPgetAvgCutoffScoreCurrentRun(), SCIPgetAvgCutoffsCurrentRun(), SCIPgetAvgDualbound(), SCIPgetAvgInferences(), SCIPgetAvgInferenceScore(), SCIPgetAvgInferenceScoreCurrentRun(), SCIPgetAvgInferencesCurrentRun(), SCIPgetAvgLowerbound(), SCIPgetAvgPseudocost(), SCIPgetAvgPseudocostCount(), SCIPgetAvgPseudocostCountCurrentRun(), SCIPgetAvgPseudocostCurrentRun(), SCIPgetAvgPseudocostScore(), SCIPgetAvgPseudocostScoreCurrentRun(), SCIPgetBestboundNode(), SCIPgetBestChild(), SCIPgetBestLeaf(), SCIPgetBestNode(), SCIPgetBestSibling(), SCIPgetBestSol(), SCIPgetBranchingPoint(), SCIPgetBranchScore(), SCIPgetBranchScoreMultiple(), SCIPgetCliques(), SCIPgetColFarkasCoef(), SCIPgetColRedcost(), SCIPgetConflictVarLb(), SCIPgetConflictVarUb(), SCIPgetConss(), SCIPgetCurrentNode(), SCIPgetCutEfficacy(), SCIPgetCutoffbound(), SCIPgetCutoffdepth(), SCIPgetCuts(), SCIPgetDelayedGlobalCutpool(), SCIPgetDelayedPoolCuts(), SCIPgetDepth(), SCIPgetDualbound(), SCIPgetDualboundRoot(), SCIPgetFirstLPDualboundRoot(), SCIPgetFirstLPLowerboundRoot(), SCIPgetFirstLPTime(), SCIPgetFixedVars(), SCIPgetFocusDepth(), SCIPgetGap(), SCIPgetGlobalCutpool(), SCIPgetGlobalPseudoObjval(), SCIPgetLastDivenode(), SCIPgetLocalDualbound(), SCIPgetLocalLowerbound(), SCIPgetLocalOrigEstimate(), SCIPgetLocalTransEstimate(), SCIPgetLowerbound(), SCIPgetLowerboundRoot(), SCIPgetLPCols(), SCIPgetLPColumnObjval(), SCIPgetLPLooseObjval(), SCIPgetLPObjval(), SCIPgetLPRootColumnObjval(), SCIPgetLPRootLooseObjval(), SCIPgetLPRootObjval(), SCIPgetLPRows(), SCIPgetLPSolstat(), SCIPgetMaxDepth(), SCIPgetMaxTotalDepth(), SCIPgetNActiveConss(), SCIPgetNBacktracks(), SCIPgetNBarrierLPIterations(), SCIPgetNBarrierLPs(), SCIPgetNBestSolsFound(), SCIPgetNBinVars(), SCIPgetNCheckConss(), SCIPgetNChildren(), SCIPgetNCliques(), SCIPgetNConflictConssApplied(), SCIPgetNConflictConssFound(), SCIPgetNConflictConssFoundNode(), SCIPgetNConss(), SCIPgetNContVars(), SCIPgetNCuts(), SCIPgetNCutsApplied(), SCIPgetNCutsFound(), SCIPgetNCutsFoundRound(), SCIPgetNDelayedPoolCuts(), SCIPgetNDivingLPIterations(), SCIPgetNDivingLPs(), SCIPgetNDualLPIterations(), SCIPgetNDualLPs(), SCIPgetNDualResolveLPIterations(), SCIPgetNDualResolveLPs(), SCIPgetNEnabledConss(), SCIPgetNExternBranchCands(), SCIPgetNFixedVars(), SCIPgetNImplications(), SCIPgetNImplVars(), SCIPgetNIntVars(), SCIPgetNLeaves(), SCIPgetNLimSolsFound(), SCIPgetNLPBranchCands(), SCIPgetNLPCols(), SCIPgetNLPIterations(), SCIPgetNLPNlRows(), SCIPgetNLPObjval(), SCIPgetNLPRows(), SCIPgetNLPs(), SCIPgetNLPSolstat(), SCIPgetNLPTermstat(), SCIPgetNLPVars(), SCIPgetNLPVarsLbDualsol(), SCIPgetNLPVarsUbDualsol(), SCIPgetNNLPNlRows(), SCIPgetNNLPVars(), SCIPgetNNodeInitLPIterations(), SCIPgetNNodeInitLPs(), SCIPgetNNodeLPIterations(), SCIPgetNNodeLPs(), SCIPgetNNodes(), SCIPgetNNodesLeft(), SCIPgetNObjVars(), SCIPgetNodeDualbound(), SCIPgetNodeLowerbound(), SCIPgetNOrigBinVars(), SCIPgetNOrigConss(), SCIPgetNOrigContVars(), SCIPgetNOrigImplVars(), SCIPgetNOrigIntVars(), SCIPgetNOrigVars(), SCIPgetNPoolCuts(), SCIPgetNPriceRounds(), SCIPgetNPricevars(), SCIPgetNPricevarsApplied(), SCIPgetNPricevarsFound(), SCIPgetNPrimalLPIterations(), SCIPgetNPrimalLPs(), SCIPgetNPrimalResolveLPIterations(), SCIPgetNPrimalResolveLPs(), SCIPgetNPrioExternBranchBins(), SCIPgetNPrioExternBranchCands(), SCIPgetNPrioExternBranchConts(), SCIPgetNPrioExternBranchImpls(), SCIPgetNPrioExternBranchInts(), SCIPgetNPrioLPBranchCands(), SCIPgetNPrioPseudoBranchBins(), SCIPgetNPrioPseudoBranchCands(), SCIPgetNPrioPseudoBranchImpls(), SCIPgetNPrioPseudoBranchInts(), SCIPgetNPseudoBranchCands(), SCIPgetNResolveLPIterations(), SCIPgetNResolveLPs(), SCIPgetNRootFirstLPIterations(), SCIPgetNRootLPIterations(), SCIPgetNRootStrongbranchLPIterations(), SCIPgetNRootStrongbranchs(), SCIPgetNRuns(), SCIPgetNSepaRounds(), SCIPgetNSiblings(), SCIPgetNSols(), SCIPgetNSolsFound(), SCIPgetNStrongbranchLPIterations(), SCIPgetNStrongbranchs(), SCIPgetNTotalNodes(), SCIPgetNTotalVars(), SCIPgetNUpgrConss(), SCIPgetNVars(), SCIPgetObjlimit(), SCIPgetObjNorm(), SCIPgetObjsense(), SCIPgetOrigConss(), SCIPgetOrigObjoffset(), SCIPgetOrigObjscale(), SCIPgetOrigVars(), SCIPgetPlungeDepth(), SCIPgetPoolCuts(), SCIPgetPresolvingTime(), SCIPgetPrimalbound(), SCIPgetPrimalRayVal(), SCIPgetPrioChild(), SCIPgetPrioSibling(), SCIPgetProbData(), SCIPgetProbingDepth(), SCIPgetProbName(), SCIPgetPseudoObjval(), SCIPgetReadingTime(), SCIPgetRelaxFeastolFactor(), SCIPgetRelaxSolObj(), SCIPgetRelaxSolVal(), SCIPgetRepropdepth(), SCIPgetRootNode(), SCIPgetRowActivity(), SCIPgetRowFeasibility(), SCIPgetRowLPActivity(), SCIPgetRowLPFeasibility(), SCIPgetRowMaxActivity(), SCIPgetRowMaxCoef(), SCIPgetRowMinActivity(), SCIPgetRowMinCoef(), SCIPgetRowPseudoActivity(), SCIPgetRowPseudoFeasibility(), SCIPgetRowSolActivity(), SCIPgetRowSolFeasibility(), SCIPgetSolHeur(), SCIPgetSolNodenum(), SCIPgetSolOrigObj(), SCIPgetSolRunnum(), SCIPgetSols(), SCIPgetSolTime(), SCIPgetSolTransObj(), SCIPgetSolVal(), SCIPgetSolvingTime(), SCIPgetStatus(), SCIPgetSubscipDepth(), SCIPgetTransGap(), SCIPgetTransObjoffset(), SCIPgetTransObjscale(), SCIPgetUpperbound(), SCIPgetVarAvgConflictlength(), SCIPgetVarAvgConflictlengthCurrentRun(), SCIPgetVarAvgCutoffs(), SCIPgetVarAvgCutoffScore(), SCIPgetVarAvgCutoffScoreCurrentRun(), SCIPgetVarAvgCutoffsCurrentRun(), SCIPgetVarAvgInferenceCutoffScore(), SCIPgetVarAvgInferenceCutoffScoreCurrentRun(), SCIPgetVarAvgInferences(), SCIPgetVarAvgInferenceScore(), SCIPgetVarAvgInferenceScoreCurrentRun(), SCIPgetVarAvgInferencesCurrentRun(), SCIPgetVarConflictlengthScore(), SCIPgetVarConflictlengthScoreCurrentRun(), SCIPgetVarConflictScore(), SCIPgetVarConflictScoreCurrentRun(), SCIPgetVarLbDive(), SCIPgetVarNStrongbranchs(), SCIPgetVarObjDive(), SCIPgetVarPseudocost(), SCIPgetVarPseudocostCount(), SCIPgetVarPseudocostCountCurrentRun(), SCIPgetVarPseudocostCurrentRun(), SCIPgetVarPseudocostScore(), SCIPgetVarPseudocostScoreCurrentRun(), SCIPgetVarPseudocostVal(), SCIPgetVarPseudocostValCurrentRun(), SCIPgetVars(), SCIPgetVarSol(), SCIPgetVarStrongbranchLPAge(), SCIPgetVarStrongbranchNode(), SCIPgetVarUbDive(), SCIPgetVarVSIDS(), SCIPgetVarVSIDSCurrentRun(), SCIPhasCurrentNodeLP(), SCIPhasNLPContinuousNonlinearity(), SCIPhasNLPSolution(), SCIPhasPrimalRay(), SCIPhaveVarsCommonClique(), SCIPinDive(), SCIPinProbing(), SCIPinRepropagation(), SCIPisConflictAnalysisApplicable(), SCIPisConflictVarUsed(), SCIPisCutApplicable(), SCIPisCutEfficacious(), SCIPisInRestart(), SCIPisLPConstructed(), SCIPisLPRelax(), SCIPisLPSolBasic(), SCIPisNLPConstructed(), SCIPisNLPEnabled(), SCIPisObjIntegral(), SCIPisPresolveFinished(), SCIPisPrimalboundSol(), SCIPisRelaxSolValid(), SCIPisRootLPRelax(), SCIPisStopped(), SCIPisUpdateUnreliable(), SCIPlpiExistsDualRay(), SCIPlpiExistsPrimalRay(), SCIPlpiHasDualRay(), SCIPlpiHasPrimalRay(), SCIPlpiIsDualFeasible(), SCIPlpiIsOptimal(), SCIPlpiIsPrimalFeasible(), SCIPlpiIsStable(), SCIPlpiWasSolved(), SCIPmarkColNotRemovableLocal(), SCIPmarkRowNotRemovableLocal(), SCIPretransformObj(), SCIPtransformObj(), and SCIPwriteCliqueGraph().

#define SCIP_ALLOC_ABORT (   x)
Value:
do \
{ \
if( NULL == (x) ) \
{ \
SCIPerrorMessage("No memory in function call\n", __FILE__, __LINE__); \
SCIPABORT(); \
} \
} \
while( FALSE )

Definition at line 248 of file def.h.

#define SCIP_CALL (   x)
Value:
do \
{ \
SCIP_RETCODE _restat_; \
if( (_restat_ = (x)) != SCIP_OKAY ) \
{ \
SCIPerrorMessage("Error <%d> in function call\n", _restat_); \
return _restat_; \
} \
} \
while( FALSE )

Definition at line 258 of file def.h.

Referenced by addAllConss(), addAltLPConstraint(), addAltLPRow(), addArc(), addBdchg(), addBilinearTerm(), addBoundViolated(), addCand(), addCliqueDataEntry(), addCliques(), addCoef(), addCoefTerm(), addConcaveEstimatorBivariate(), addConcaveEstimatorMultivariate(), addConcaveEstimatorUnivariate(), addConflictBinvar(), addConflictBounds(), addConsToOccurList(), addConstraint(), addCurrentSolution(), addCut(), addCuts(), addEdgeToAuxGraph(), addEventData(), addExtendedAsymmetricFormulation(), addExtendedFlowFormulation(), addExtraCliques(), addFixParamDialog(), addGLSBinImpls(), addGLSCliques(), addIntervalGradientEstimator(), addKnapsackConstraints(), addLinearCoef(), addLinearConstraints(), addLinearConstraintsToNlp(), addLinearization(), addLinearizationCuts(), addLocalBranchingConstraint(), addLogicOrConstraints(), addNegatedCliques(), addNewGenVBound(), addNewLocks(), addNextLevelBinImpls(), addNextLevelCliques(), addObjCutoff(), addQuadVarTerm(), addRelaxation(), addSetParamDialog(), addSetppcConstraints(), addSideRemoval(), addVarbound(), addVarboundConstraints(), addVarSOS1(), addVarSOS2(), addVbound(), addZerohalfCutToLP(), adjustCutoffbound(), adjustOversizedJobBounds(), aggregateConstraints(), aggregateVariables(), aggregation(), analyseInfeasibelCoreInsertion(), analyzeConflict(), analyzeConflictLowerbound(), analyzeConflictOne(), analyzeConflictOverload(), analyzeConflictUpperbound(), analyzeConflictZero(), analyzeEnergyRequirement(), analyzeGenVBoundConflict(), analyzeStrongbranch(), analyzeZeroResultant(), appendBuffer(), appendVarSOS1(), appendVarSOS2(), applyAlternativeBoundsBranching(), applyAlternativeBoundsFixing(), applyBdchgs(), applyBoundChgs(), applyBounding(), applyCliqueFixings(), applyCuts(), applyFixings(), applyGenVBound(), applyGenVBounds(), applyGlobalBounds(), applyImplic(), applyObbt(), applyProbing(), applyProbingVar(), applyVariableAssignment(), applyVbounds(), applyVboundsFixings(), boundchgApplyGlobal(), boundchgReleaseData(), branch(), branchcandCalcLPCands(), branchCons(), calcCliquepartition(), calcNonZeros(), catchAllEvents(), catchEvent(), catchEvents(), catchLhsVarEvents(), catchLinearVarEvents(), catchObjEvent(), catchQuadVarEvents(), catchRhsVarEvents(), catchVarEvents(), changePartitionCovervars(), changePartitionFeasiblesetvars(), checkAllConss(), checkAltLPInfeasible(), checkAndConss(), checkArraySizesGLS(), checkArraySizesHeur(), checkBounddisjunction(), checkCons(), checkConsnames(), checkCumulativeCondition(), checkCurvature(), checkFactorable(), checkFeasSubtree(), checkFixedVariables(), checkForOverlapping(), checkIISlocal(), checkKnapsack(), checkLogicor(), checkLPBoundsClean(), checkOrigPbCons(), checkOverloadViaThetaTree(), checkParallelObjective(), checkParam(), checkParameters(), checkParameterValues(), checkPartialObjective(), checkSolOrig(), checkSolution(), checkSparseMatrixCapacity(), checkState(), checkSystemGF2(), checkVarbound(), checkVarnames(), chgCoefPos(), chgLhs(), chgLhsLinearCons(), chgLinearCoefPos(), chgRhs(), chgRhsLinearCons(), cleanCycle(), cleanupHashDatas(), cleanupNetwork(), cliquePresolve(), colAddCoef(), colChgCoefPos(), collectAggregatedVars(), collectBinaryVars(), collectBranchingCands(), collectCliqueConss(), collectCliqueData(), collectMinactImplicVars(), collectMinactObjchg(), collectMinactVar(), collectSolution(), colLink(), colUnlink(), computeAlternativeBounds(), computeAndConstraintInfos(), computeConsAndDataChanges(), computeCut(), computeEffectiveHorizon(), computeEffectiveHorizonCumulativeCondition(), computeFixingOrder(), computeFixingrate(), computeImpliedEst(), computeImpliedLct(), computeMinDistance(), computePeak(), computeRanks(), computeViolation(), computeViolations(), conflictAddBound(), conflictAddConflictBound(), conflictAddConflictCons(), conflictAddConflictset(), conflictAnalyze(), conflictAnalyzeBoundexceedingLP(), conflictAnalyzeInfeasibleLP(), conflictAnalyzeLP(), conflictAnalyzeRemainingBdchgs(), conflictCreateReconvergenceConss(), conflictCreateTmpBdchginfo(), conflictInsertConflictset(), conflictQueueBound(), conflictResolveBound(), conflictsetAddBound(), conflictsetAddBounds(), conflictsetCalcInsertDepth(), consCapacityConstraintsFinder(), consCatchAllEvents(), consCatchEvent(), consCheckRedundancy(), consdataAddCons(), consdataAddExprtrees(), consdataCatchEvents(), consdataCatchWatchedEvents(), consdataCheckSuperindicator(), consdataCollectLinkingCons(), consdataCreate(), consdataCreateBinvars(), consdataCreateEmpty(), consdataCreateSuperindicator(), consdataCreateTransformed(), consdataDeletePos(), consdataDropAllEvents(), consdataDropEvents(), consdataDropWatchedEvents(), consdataEnsureAddLinConsSize(), consdataEnsureAdjBilinSize(), consdataEnsureBilinSize(), consdataEnsureLinearVarsSize(), consdataEnsureQuadVarTermsSize(), consdataEnsureVarsSize(), consdataEnsurevarsSizeSOS1(), consdataEnsurevarsSizeSOS2(), consdataFindQuadVarTerm(), consdataFixOperandsOne(), consdataFixResultantZero(), consdataFree(), consdataFreeRows(), consdataLinearize(), consdataPrint(), consdataSetExprtrees(), consdataSort(), consdataSortBilinTerms(), consdataSortQuadVarTerms(), consdataSwitchWatchedvars(), consdataTightenCoefs(), consDropAllEvents(), consDropEvent(), consFixInteger(), conshdlrActivateCons(), conshdlrAddCheckcons(), conshdlrAddCons(), conshdlrAddEnfocons(), conshdlrAddInitcons(), conshdlrAddPropcons(), conshdlrAddSepacons(), conshdlrAddUpdateCons(), conshdlrdataCreate(), conshdlrdataEnsureLinconsupgradesSize(), conshdlrdataFree(), conshdlrdataIncludeUpgrade(), conshdlrDeactivateCons(), conshdlrDisableCons(), conshdlrEnableCons(), conshdlrEnableConsPropagation(), conshdlrEnableConsSeparation(), conshdlrForceUpdates(), conshdlrProcessUpdates(), conssetchgDelAddedCons(), conssetchgDelDisabledCons(), conssetchgRelease(), constraintNonOverlappingGraph(), constructIncompatibilityGraph(), constructSNFRelaxation(), convertBinaryEquality(), convertEquality(), convertLongEquality(), convertToActiveVar(), convertUnaryEquality(), copyAndSolveComponent(), copyConsPseudoboolean(), copyCuts(), copyDimensions(), copyProb(), copySol(), copyVars(), coretimesUpdateLb(), coretimesUpdateUb(), correctConshdlrdata(), correctLocksAndCaptures(), correctPresoldata(), costFixing(), countSparseSol(), CREATE_CONSTRAINT(), createAndAddAndCons(), createAndAddAnds(), createAndAddLinearCons(), createCapacityRestriction(), createCapacityRestrictionIntvars(), createCGCutCMIR(), createCGCutDirect(), createCGCuts(), createCGCutStrongCG(), createConflict(), createConsCumulative(), createConsFromMonomial(), createConsFromQuadTerm(), createConsSetppc(), createConstantAssignment(), createConstarray(), createConstraint(), createConsXorIntvar(), createCoreProfile(), createCountDialog(), createCoverCuts(), createCoverCutsTimepoint(), createCoveringProblem(), createCumulativeCons(), createDisjuctiveCons(), createEdgesFromRow(), createEmphasisSubmenu(), createExprtreeFromMonomial(), createGenVBound(), createGroups(), createIndicatorConstraint(), createLinearCons(), createLinking(), createNAryBranch(), createNewArc(), createNewCommodity(), createNewSol(), createNewSols(), createNextLevel(), createNlRow(), createNodedata(), createNormalizedKnapsack(), createNormalizedLogicor(), createNormalizedSetppc(), createObjRow(), createPrecedenceCons(), createPresoldata(), createQuadraticCons(), createRelaxation(), createRow(), createRows(), createSolFromNLP(), createSolFromSubScipSol(), createSolTuple(), createStartingData(), createSubproblem(), createSubSCIP(), createSubscip(), createTcliqueGraph(), createTopoSortedVars(), createVararray(), createVariable(), createVarUbs(), createZerohalfCutFromZerohalfWeightvector(), cutFree(), cutGenerationHeuristic(), CUTOFF_CONSTRAINT(), cutpoolDelCut(), cutpoolSeparate(), decomposeProblem(), delCoefPos(), deleteAltLPConstraint(), deleteLambdaLeaf(), deleteRedundantVars(), deleteSubproblem(), deleteTrivilCons(), deleteVarSOS1(), deleteVarSOS2(), delLinearCoefPos(), delQuadVarTermPos(), depthFirstSearch(), detectImpliedBounds(), detectParallelCols(), detectRedundantConss(), detectRedundantConstraints(), detectRedundantVars(), dialogExecMenu(), dialogFree(), dijkstra(), disableCons(), displayRelevantStats(), domAddHole(), domchgMakeDynamic(), dropAllEvents(), dropAndFreeEvents(), dropEvent(), dropEvents(), dropLhsVarEvents(), dropLinearVarEvents(), dropObjEvent(), dropQuadVarEvents(), dropRhsVarEvents(), dropVarEvents(), dualBoundStrengthening(), dualPresolve(), dualPresolving(), dualWeightsTightening(), enforceConstraints(), enforceCurrentSol(), enforceCuts(), enforceIndicators(), enforcePseudo(), enforceSolution(), enforceSOS1(), enforceSOS2(), enforceViolatedFixedNonlinear(), enlargeMinweights(), ensureCandsSize(), ensureConstarrySizeFznInput(), ensureEdgeCapacity(), ensureFactorsSize(), ensureMemorySize(), ensureMonomialsSize(), ensureSidechgsSize(), ensureVararrySize(), ensureVararrySizeFznInput(), eval(), evalFunctionGradient(), evalFunctionValue(), evaluateCutNumerics(), eventdataCreate(), eventqueueAppend(), execGenVBounds(), execRelpscost(), exitPresolve(), exprConvertToPolynomial(), exprgraphAddExpr(), exprgraphMoveNode(), exprgraphNodeAddChildren(), exprgraphNodeCreateExpr(), exprgraphNodeEval(), exprgraphNodeEvalWithChildren(), exprgraphNodeRemoveParent(), exprgraphNodeRemovePolynomialDuplicateChildren(), exprgraphNodeReplaceChild(), exprgraphNodeSimplify(), exprgraphNodeUpdateBounds(), exprgraphRemoveVar(), exprParse(), exprparseReadVariable(), exprsimplifyAddChildren(), exprsimplifyConvertToPolynomials(), exprsimplifyFlattenPolynomials(), exprsimplifySeparateLinearFromPolynomial(), exprsimplifyUnconvertPolynomials(), extendToCover(), extractCapacities(), extractCapacityRows(), extractCliques(), extractFlow(), extractFlowRows(), extractGates(), extractNodes(), fillDigraph(), fillGlobalStartingData(), filterBounds(), filterRound(), findAggregation(), findCumulativeConss(), findDominancePairs(), findNewBounds(), findPrecedenceConss(), findUnblockedShortestPathToRoot(), findUncapacitatedArcs(), findValuehistoryEntry(), fixAdditionalVars(), fixAltLPVariable(), fixAltLPVariables(), fixAndPropagate(), fixDeleteOrUpgradeCons(), fixDiscreteVars(), fixIntegerVariableLb(), fixIntegerVariableUb(), fixTriangle(), fixVariable(), fixVariables(), fixVariableZeroNode(), focusnodeCleanupVars(), focusnodeToDeadend(), focusnodeToFork(), focusnodeToJunction(), focusnodeToPseudofork(), forbidCover(), forbidFixation(), forkAddLP(), forkCreate(), forkFree(), forkReleaseLPIState(), freeAllEventData(), freeMemory(), freeSepaData(), freeSolve(), freeSortedvars(), freeSubSCIP(), freeSubscip(), freeTransform(), fromCommandLine(), fullDualPresolve(), fzninputAddConstarray(), fzninputAddVararray(), generate1ConvexIndefiniteUnderestimator(), generate1ConvexIndefiniteUnderestimatorAtBoundary(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternA(), generate1ConvexIndefiniteUnderestimatorInTheInteriorPatternB(), generateAverageNBRay(), generateAverageRay(), generateCloseCutPoint(), generateClusterCuts(), generateConvexConcaveEstimator(), generateConvexConcaveUnderestimator(), generateCut(), generateCutLTI(), generateCutPoint(), generateCutProjectedPoint(), generateCutSol(), generateCutUnboundedLP(), generateEstimatingHyperplane(), generateLinearizationCut(), generateLinearizationCutProject(), generateOddCycleCut(), generateOrthogonal_lx_ly_Underestimator(), generateOrthogonal_lx_uy_Underestimator(), generateOverestimatingHyperplaneCut(), generateRowSOS1(), generateRowSOS2(), generateSecantCut(), generateSecantCutNoCheck(), generateSparseCut(), generateUnderestimatorParallelYFacets(), getActiveVar(), getActiveVariables(), getActiveVariables2(), getASlice(), getBase(), getbase(), getBinVarsRepresentatives(), getBitarrayOfSelectedRows(), getConflictImplics(), getConstraint(), getCover(), getEventData(), getFeasibleSet(), getFixedVariable(), getFixingValue(), getFlowCover(), getGradientMaxElement(), getHighestCapacityUsage(), getInputString(), getLiftingSequence(), getLiftingSequenceGUB(), getLinearCoeffs(), getMinactImplicObjchg(), getMinactObjchg(), getNLPFracVars(), getNodeIdx(), getNodeSimilarityScore(), getObjective(), getRelevantColumns(), getRelevantRows(), getSolFromFacet(), getStatistics(), getVariable(), getVariableIndex(), getVariableOrTerm(), getZerohalfWeightvectorForSingleRow(), getZerohalfWeightvectorFromSelectedRowsBitarray(), GUBconsAddVar(), GUBconsCreate(), GUBconsDelVar(), GUBsetCalcCliquePartition(), GUBsetCheck(), GUBsetCreate(), GUBsetFree(), GUBsetGetCliquePartition(), GUBsetMoveVar(), handle1Cycle(), handle_singular(), handleCycle(), handleLinearCons(), handleNewVariableSOS1(), handleNewVariableSOS2(), hashmaplistSetImage(), hashtableResize(), hessLagAddExprtree(), hessLagSparsitySetNzFlagForExprtree(), hessLagSparsitySetNzFlagForQuad(), holelistDuplicate(), identifyComponent(), identifySourcesTargets(), implicsEnsureSize(), includeConshdlrCountsols(), incVSIDS(), inferboundsEdgeFinding(), inferVariableZero(), initAlternativeLP(), initBounds(), initData(), initGraph(), inithashmapandtable(), initializeCandsLists(), initializeDurations(), initializeMatrix(), initLP(), initMatrix(), initPresolve(), initPropdata(), initSepaData(), initSepaDataCreateVred(), initSolve(), innerPresolve(), insertColChgcols(), insertSortedRootNeighbors(), insertThetanode(), insertZerolist(), junctionInit(), liftCliqueVariables(), lifting(), liftOddCycleCut(), linconsupgradeCreate(), loadTcliquegraph(), lockLinearVariable(), lockQuadraticVariable(), lockRounding(), lockRoundingAndCons(), lockVariableSOS1(), lockVariableSOS2(), lpAlgorithm(), lpBarrier(), lpbdchgsCreate(), lpCleanupCols(), lpCleanupRows(), lpDelColset(), lpDelRowset(), lpDualSimplex(), lpFlushAddCols(), lpFlushAddRows(), lpFlushAndSolve(), lpFlushChgCols(), lpFlushChgRows(), lpFlushDelCols(), lpFlushDelRows(), lpiGetBInvVec(), lpistatePack(), lpiStrongbranch(), lpiStrongbranches(), lpiStrongbranchIntegral(), lpLexDualSimplex(), lpPrimalSimplex(), lpRemoveObsoleteCols(), lpRemoveObsoleteRows(), lpSetBarrierconvtol(), lpSetConditionLimit(), lpSetDualfeastol(), lpSetFastmip(), lpSetFeastol(), lpSetFromscratch(), lpSetIterationLimit(), lpSetLPInfo(), lpSetPresolving(), lpSetPricing(), lpSetPricingChar(), lpSetRowrepswitch(), lpSetScaling(), lpSetThreads(), lpSetUobjlim(), lpSolve(), lpSolveStable(), makeCoverMinimal(), manageHeurdataMemory(), mcfnetworkCreate(), mcfnetworkExtract(), mcfnetworkFill(), mcfnetworkFree(), mergeAndCleanBilinearTerms(), mergeAndCleanLinearVars(), mergeAndCleanQuadVarTerms(), mergeMultiples(), messagehdlrFree(), moveNodeToLambda(), mpsinputCreate(), multiAggregateBinvar(), newsolCliqueAddRow(), nlpAddNlRows(), nlpAddVars(), nlpDelNlRowPos(), nlpDelVarPos(), nlpFlushNlRowAdditions(), nlpFlushNlRowDeletions(), nlpFlushObjective(), nlpFlushVarAdditions(), nlpFlushVarDeletions(), nlpMoveVar(), nlpRemoveFixedVar(), nlpRowChanged(), nlpSetupNlpiIndices(), nlpSolve(), nlpUpdateObjCoef(), nlpUpdateVarBounds(), nlrowAddLinearCoef(), nlrowAddQuadElement(), nlrowAddToLinearCoef(), nlrowCalcActivityBounds(), nlrowChgLinearCoefPos(), nlrowChgQuadElemPos(), nlrowConstantChanged(), nlrowDelLinearCoefPos(), nlrowDelQuadElemPos(), nlrowExprtreeChanged(), nlrowExprtreeParamChanged(), nlrowLinearCoefChanged(), nlrowQuadElemChanged(), nlrowRemoveFixedExprtreeVars(), nlrowRemoveFixedLinearCoefPos(), nlrowRemoveFixedLinearCoefs(), nlrowRemoveFixedQuadVars(), nlrowRemoveFixedVar(), nlrowSetupQuadVarsHash(), nlrowSideChanged(), nodeActivate(), nodeAssignParent(), nodeDeactivate(), nodepairqueueCreate(), nodepartitionCreate(), nodeReleaseParent(), nodeRepropagate(), nodeToLeaf(), normalizeCons(), normalizeDemands(), objimplicsCreate(), objimplicsDelPos(), objimplicsFree(), optimize(), paramCopyBool(), paramCopyChar(), paramCopyInt(), paramCopyLongint(), paramCopyReal(), paramCopyString(), paramCreateBool(), paramCreateChar(), paramCreateInt(), paramCreateLongint(), paramCreateReal(), paramCreateString(), paramParseBool(), paramParseChar(), paramParseInt(), paramParseLongint(), paramParseReal(), paramParseString(), paramsetAdd(), paramSetBool(), paramSetChar(), paramSetInt(), paramSetLongint(), paramsetParse(), paramSetReal(), paramsetSetHeuristicsAggressive(), paramsetSetHeuristicsDefault(), paramsetSetHeuristicsFast(), paramsetSetHeuristicsOff(), paramsetSetPresolvingAggressive(), paramsetSetPresolvingDefault(), paramsetSetPresolvingFast(), paramsetSetPresolvingOff(), paramsetSetSeparatingAggressive(), paramsetSetSeparatingDefault(), paramsetSetSeparatingFast(), paramsetSetSeparatingOff(), parseAggregation(), parseArray(), parseArrayAssignment(), parseBounds(), parseConstant(), parseConstantArray(), parseConstantArrayAssignment(), parseConstraint(), parseLinking(), parseList(), parseName(), parseOutputDimensioninfo(), parseQuadratic(), parseSolveItem(), parseVariable(), parseVariableArray(), parseVariableArrayAssignment(), performAggregations(), performBranching(), performDualfix(), performFixing(), performLPRandRounding(), performLPSimpleRounding(), performRandRounding(), performRelaxSimpleRounding(), performSimpleRounding(), performStrongbranchWithPropagation(), performVarDeletions(), polishSolution(), polynomialdataAddMonomials(), polynomialdataCopy(), polynomialdataCreate(), polynomialdataExpandMonomialFactor(), polynomialdataMultiplyByMonomial(), polynomialdataMultiplyByPolynomial(), polynomialdataPower(), predBndStr(), prepareCons(), preprocess(), preprocessCliques(), preprocessColumns(), preprocessConsiderMinSlack(), preprocessConstraintPairs(), preprocessIdenticalColums(), preprocessModGaussElim(), preprocessRows(), preprocessTrivialZerohalfCuts(), presolComponents(), presoldataInitHashtables(), presolRoundIndicator(), presolRoundSOS1(), presolRoundSOS2(), presolve(), presolveCons(), presolveConsEffectiveHorizon(), presolveConsEst(), presolveConsLct(), presolveCreateBenTalNemirovskiApproxDim3(), presolveCreateGlineurApproxDim3(), presolveCreateOuterApprox(), presolveCreateOuterApproxDim3(), presolveDisaggregate(), presolveDisaggregateMarkComponent(), presolveDual(), presolveFindDuplicates(), presolveFindDuplicatesUpgradeCons(), presolvePropagateCons(), presolveRemoveFixedVariables(), presolveRound(), presolveSolve(), presolveTryAddAND(), presolveTryAddLinearReform(), presolveTwoOpt(), presolveUpgrade(), priceAndCutLoop(), primalAddOrigSol(), primalAddSol(), primalLinkCurrentSol(), primalSetCutoffbound(), primalSetUpperbound(), printActiveVariables(), printAggregatedCons(), printAndCons(), printConformName(), printExpr(), printIndicatorCons(), printLinearCons(), printLinearRow(), printNonlinearCons(), printNonLinearCons(), printNonlinearRow(), printProblem(), printPseudobooleanCons(), printQuadraticCons(), printQuadraticRow(), printRow(), printSignpowerCons(), printSignpowerRow(), printSOCCons(), printSOSCons(), probingnodeFree(), probingnodeUpdate(), probRemoveVar(), process(), processBinvarFixings(), processContainedCons(), processFixings(), processIntegerBoundChg(), processNlRow(), processWatchedVars(), profileInsertTimepoint(), profileUpdate(), projectVbd(), propagateAllConss(), propagateBinaryBestRootRedcost(), propagateBounds(), propagateBoundsBilinearTerm(), propagateBoundsCons(), propagateBoundsQuadVar(), propagateBoundsTightenVar(), propagateBoundsTightenVarLb(), propagateBoundsTightenVarUb(), propagateCons(), propagateConstraintSides(), propagateCumulativeCondition(), propagateCutoffbound(), propagateCutoffboundBinvar(), propagateCutoffboundBinvars(), propagateCutoffboundGlobally(), propagateCutoffboundVar(), propagateDomains(), propagateEdgeFinding(), propagateLbTTEF(), propagateLowerbound(), propagateLowerboundBinvar(), propagateLowerboundVar(), propagateRedcostBinvar(), propagateRedcostVar(), propagateRootRedcostBinvar(), propagateRootRedcostVar(), propagateTimetable(), propagateTTEF(), propagateUbTTEF(), propagateVarbounds(), propagateVbounds(), propagationRound(), propAndSolve(), propdataCreate(), propdataExit(), propdataInit(), propIndicator(), proposeFeasibleSolution(), propSOS1(), propSOS2(), provedBound(), pseudoforkAddLP(), pseudoforkCreate(), pseudoforkFree(), rangedRowSimplify(), readBinaries(), readBounds(), readCnf(), readCoefficients(), readCols(), readConstraints(), readerdataAddOutputvar(), readerdataAddOutputvararray(), readerdataCreate(), readExpression(), readFZNFile(), readGenerals(), readIndicators(), readInputLine(), readLinearCoefs(), readLPFile(), readMps(), readNonlinearExprs(), readObjective(), readOPBFile(), readParams(), readPIPFile(), readPolynomial(), readQCMatrix(), readQMatrix(), readQuadraticCoefs(), readRanges(), readRhs(), readRows(), readSemicontinuous(), readSol(), readSOS(), readSos(), readSOScons(), readVariables(), readXMLSol(), reconvertSides(), reformEnsureChildrenMinCurvature(), reformMonomial(), reformNode2Var(), reformReplaceNode(), reformulate(), registerBranchingCandidates(), registerBranchingVariables(), registerLargeLPValueVariableForBranching(), registerVariableInfeasibilities(), relaxVbdvar(), releaseHashmapEntries(), releaseHashmapNLPRows(), removeBilinearTermsPos(), removeConstraintsDueToNegCliques(), removeDoubleAndSingletonsAndPerformDualpresolve(), removeFixedBinvars(), removeFixedLinearVariables(), removeFixedNonlinearVariables(), removeFixedVariables(), removeIrrelevantJobs(), removeOldLocks(), removeOversizedJobs(), removeRedundantCons(), removeRedundantConss(), removeRedundantConssAndNonzeros(), removeRedundantConstraints(), removeRedundantNonZeros(), removeZeroWeights(), replaceByLinearConstraints(), replaceQuadVarTermPos(), replaceViolatedByLinearConstraints(), resetLocalStartingData(), resolveGenVBoundPropagation(), resolvePropagation(), resolvePropagationCoretimes(), respropCumulativeCondition(), rowAddCoef(), rowChgCoefPos(), rowDelCoefPos(), rowEventCoefChanged(), rowEventConstantChanged(), rowEventSideChanged(), rowLink(), rowScale(), rowSideChanged(), rowUnlink(), scaleCons(), scaleFirstRow(), SCIP_DECL_BRANCHCOPY(), SCIP_DECL_BRANCHEXECEXT(), SCIP_DECL_BRANCHEXECLP(), SCIP_DECL_BRANCHEXECPS(), SCIP_DECL_BRANCHEXIT(), SCIP_DECL_BRANCHEXITSOL(), SCIP_DECL_BRANCHFREE(), SCIP_DECL_BRANCHINIT(), SCIP_DECL_BRANCHINITSOL(), SCIP_DECL_CONFLICTEXEC(), SCIP_DECL_CONSACTIVE(), SCIP_DECL_CONSCHECK(), SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSDEACTIVE(), SCIP_DECL_CONSDELETE(), SCIP_DECL_CONSDELVARS(), SCIP_DECL_CONSDISABLE(), SCIP_DECL_CONSENABLE(), SCIP_DECL_CONSENFOLP(), SCIP_DECL_CONSENFOPS(), SCIP_DECL_CONSEXIT(), SCIP_DECL_CONSEXITPRE(), SCIP_DECL_CONSEXITSOL(), SCIP_DECL_CONSFREE(), SCIP_DECL_CONSGETNVARS(), SCIP_DECL_CONSGETVARS(), SCIP_DECL_CONSHDLRCOPY(), SCIP_DECL_CONSINIT(), SCIP_DECL_CONSINITLP(), SCIP_DECL_CONSINITPRE(), SCIP_DECL_CONSINITSOL(), SCIP_DECL_CONSLOCK(), SCIP_DECL_CONSPARSE(), SCIP_DECL_CONSPRESOL(), SCIP_DECL_CONSPRINT(), SCIP_DECL_CONSPROP(), SCIP_DECL_CONSRESPROP(), SCIP_DECL_CONSSEPALP(), SCIP_DECL_CONSSEPASOL(), SCIP_DECL_CONSTRANS(), SCIP_DECL_DIALOGCOPY(), SCIP_DECL_DIALOGDESC(), SCIP_DECL_DIALOGEXEC(), SCIP_DECL_DIALOGFREE(), SCIP_DECL_DISPCOPY(), SCIP_DECL_DISPEXIT(), SCIP_DECL_DISPEXITSOL(), SCIP_DECL_DISPFREE(), SCIP_DECL_DISPINIT(), SCIP_DECL_DISPINITSOL(), SCIP_DECL_DISPOUTPUT(), SCIP_DECL_EVENTCOPY(), SCIP_DECL_EVENTDELETE(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_EVENTEXIT(), SCIP_DECL_EVENTEXITSOL(), SCIP_DECL_EVENTFREE(), SCIP_DECL_EVENTINIT(), SCIP_DECL_EVENTINITSOL(), SCIP_DECL_EXPRCOPYDATA(), SCIP_DECL_EXPRGRAPHNODEREFORM(), SCIP_DECL_EXPRGRAPHVARADDED(), SCIP_DECL_EXPRGRAPHVARREMOVE(), SCIP_DECL_HEURCOPY(), SCIP_DECL_HEUREXEC(), SCIP_DECL_HEUREXIT(), SCIP_DECL_HEUREXITSOL(), SCIP_DECL_HEURFREE(), SCIP_DECL_HEURINIT(), SCIP_DECL_HEURINITSOL(), SCIP_DECL_LINCONSUPGD(), SCIP_DECL_MESSAGEHDLRFREE(), SCIP_DECL_NLPIADDCONSTRAINTS(), SCIP_DECL_NLPIADDVARS(), SCIP_DECL_NLPICHGCONSSIDES(), SCIP_DECL_NLPICHGEXPRTREE(), SCIP_DECL_NLPICHGLINEARCOEFS(), SCIP_DECL_NLPICHGNONLINCOEF(), SCIP_DECL_NLPICHGOBJCONSTANT(), SCIP_DECL_NLPICHGQUADCOEFS(), SCIP_DECL_NLPICHGVARBOUNDS(), SCIP_DECL_NLPICOPY(), SCIP_DECL_NLPICREATEPROBLEM(), SCIP_DECL_NLPIDELCONSSET(), SCIP_DECL_NLPIDELVARSET(), SCIP_DECL_NLPIFREEPROBLEM(), SCIP_DECL_NLPISETOBJECTIVE(), SCIP_DECL_NODESELCOPY(), SCIP_DECL_NODESELEXIT(), SCIP_DECL_NODESELEXITSOL(), SCIP_DECL_NODESELFREE(), SCIP_DECL_NODESELINIT(), SCIP_DECL_NODESELINITSOL(), SCIP_DECL_NODESELSELECT(), SCIP_DECL_NONLINCONSUPGD(), SCIP_DECL_PARAMCHGD(), SCIP_DECL_PRESOLCOPY(), SCIP_DECL_PRESOLEXEC(), SCIP_DECL_PRESOLEXIT(), SCIP_DECL_PRESOLEXITPRE(), SCIP_DECL_PRESOLFREE(), SCIP_DECL_PRESOLINIT(), SCIP_DECL_PRESOLINITPRE(), SCIP_DECL_PRICERCOPY(), SCIP_DECL_PRICEREXIT(), SCIP_DECL_PRICEREXITSOL(), SCIP_DECL_PRICERFARKAS(), SCIP_DECL_PRICERFREE(), SCIP_DECL_PRICERINIT(), SCIP_DECL_PRICERINITSOL(), SCIP_DECL_PRICERREDCOST(), SCIP_DECL_PROBCOPY(), SCIP_DECL_PROBDELORIG(), SCIP_DECL_PROBDELTRANS(), SCIP_DECL_PROBEXITSOL(), SCIP_DECL_PROBINITSOL(), SCIP_DECL_PROBTRANS(), SCIP_DECL_PROPCOPY(), SCIP_DECL_PROPEXEC(), SCIP_DECL_PROPEXIT(), SCIP_DECL_PROPEXITPRE(), SCIP_DECL_PROPEXITSOL(), SCIP_DECL_PROPFREE(), SCIP_DECL_PROPINIT(), SCIP_DECL_PROPINITPRE(), SCIP_DECL_PROPINITSOL(), SCIP_DECL_PROPPRESOL(), SCIP_DECL_PROPRESPROP(), SCIP_DECL_QUADCONSUPGD(), SCIP_DECL_READERCOPY(), SCIP_DECL_READERFREE(), SCIP_DECL_READERREAD(), SCIP_DECL_READERWRITE(), SCIP_DECL_RELAXCOPY(), SCIP_DECL_RELAXEXEC(), SCIP_DECL_RELAXEXIT(), SCIP_DECL_RELAXEXITSOL(), SCIP_DECL_RELAXFREE(), SCIP_DECL_RELAXINIT(), SCIP_DECL_RELAXINITSOL(), SCIP_DECL_SEPACOPY(), SCIP_DECL_SEPAEXECLP(), SCIP_DECL_SEPAEXECSOL(), SCIP_DECL_SEPAEXIT(), SCIP_DECL_SEPAEXITSOL(), SCIP_DECL_SEPAFREE(), SCIP_DECL_SEPAINIT(), SCIP_DECL_SEPAINITSOL(), SCIP_DECL_SOLVECUMULATIVE(), SCIP_DECL_VARCOPY(), SCIP_DECL_VARDELORIG(), SCIP_DECL_VARDELTRANS(), SCIP_DECL_VARTRANS(), SCIPactivatePricer(), SCIPactiveCons(), SCIPaddBilinTermQuadratic(), SCIPaddBoolParam(), SCIPaddCharParam(), SCIPaddClique(), SCIPaddCoefKnapsack(), SCIPaddCoefLinear(), SCIPaddCoefLogicor(), SCIPaddCoefPseudoboolean(), SCIPaddCoefSetppc(), SCIPaddConflictBd(), SCIPaddConflictBinvar(), SCIPaddConflictLb(), SCIPaddConflictRelaxedBd(), SCIPaddConflictRelaxedLb(), SCIPaddConflictRelaxedUb(), SCIPaddConflictUb(), SCIPaddCons(), SCIPaddConsAge(), SCIPaddConsElemConjunction(), SCIPaddConsElemDisjunction(), SCIPaddConsLocal(), SCIPaddConsLocks(), SCIPaddConsNode(), SCIPaddCurrentSol(), SCIPaddCut(), SCIPaddDelayedPoolCut(), SCIPaddDialogEntry(), SCIPaddDialogHistoryLine(), SCIPaddDialogInputLine(), SCIPaddExprtreesNonlinear(), SCIPaddExternBranchCand(), SCIPaddIntParam(), SCIPaddLinearCoefsToNlRow(), SCIPaddLinearCoefToNlRow(), SCIPaddLinearConsIndicator(), SCIPaddLinearConsToNlpHeurSubNlp(), SCIPaddLinearVarNonlinear(), SCIPaddLinearVarQuadratic(), SCIPaddLongintParam(), SCIPaddNewRowCutpool(), SCIPaddNlRow(), SCIPaddObjoffset(), SCIPaddOrigObjoffset(), SCIPaddPoolCut(), SCIPaddPricedVar(), SCIPaddQuadElementsToNlRow(), SCIPaddQuadElementToNlRow(), SCIPaddQuadVarLinearCoefQuadratic(), SCIPaddQuadVarQuadratic(), SCIPaddQuadVarsToNlRow(), SCIPaddQuadVarToNlRow(), SCIPaddRealParam(), SCIPaddRowCutpool(), SCIPaddRowDive(), SCIPaddRowIndicator(), SCIPaddSol(), SCIPaddSolFree(), SCIPaddSquareCoefQuadratic(), SCIPaddStringParam(), SCIPaddTermPseudoboolean(), SCIPaddToNlpiProblemQuadratic(), SCIPaddToNlpiProblemSOC(), SCIPaddVar(), SCIPaddVarBranchFactor(), SCIPaddVarBranchPriority(), SCIPaddVarImplication(), SCIPaddVarIndicator(), SCIPaddVarLocks(), SCIPaddVarObj(), SCIPaddVarSOS1(), SCIPaddVarSOS2(), SCIPaddVarsToRow(), SCIPaddVarsToRowSameCoef(), SCIPaddVarToRow(), SCIPaddVarVlb(), SCIPaddVarVub(), SCIPadjustImplicitSolVals(), SCIPaggregateVars(), SCIPallocBufferSize(), SCIPanalyzeConflict(), SCIPanalyzeConflictCons(), SCIPanalyzeDeductionsProbing(), SCIPappendVarSOS1(), SCIPappendVarSOS2(), SCIPapplyHeurDualval(), SCIPapplyHeurSubNlp(), SCIPapplyProbingVar(), SCIPapplyProximity(), SCIPapplyUndercover(), SCIPapplyZeroobj(), SCIPautoselectDisps(), SCIPbacktrackProbing(), SCIPboolarrayCopy(), SCIPboolarraySetVal(), SCIPboundchgApply(), SCIPboundchgUndo(), SCIPbranchcandAddExternCand(), SCIPbranchcandGetLPCands(), SCIPbranchcandUpdateVar(), SCIPbranchcandUpdateVarBranchPriority(), SCIPbranchExecExtern(), SCIPbranchExecLP(), SCIPbranchExecPseudo(), SCIPbranchExtern(), SCIPbranchLP(), SCIPbranchPseudo(), SCIPbranchruleCopyInclude(), SCIPbranchruleCreate(), SCIPbranchruleExecExternSol(), SCIPbranchruleExecLPSol(), SCIPbranchruleExecPseudoSol(), SCIPbranchruleExit(), SCIPbranchruleExitsol(), SCIPbranchruleFree(), SCIPbranchruleInit(), SCIPbranchruleInitsol(), SCIPbranchVar(), SCIPbranchVarHole(), SCIPbranchVarVal(), SCIPbranchVarValNary(), SCIPbtnodeCreate(), SCIPbufferAllocMemSave(), SCIPbufferDuplicateMem(), SCIPbufferDuplicateMemSave(), SCIPbufferReallocMemSave(), SCIPcacheRowExtensions(), SCIPcalcCliquePartition(), SCIPcalcMIR(), SCIPcalcNegatedCliquePartition(), SCIPcalcRowIntegralScalar(), SCIPcalcStrongCG(), SCIPcaptureCons(), SCIPcaptureNlRow(), SCIPcaptureRow(), SCIPcaptureVar(), SCIPcatchEvent(), SCIPcatchRowEvent(), SCIPcatchVarEvent(), SCIPcheckCons(), SCIPcheckCumulativeCondition(), SCIPcheckCurvatureNonlinear(), SCIPcheckCurvatureQuadratic(), SCIPcheckSol(), SCIPcheckSolOrig(), SCIPchgBarrierconvtol(), SCIPchgBoolParam(), SCIPchgCharParam(), SCIPchgChildPrio(), SCIPchgConsName(), SCIPchgCutoffboundDive(), SCIPchgDualfeastol(), SCIPchgFeastol(), SCIPchgIntParam(), SCIPchgLhsLinear(), SCIPchgLhsPseudoboolean(), SCIPchgLongintParam(), SCIPchgLpfeastol(), SCIPchgNlRowConstant(), SCIPchgNlRowLhs(), SCIPchgNlRowLinearCoef(), SCIPchgNlRowQuadElement(), SCIPchgNlRowRhs(), SCIPchgRealParam(), SCIPchgRhsLinear(), SCIPchgRhsPseudoboolean(), SCIPchgRowLhs(), SCIPchgRowLhsDive(), SCIPchgRowRhs(), SCIPchgRowRhsDive(), SCIPchgStringParam(), SCIPchgVarBoundsDiveNLP(), SCIPchgVarBranchDirection(), SCIPchgVarBranchFactor(), SCIPchgVarBranchPriority(), SCIPchgVarLb(), SCIPchgVarLbDive(), SCIPchgVarLbGlobal(), SCIPchgVarLbLazy(), SCIPchgVarLbNode(), SCIPchgVarLbProbing(), SCIPchgVarName(), SCIPchgVarObj(), SCIPchgVarObjDive(), SCIPchgVarObjDiveNLP(), SCIPchgVarsBoundsDiveNLP(), SCIPchgVarType(), SCIPchgVarUb(), SCIPchgVarUbDive(), SCIPchgVarUbGlobal(), SCIPchgVarUbLazy(), SCIPchgVarUbNode(), SCIPchgVarUbProbing(), SCIPclearBoolarray(), SCIPclearCuts(), SCIPclearIntarray(), SCIPclearPtrarray(), SCIPclearRealarray(), SCIPclearRelaxSolVals(), SCIPclearSol(), SCIPcliqueAddVar(), SCIPcliquelistAdd(), SCIPcliquetableAdd(), SCIPcliquetableCleanup(), SCIPcolAddCoef(), SCIPcolChgCoef(), SCIPcolChgLb(), SCIPcolChgObj(), SCIPcolChgUb(), SCIPcolDelCoef(), SCIPcolFree(), SCIPcolGetStrongbranch(), SCIPcolGetStrongbranches(), SCIPcolIncCoef(), SCIPcomputeCoverUndercover(), SCIPcomputeLPRelIntPoint(), SCIPconflictAddBound(), SCIPconflictAddRelaxedBound(), SCIPconflictAnalyze(), SCIPconflictAnalyzeLP(), SCIPconflictAnalyzePseudo(), SCIPconflictAnalyzeStrongbranch(), SCIPconflictCreate(), SCIPconflictFlushConss(), SCIPconflicthdlrCopyInclude(), SCIPconflicthdlrCreate(), SCIPconflicthdlrExec(), SCIPconflicthdlrExit(), SCIPconflicthdlrExitsol(), SCIPconflicthdlrFree(), SCIPconflicthdlrInit(), SCIPconflicthdlrInitsol(), SCIPconflictInit(), SCIPconflictIsVarUsed(), SCIPconsActivate(), SCIPconsActive(), SCIPconsAddAge(), SCIPconsAddLocks(), SCIPconsCheck(), SCIPconsCopy(), SCIPconsCreate(), SCIPconsDeactivate(), SCIPconsDeactive(), SCIPconsDelete(), SCIPconsDisable(), SCIPconsDisablePropagation(), SCIPconsDisableSeparation(), SCIPconsEnable(), SCIPconsEnablePropagation(), SCIPconsEnableSeparation(), SCIPconsEnfolp(), SCIPconsEnfops(), SCIPconsFree(), SCIPconsGetNVars(), SCIPconsGetVars(), SCIPconshdlrCheck(), SCIPconshdlrCopyInclude(), SCIPconshdlrCreate(), SCIPconshdlrDelVars(), SCIPconshdlrEnforceLPSol(), SCIPconshdlrEnforcePseudoSol(), SCIPconshdlrExit(), SCIPconshdlrExitpre(), SCIPconshdlrExitsol(), SCIPconshdlrFree(), SCIPconshdlrInit(), SCIPconshdlrInitLP(), SCIPconshdlrInitpre(), SCIPconshdlrInitsol(), SCIPconshdlrLockVars(), SCIPconshdlrPopProp(), SCIPconshdlrPresolve(), SCIPconshdlrPropagate(), SCIPconshdlrSeparateLP(), SCIPconshdlrSeparateSol(), SCIPconshdlrsResetPropagationStatus(), SCIPconshdlrsStorePropagationStatus(), SCIPconshdlrUnlockVars(), SCIPconsIncAge(), SCIPconsInitlp(), SCIPconsMarkPropagate(), SCIPconsParse(), SCIPconsPresol(), SCIPconsPrint(), SCIPconsProp(), SCIPconsPushProp(), SCIPconsRelease(), SCIPconsResetAge(), SCIPconsResolvePropagation(), SCIPconsResprop(), SCIPconsSepalp(), SCIPconsSepasol(), SCIPconsSetChecked(), SCIPconssetchgAddAddedCons(), SCIPconssetchgAddDisabledCons(), SCIPconssetchgApply(), SCIPconssetchgFree(), SCIPconssetchgMakeGlobal(), SCIPconssetchgUndo(), SCIPconsSetEnforced(), SCIPconsSetInitial(), SCIPconsSetPropagated(), SCIPconsSetSeparated(), SCIPconsTransform(), SCIPconstructCurrentLP(), SCIPconstructLP(), SCIPconsUnmarkPropagate(), SCIPconvertCutsToConss(), SCIPcopy(), SCIPcopyConsLinear(), SCIPcopyConss(), SCIPcopyCuts(), SCIPcopyImplicationsCliques(), SCIPcopyOrig(), SCIPcopyOrigConss(), SCIPcopyOrigProb(), SCIPcopyOrigVars(), SCIPcopyParamSettings(), SCIPcopyPlugins(), SCIPcopyProb(), SCIPcopyVars(), SCIPcount(), SCIPcreate(), SCIPcreateBoolarray(), SCIPcreateChild(), SCIPcreateClock(), SCIPcreateCons(), SCIPcreateConsAbspower(), SCIPcreateConsAnd(), SCIPcreateConsBasicAbspower(), SCIPcreateConsBasicAnd(), SCIPcreateConsBasicBivariate(), SCIPcreateConsBasicBounddisjunction(), SCIPcreateConsBasicConjunction(), SCIPcreateConsBasicCumulative(), SCIPcreateConsBasicDisjunction(), SCIPcreateConsBasicIndicator(), SCIPcreateConsBasicIndicatorLinCons(), SCIPcreateConsBasicKnapsack(), SCIPcreateConsBasicLinear(), SCIPcreateConsBasicLinking(), SCIPcreateConsBasicLogicor(), SCIPcreateConsBasicNonlinear(), SCIPcreateConsBasicNonlinear2(), SCIPcreateConsBasicOr(), SCIPcreateConsBasicOrbitope(), SCIPcreateConsBasicPseudoboolean(), SCIPcreateConsBasicQuadratic(), SCIPcreateConsBasicQuadratic2(), SCIPcreateConsBasicSetcover(), SCIPcreateConsBasicSetpack(), SCIPcreateConsBasicSetpart(), SCIPcreateConsBasicSOC(), SCIPcreateConsBasicSOS1(), SCIPcreateConsBasicSOS2(), SCIPcreateConsBasicSuperindicator(), SCIPcreateConsBasicVarbound(), SCIPcreateConsBasicXor(), SCIPcreateConsBivariate(), SCIPcreateConsBounddisjunction(), SCIPcreateConsConjunction(), SCIPcreateConsCumulative(), SCIPcreateConsDisjunction(), SCIPcreateConsIndicator(), SCIPcreateConsIndicatorLinCons(), SCIPcreateConsKnapsack(), SCIPcreateConsLinear(), SCIPcreateConsLinking(), SCIPcreateConsLogicor(), SCIPcreateConsNonlinear(), SCIPcreateConsNonlinear2(), SCIPcreateConsOr(), SCIPcreateConsOrbitope(), SCIPcreateConsPseudoboolean(), SCIPcreateConsPseudobooleanWithConss(), SCIPcreateConsQuadratic(), SCIPcreateConsQuadratic2(), SCIPcreateConsSOC(), SCIPcreateConsSOS1(), SCIPcreateConsSOS2(), SCIPcreateConsSuperindicator(), SCIPcreateConsVarbound(), SCIPcreateConsXor(), SCIPcreateCPUClock(), SCIPcreateCurrentSol(), SCIPcreateCutpool(), SCIPcreateEmptyNlRow(), SCIPcreateEmptyRow(), SCIPcreateEmptyRowCons(), SCIPcreateEmptyRowSepa(), SCIPcreateEmptyRowUnspec(), SCIPcreateFiniteSolCopy(), SCIPcreateIntarray(), SCIPcreateLPSol(), SCIPcreateMessagehdlrDefault(), SCIPcreateNLPSol(), SCIPcreateNlpSolverIpopt(), SCIPcreateNlRow(), SCIPcreateNlRowFromRow(), SCIPcreateObjMessagehdlr(), SCIPcreateObjProb(), SCIPcreateObjVar(), SCIPcreateOrigSol(), SCIPcreateProb(), SCIPcreateProbBasic(), SCIPcreatePseudoSol(), SCIPcreatePtrarray(), SCIPcreateRealarray(), SCIPcreateRelaxSol(), SCIPcreateRootDialog(), SCIPcreateRow(), SCIPcreateRowCons(), SCIPcreateRowSepa(), SCIPcreateRowUnspec(), SCIPcreateSol(), SCIPcreateSolCopy(), SCIPcreateUnknownSol(), SCIPcreateVar(), SCIPcreateVarBasic(), SCIPcreateWallClock(), SCIPcreateWorstCaseProfile(), SCIPcutGenerationHeuristicCmir(), SCIPcutoffNode(), SCIPcutpoolAddNewRow(), SCIPcutpoolAddRow(), SCIPcutpoolClear(), SCIPcutpoolCreate(), SCIPcutpoolDelRow(), SCIPcutpoolFree(), SCIPcutpoolSeparate(), SCIPdeactivatePricer(), SCIPdeactiveCons(), SCIPdelCons(), SCIPdelConsLocal(), SCIPdelConsNode(), SCIPdelDelayedPoolCut(), SCIPdelPoolCut(), SCIPdelRowCutpool(), SCIPdelVar(), SCIPdialogAddEntry(), SCIPdialogCopyInclude(), SCIPdialogDisplayCompletions(), SCIPdialogDisplayMenu(), SCIPdialogDisplayMenuEntry(), SCIPdialogExec(), SCIPdialoghdlrAddHistory(), SCIPdialoghdlrCreate(), SCIPdialoghdlrExec(), SCIPdialoghdlrFree(), SCIPdialoghdlrGetWord(), SCIPdialoghdlrSetRoot(), SCIPdialogRelease(), SCIPdigraphAddArc(), SCIPdigraphAddArcSafe(), SCIPdigraphComputeUndirectedComponents(), SCIPdisableCons(), SCIPdisableConsPropagation(), SCIPdisableConsSeparation(), SCIPdispCopyInclude(), SCIPdispCreate(), SCIPdispExit(), SCIPdispExitsol(), SCIPdispFree(), SCIPdispInit(), SCIPdispInitsol(), SCIPdispOutput(), SCIPdispPrintLine(), SCIPdomchgAddBoundchg(), SCIPdomchgAddHolechg(), SCIPdomchgApply(), SCIPdomchgApplyGlobal(), SCIPdomchgFree(), SCIPdomchgMakeStatic(), SCIPdomchgUndo(), SCIPdropEvent(), SCIPdropRowEvent(), SCIPdropVarEvent(), SCIPduplicateBufferSize(), SCIPenableCons(), SCIPenableConsPropagation(), SCIPenableConsSeparation(), SCIPendDive(), SCIPendDiveNLP(), SCIPendProbing(), SCIPendStrongbranch(), SCIPenfolpCons(), SCIPenfopsCons(), SCIPevalExprtreeGlobalBounds(), SCIPevalExprtreeLocalBounds(), SCIPevalExprtreeSol(), SCIPeventfilterAdd(), SCIPeventfilterFree(), SCIPeventfilterProcess(), SCIPeventhdlrCopyInclude(), SCIPeventhdlrCreate(), SCIPeventhdlrExec(), SCIPeventhdlrExit(), SCIPeventhdlrExitsol(), SCIPeventhdlrFree(), SCIPeventhdlrInit(), SCIPeventhdlrInitsol(), SCIPeventProcess(), SCIPeventqueueAdd(), SCIPeventqueueProcess(), SCIPexecPropVbounds(), SCIPexecRelpscostBranching(), SCIPexprAdd(), SCIPexprAddMonomialFactors(), SCIPexprAddMonomials(), SCIPexprCheckCurvature(), SCIPexprCopyDeep(), SCIPexprCreate(), SCIPexprCreateLinear(), SCIPexprCreatePolynomial(), SCIPexprCreateQuadratic(), SCIPexprEval(), SCIPexprEvalInt(), SCIPexprGetMaxDegree(), SCIPexprgraphAddConst(), SCIPexprgraphAddExprtreeSum(), SCIPexprgraphAddNode(), SCIPexprgraphAddVars(), SCIPexprgraphCheckCurvature(), SCIPexprgraphCreate(), SCIPexprgraphCreateNode(), SCIPexprgraphCreateNodeLinear(), SCIPexprgraphCreateNodePolynomial(), SCIPexprgraphCreateNodeQuadratic(), SCIPexprgraphEval(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphGetSumTrees(), SCIPexprgraphGetTree(), SCIPexprgraphMoveNodeParents(), SCIPexprgraphNodePolynomialAddMonomials(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphPropagateVarBounds(), SCIPexprgraphReleaseNode(), SCIPexprgraphReplaceVarByLinearSum(), SCIPexprgraphSimplify(), SCIPexprgraphUpdateNodeBoundsCurvature(), SCIPexprintCompile(), SCIPexprintEval(), SCIPexprintEvalInt(), SCIPexprintGrad(), SCIPexprintGradInt(), SCIPexprintHessianDense(), SCIPexprintHessianSparsityDense(), SCIPexprMulConstant(), SCIPexprMultiplyMonomialByMonomial(), SCIPexprMultiplyPolynomialByMonomial(), SCIPexprMultiplyPolynomialByPolynomial(), SCIPexprParse(), SCIPexprPolynomialPower(), SCIPexprSimplify(), SCIPexprSubstituteVars(), SCIPexprtreeAddExpr(), SCIPexprtreeCheckCurvature(), SCIPexprtreeCopy(), SCIPexprtreeEval(), SCIPexprtreeEvalInt(), SCIPexprtreeFree(), SCIPexprtreeFreeInterpreterData(), SCIPexprtreeGetMaxDegree(), SCIPexprtreeRemoveFixedVars(), SCIPexprtreeSimplify(), SCIPexprtreeSubstituteVars(), SCIPextendBoolarray(), SCIPextendIntarray(), SCIPextendPtrarray(), SCIPextendRealarray(), SCIPfindQuadVarTermQuadratic(), SCIPfixParam(), SCIPfixVar(), SCIPfixVarProbing(), SCIPflattenVarAggregationGraph(), SCIPflushLP(), SCIPflushNLP(), SCIPflushRowExtensions(), SCIPfree(), SCIPfreeBoolarray(), SCIPfreeCutpool(), SCIPfreeIntarray(), SCIPfreeProb(), SCIPfreePtrarray(), SCIPfreeRealarray(), SCIPfreeSol(), SCIPfreeSolve(), SCIPfreeTransform(), SCIPgenVBoundAdd(), SCIPgetActiveVars(), SCIPgetAndDatasPseudoboolean(), SCIPgetBinvarRepresentative(), SCIPgetBinvarRepresentatives(), SCIPgetBinvarsLinking(), SCIPgetBoolParam(), SCIPgetCharParam(), SCIPgetChildren(), SCIPgetConsCopy(), SCIPgetConsNVars(), SCIPgetConsVars(), SCIPgetCurvatureNonlinear(), SCIPgetExprtreeCurvaturesNonlinear(), SCIPgetExprtreeTransformedVars(), SCIPgetExternBranchCands(), SCIPgetIntParam(), SCIPgetLeaves(), SCIPgetLinDatasWithoutAndPseudoboolean(), SCIPgetLongintParam(), SCIPgetLPBasisInd(), SCIPgetLPBInvACol(), SCIPgetLPBInvARow(), SCIPgetLPBInvCol(), SCIPgetLPBInvRow(), SCIPgetLPBranchCands(), SCIPgetLPColsData(), SCIPgetLPI(), SCIPgetLPRowsData(), SCIPgetNegatedVar(), SCIPgetNegatedVars(), SCIPgetNLPFracVars(), SCIPgetNLPI(), SCIPgetNLPIntPar(), SCIPgetNLPNlRowsData(), SCIPgetNLPRealPar(), SCIPgetNLPStatistics(), SCIPgetNLPStringPar(), SCIPgetNLPVarsData(), SCIPgetNLPVarsNonlinearity(), SCIPgetNlRowAbspower(), SCIPgetNlRowActivity(), SCIPgetNlRowActivityBounds(), SCIPgetNlRowFeasibility(), SCIPgetNlRowNLPActivity(), SCIPgetNlRowNLPFeasibility(), SCIPgetNlRowNonlinear(), SCIPgetNlRowPseudoActivity(), SCIPgetNlRowPseudoFeasibility(), SCIPgetNlRowQuadratic(), SCIPgetNlRowSOC(), SCIPgetNlRowSolActivity(), SCIPgetNlRowSolFeasibility(), SCIPgetOpenNodesData(), SCIPgetOrigVarsData(), SCIPgetProbvarLinearSum(), SCIPgetProbvarSum(), SCIPgetPseudoBranchCands(), SCIPgetRealParam(), SCIPgetSiblings(), SCIPgetSolVals(), SCIPgetSolVarsData(), SCIPgetStringParam(), SCIPgetTransformedCons(), SCIPgetTransformedConss(), SCIPgetTransformedVar(), SCIPgetTransformedVars(), SCIPgetVarClosestVlb(), SCIPgetVarClosestVub(), SCIPgetVarCopy(), SCIPgetVarsData(), SCIPgetVarSols(), SCIPgetVarsStrongbranchesFrac(), SCIPgetVarsStrongbranchesInt(), SCIPgetVarStrongbranchFrac(), SCIPgetVarStrongbranchInt(), SCIPgetVarStrongbranchLast(), SCIPgetVarStrongbranchWithPropagation(), SCIPgetViolationNonlinear(), SCIPgetViolationQuadratic(), SCIPhashmapInsert(), SCIPhashmapRemove(), SCIPhashmapSetImage(), SCIPhashtableInsert(), SCIPhashtableSafeInsert(), SCIPheurCopyInclude(), SCIPheurCreate(), SCIPheurExec(), SCIPheurExit(), SCIPheurExitsol(), SCIPheurFree(), SCIPheurInit(), SCIPheurInitsol(), SCIPheurPassSolAddSol(), SCIPheurPassSolTrySol(), SCIPimplicsAdd(), SCIPincConsAge(), SCIPincIntarrayVal(), SCIPincludeBranchrule(), SCIPincludeBranchruleAllfullstrong(), SCIPincludeBranchruleBasic(), SCIPincludeBranchruleCloud(), SCIPincludeBranchruleFullstrong(), SCIPincludeBranchruleInference(), SCIPincludeBranchruleLeastinf(), SCIPincludeBranchruleMostinf(), SCIPincludeBranchrulePscost(), SCIPincludeBranchruleRandom(), SCIPincludeBranchruleRelpscost(), SCIPincludeConflicthdlr(), SCIPincludeConflicthdlrBasic(), SCIPincludeConshdlr(), SCIPincludeConshdlrAbspower(), SCIPincludeConshdlrAnd(), SCIPincludeConshdlrBasic(), SCIPincludeConshdlrBivariate(), SCIPincludeConshdlrBounddisjunction(), SCIPincludeConshdlrConjunction(), SCIPincludeConshdlrCountsols(), SCIPincludeConshdlrCumulative(), SCIPincludeConshdlrDisjunction(), SCIPincludeConshdlrIndicator(), SCIPincludeConshdlrIntegral(), SCIPincludeConshdlrKnapsack(), SCIPincludeConshdlrLinear(), SCIPincludeConshdlrLinking(), SCIPincludeConshdlrLogicor(), SCIPincludeConshdlrNonlinear(), SCIPincludeConshdlrOr(), SCIPincludeConshdlrOrbitope(), SCIPincludeConshdlrPseudoboolean(), SCIPincludeConshdlrQuadratic(), SCIPincludeConshdlrSetppc(), SCIPincludeConshdlrSOC(), SCIPincludeConshdlrSOS1(), SCIPincludeConshdlrSOS2(), SCIPincludeConshdlrSuperindicator(), SCIPincludeConshdlrVarbound(), SCIPincludeConshdlrViolatedCut(), SCIPincludeConshdlrXor(), SCIPincludeDefaultPlugins(), SCIPincludeDialog(), SCIPincludeDialogDefault(), SCIPincludeDialogDefaultFix(), SCIPincludeDialogDefaultSet(), SCIPincludeDisp(), SCIPincludeDispDefault(), SCIPincludeEventhdlr(), SCIPincludeEventhdlrBasic(), SCIPincludeEventHdlrLPsol(), SCIPincludeExternalCodeInformation(), SCIPincludeHeur(), SCIPincludeHeurActconsdiving(), SCIPincludeHeurBasic(), SCIPincludeHeurClique(), SCIPincludeHeurCoefdiving(), SCIPincludeHeurCrossover(), SCIPincludeHeurDins(), SCIPincludeHeurDualval(), SCIPincludeHeurFeaspump(), SCIPincludeHeurFixandinfer(), SCIPincludeHeurFracdiving(), SCIPincludeHeurGuideddiving(), SCIPincludeHeurIntdiving(), SCIPincludeHeurIntshifting(), SCIPincludeHeurLinesearchdiving(), SCIPincludeHeurLocalbranching(), SCIPincludeHeurMutation(), SCIPincludeHeurNlpdiving(), SCIPincludeHeurObjpscostdiving(), SCIPincludeHeurOctane(), SCIPincludeHeurOneopt(), SCIPincludeHeurProximity(), SCIPincludeHeurPscostdiving(), SCIPincludeHeurRandrounding(), SCIPincludeHeurRins(), SCIPincludeHeurRootsoldiving(), SCIPincludeHeurRounding(), SCIPincludeHeurShiftandpropagate(), SCIPincludeHeurShifting(), SCIPincludeHeurSimplerounding(), SCIPincludeHeurSubNlp(), SCIPincludeHeurTrivial(), SCIPincludeHeurTrySol(), SCIPincludeHeurTwoopt(), SCIPincludeHeurUndercover(), SCIPincludeHeurVbounds(), SCIPincludeHeurVeclendiving(), SCIPincludeHeurZeroobj(), SCIPincludeHeurZirounding(), SCIPincludeLinconsUpgrade(), SCIPincludeNlpi(), SCIPincludeNodesel(), SCIPincludeNodeselBasic(), SCIPincludeNodeselBfs(), SCIPincludeNodeselBreadthfirst(), SCIPincludeNodeselDfs(), SCIPincludeNodeselEstimate(), SCIPincludeNodeselHybridestim(), SCIPincludeNodeselRestartdfs(), SCIPincludeNodeselUct(), SCIPincludeNonlinconsUpgrade(), SCIPincludeObjBranchrule(), SCIPincludeObjConshdlr(), SCIPincludeObjDialog(), SCIPincludeObjDisp(), SCIPincludeObjEventhdlr(), SCIPincludeObjHeur(), SCIPincludeObjNodesel(), SCIPincludeObjPresol(), SCIPincludeObjPricer(), SCIPincludeObjProp(), SCIPincludeObjReader(), SCIPincludeObjRelax(), SCIPincludeObjSepa(), SCIPincludePresol(), SCIPincludePresolBasic(), SCIPincludePresolBoundshift(), SCIPincludePresolComponents(), SCIPincludePresolConvertinttobin(), SCIPincludePresolDomcol(), SCIPincludePresolDualinfer(), SCIPincludePresolGateextraction(), SCIPincludePresolImplics(), SCIPincludePresolInttobinary(), SCIPincludePresolTrivial(), SCIPincludePricer(), SCIPincludePricerBasic(), SCIPincludeProp(), SCIPincludePropBasic(), SCIPincludePropDualfix(), SCIPincludePropGenvbounds(), SCIPincludePropObbt(), SCIPincludePropProbing(), SCIPincludePropPseudoobj(), SCIPincludePropRedcost(), SCIPincludePropRootredcost(), SCIPincludePropVbounds(), SCIPincludeQuadconsUpgrade(), SCIPincludeReader(), SCIPincludeReaderBasic(), SCIPincludeReaderBnd(), SCIPincludeReaderCcg(), SCIPincludeReaderCip(), SCIPincludeReaderCnf(), SCIPincludeReaderFix(), SCIPincludeReaderFzn(), SCIPincludeReaderGms(), SCIPincludeReaderLp(), SCIPincludeReaderMps(), SCIPincludeReaderOpb(), SCIPincludeReaderOsil(), SCIPincludeReaderPbm(), SCIPincludeReaderPip(), SCIPincludeReaderPpm(), SCIPincludeReaderRlp(), SCIPincludeReaderSol(), SCIPincludeReaderWbo(), SCIPincludeReaderZpl(), SCIPincludeRelax(), SCIPincludeRelaxBasic(), SCIPincludeSepa(), SCIPincludeSepaBasic(), SCIPincludeSepaCGMIP(), SCIPincludeSepaClique(), SCIPincludeSepaClosecuts(), SCIPincludeSepaCmir(), SCIPincludeSepaFlowcover(), SCIPincludeSepaGomory(), SCIPincludeSepaImpliedbounds(), SCIPincludeSepaIntobj(), SCIPincludeSepaMcf(), SCIPincludeSepaOddcycle(), SCIPincludeSepaRapidlearning(), SCIPincludeSepaStrongcg(), SCIPincludeSepaZerohalf(), SCIPincRealarrayVal(), SCIPincSolVal(), SCIPinferBinvarCons(), SCIPinferBinvarProp(), SCIPinferVarLbCons(), SCIPinferVarLbProp(), SCIPinferVarUbCons(), SCIPinferVarUbProp(), SCIPinitConflictAnalysis(), SCIPinitConssLP(), SCIPinitlpCons(), SCIPinitVarBranchStats(), SCIPintarrayCopy(), SCIPintarraySetVal(), SCIPinterruptSolve(), SCIPlinkCurrentSol(), SCIPlinkLPSol(), SCIPlinkNLPSol(), SCIPlinkPseudoSol(), SCIPlinkRelaxSol(), SCIPlockVarCons(), SCIPlpAddCol(), SCIPlpAddRow(), SCIPlpCalcMIR(), SCIPlpCalcStrongCG(), SCIPlpCleanupAll(), SCIPlpCleanupNew(), SCIPlpClear(), SCIPlpComputeRelIntPoint(), SCIPlpCreate(), SCIPlpEndDive(), SCIPlpEndStrongbranch(), SCIPlpFlush(), SCIPlpFree(), SCIPlpFreeNorms(), SCIPlpFreeState(), SCIPlpGetBase(), SCIPlpGetBasisInd(), SCIPlpGetBInvACol(), SCIPlpGetBInvARow(), SCIPlpGetBInvCol(), SCIPlpGetBInvRow(), SCIPlpGetDualfarkas(), SCIPlpGetIterations(), SCIPlpGetNorms(), SCIPlpGetPrimalRay(), SCIPlpGetProvedLowerbound(), SCIPlpGetSol(), SCIPlpGetState(), SCIPlpGetUnboundedSol(), SCIPlpiAddCols(), SCIPlpiAddRows(), SCIPlpiChgBounds(), SCIPlpiChgCoef(), SCIPlpiChgObj(), SCIPlpiChgSides(), SCIPlpiClear(), SCIPlpiCreate(), SCIPlpiDelCols(), SCIPlpiDelColset(), SCIPlpiDelRows(), SCIPlpiDelRowset(), SCIPlpiGetBase(), SCIPlpiGetBasisInd(), SCIPlpiGetBInvACol(), SCIPlpiGetBInvARow(), SCIPlpiGetBInvCol(), SCIPlpiGetBInvRow(), SCIPlpiGetBounds(), SCIPlpiGetCoef(), SCIPlpiGetCols(), SCIPlpiGetIntpar(), SCIPlpiGetObj(), SCIPlpiGetPrimalRay(), SCIPlpiGetRealpar(), SCIPlpiGetRows(), SCIPlpiGetSides(), SCIPlpiGetSol(), SCIPlpiGetState(), SCIPlpiHasDualRay(), SCIPlpiLoadColLP(), SCIPlpiScaleCol(), SCIPlpiScaleRow(), SCIPlpiSetBase(), SCIPlpiSetIntpar(), SCIPlpiSetRealpar(), SCIPlpiSetState(), SCIPlpIsInfeasibilityProved(), SCIPlpiSolveBarrier(), SCIPlpiSolveDual(), SCIPlpiSolvePrimal(), SCIPlpiStrongbranch(), SCIPlpiStrongbranchesFrac(), SCIPlpiStrongbranchesInt(), SCIPlpiStrongbranchFrac(), SCIPlpiStrongbranchInt(), SCIPlpMarkFlushed(), SCIPlpRecordOldRowSideDive(), SCIPlpRemoveAllObsoletes(), SCIPlpRemoveNewObsoletes(), SCIPlpRemoveRedundantRows(), SCIPlpReset(), SCIPlpSetNorms(), SCIPlpSetState(), SCIPlpShrinkRows(), SCIPlpSolveAndEval(), SCIPlpStartDive(), SCIPlpStartStrongbranch(), SCIPlpSumRows(), SCIPlpUpdateAddVar(), SCIPlpUpdateDelVar(), SCIPlpUpdateVarColumn(), SCIPlpUpdateVarLb(), SCIPlpUpdateVarLoose(), SCIPlpUpdateVarObj(), SCIPlpUpdateVarUb(), SCIPlpWrite(), SCIPmakeIndicatorFeasible(), SCIPmakeIndicatorsFeasible(), SCIPmakeRowIntegral(), SCIPmarkConsPropagate(), SCIPmarkDoNotMultaggrVar(), SCIPmarkRelaxSolInvalid(), SCIPmarkRelaxSolValid(), SCIPmessagehdlrRelease(), SCIPmultiaggregateVar(), SCIPnewProbingNode(), SCIPnlpAddNlRow(), SCIPnlpAddNlRows(), SCIPnlpAddVar(), SCIPnlpAddVars(), SCIPnlpChgVarBoundsDive(), SCIPnlpChgVarObjDive(), SCIPnlpChgVarsBoundsDive(), SCIPnlpCreate(), SCIPnlpDelNlRow(), SCIPnlpDelVar(), SCIPnlpEndDive(), SCIPnlpFlush(), SCIPnlpFree(), SCIPnlpGetFracVars(), SCIPnlpGetIntPar(), SCIPnlpGetPseudoObjval(), SCIPnlpGetRealPar(), SCIPnlpGetStatistics(), SCIPnlpGetStringPar(), SCIPnlpiAddConstraints(), SCIPnlpiAddVars(), SCIPnlpiChgConsSides(), SCIPnlpiChgExprtree(), SCIPnlpiChgLinearCoefs(), SCIPnlpiChgNonlinCoef(), SCIPnlpiChgObjConstant(), SCIPnlpiChgQuadCoefs(), SCIPnlpiChgVarBounds(), SCIPnlpiCopy(), SCIPnlpiDelConsSet(), SCIPnlpiDelVarSet(), SCIPnlpiFree(), SCIPnlpiGetIntPar(), SCIPnlpiGetRealPar(), SCIPnlpiGetSolution(), SCIPnlpiGetStatistics(), SCIPnlpiGetStringPar(), SCIPnlpiGetWarmstartMemo(), SCIPnlpiGetWarmstartSize(), SCIPnlpInclude(), SCIPnlpiOracleAddConstraints(), SCIPnlpiOracleAddVars(), SCIPnlpiOracleChgExprtree(), SCIPnlpiOracleChgLinearCoefs(), SCIPnlpiOracleChgQuadCoefs(), SCIPnlpiOracleCreate(), SCIPnlpiOracleDelVarSet(), SCIPnlpiOracleEvalHessianLag(), SCIPnlpiOracleEvalJacobian(), SCIPnlpiOracleFree(), SCIPnlpiOracleGetHessianLagSparsity(), SCIPnlpiOracleGetJacobianSparsity(), SCIPnlpiOraclePrintProblem(), SCIPnlpiOraclePrintProblemGams(), SCIPnlpiOracleSetObjective(), SCIPnlpiSetInitialGuess(), SCIPnlpiSetIntPar(), SCIPnlpiSetMessageHdlr(), SCIPnlpiSetObjective(), SCIPnlpiSetRealPar(), SCIPnlpiSetStringPar(), SCIPnlpiSetWarmstartMemo(), SCIPnlpiSolve(), SCIPnlpRemoveRedundantNlRows(), SCIPnlpReset(), SCIPnlpSetInitialGuess(), SCIPnlpSetIntPar(), SCIPnlpSetRealPar(), SCIPnlpSetStringPar(), SCIPnlpSolve(), SCIPnlpSolveDive(), SCIPnlpStartDive(), SCIPnlpWrite(), SCIPnlrowAddLinearCoef(), SCIPnlrowAddQuadElement(), SCIPnlrowAddQuadVar(), SCIPnlrowChgConstant(), SCIPnlrowChgExprtree(), SCIPnlrowChgExprtreeParam(), SCIPnlrowChgExprtreeParams(), SCIPnlrowChgLhs(), SCIPnlrowChgLinearCoef(), SCIPnlrowChgQuadElem(), SCIPnlrowChgRhs(), SCIPnlrowCreate(), SCIPnlrowCreateCopy(), SCIPnlrowCreateFromRow(), SCIPnlrowDelLinearCoef(), SCIPnlrowDelQuadElement(), SCIPnlrowFree(), SCIPnlrowGetActivityBounds(), SCIPnlrowGetNLPActivity(), SCIPnlrowGetNLPFeasibility(), SCIPnlrowGetPseudoActivity(), SCIPnlrowGetPseudoFeasibility(), SCIPnlrowGetSolActivity(), SCIPnlrowGetSolFeasibility(), SCIPnlrowIsRedundant(), SCIPnlrowPrint(), SCIPnlrowRecalcNLPActivity(), SCIPnlrowRecalcPseudoActivity(), SCIPnlrowRelease(), SCIPnlrowRemoveFixedVars(), SCIPnodeAddBoundchg(), SCIPnodeAddBoundinfer(), SCIPnodeAddCons(), SCIPnodeAddHolechg(), SCIPnodeAddHoleinfer(), SCIPnodeCreateChild(), SCIPnodeDelCons(), SCIPnodeFocus(), SCIPnodeFree(), SCIPnodepqBound(), SCIPnodepqClear(), SCIPnodepqFree(), SCIPnodepqInsert(), SCIPnodepqSetNodesel(), SCIPnodePropagateImplics(), SCIPnodeselCopyInclude(), SCIPnodeselCreate(), SCIPnodeselExit(), SCIPnodeselExitsol(), SCIPnodeselFree(), SCIPnodeselInit(), SCIPnodeselInitsol(), SCIPnodeselSelect(), SCIPnodeUpdateLowerboundLP(), SCIPnormalizeCumulativeCondition(), SCIPparamsetAddBool(), SCIPparamsetAddChar(), SCIPparamsetAddInt(), SCIPparamsetAddLongint(), SCIPparamsetAddReal(), SCIPparamsetAddString(), SCIPparamSetBool(), SCIPparamSetChar(), SCIPparamsetCopyParams(), SCIPparamsetCreate(), SCIPparamSetInt(), SCIPparamSetLongint(), SCIPparamsetRead(), SCIPparamSetReal(), SCIPparamsetSet(), SCIPparamsetSetBool(), SCIPparamsetSetChar(), SCIPparamsetSetEmphasis(), SCIPparamsetSetHeuristics(), SCIPparamsetSetInt(), SCIPparamsetSetLongint(), SCIPparamsetSetPresolving(), SCIPparamsetSetReal(), SCIPparamsetSetSeparating(), SCIPparamsetSetString(), SCIPparamsetSetToDefault(), SCIPparamsetSetToDefaults(), SCIPparamsetSetToSubscipsOff(), SCIPparamSetString(), SCIPparamSetToDefault(), SCIPparamsetWrite(), SCIPparseCons(), SCIPparseVar(), SCIPparseVarName(), SCIPparseVarsLinearsum(), SCIPparseVarsList(), SCIPparseVarsPolynomial(), SCIPpermuteProb(), SCIPpqueueCreate(), SCIPpqueueInsert(), SCIPpresolCons(), SCIPpresolCopyInclude(), SCIPpresolCreate(), SCIPpresolExec(), SCIPpresolExit(), SCIPpresolExitpre(), SCIPpresolFree(), SCIPpresolInit(), SCIPpresolInitpre(), SCIPpresolve(), SCIPpresolveCumulativeCondition(), SCIPpriceLoop(), SCIPpricerCopyInclude(), SCIPpricerCreate(), SCIPpricerExec(), SCIPpricerExit(), SCIPpricerExitsol(), SCIPpricerFarkas(), SCIPpricerFree(), SCIPpricerInit(), SCIPpricerInitsol(), SCIPpricerRedcost(), SCIPpricestoreAddBdviolvar(), SCIPpricestoreAddProbVars(), SCIPpricestoreAddVar(), SCIPpricestoreApplyVars(), SCIPpricestoreCreate(), SCIPpricestoreResetBounds(), SCIPprimalAddCurrentSol(), SCIPprimalAddOrigSol(), SCIPprimalAddOrigSolFree(), SCIPprimalAddSol(), SCIPprimalAddSolFree(), SCIPprimalFree(), SCIPprimalHeuristics(), SCIPprimalRetransformSolutions(), SCIPprimalSetCutoffbound(), SCIPprimalSetUpperbound(), SCIPprimalSolCreated(), SCIPprimalTransformSol(), SCIPprimalTryCurrentSol(), SCIPprimalTrySol(), SCIPprimalTrySolFree(), SCIPprimalUpdateObjlimit(), SCIPprimalUpdateObjoffset(), SCIPprintBestSol(), SCIPprintBestTransSol(), SCIPprintBranchingStatistics(), SCIPprintCons(), SCIPprintDisplayLine(), SCIPprintDualSol(), SCIPprintLPSolutionQuality(), SCIPprintNlRow(), SCIPprintNodeRootPath(), SCIPprintOrigProblem(), SCIPprintRay(), SCIPprintRow(), SCIPprintSol(), SCIPprintStage(), SCIPprintStatistics(), SCIPprintStatus(), SCIPprintTransProblem(), SCIPprintTransSol(), SCIPprintVar(), SCIPprobAddCons(), SCIPprobAddConsName(), SCIPprobAddVar(), SCIPprobAddVarName(), SCIPprobCheckObjIntegral(), SCIPprobChgVarType(), SCIPprobCopy(), SCIPprobCreate(), SCIPprobDelCons(), SCIPprobDelVar(), SCIPprobExitSolve(), SCIPprobFree(), SCIPprobInitSolve(), SCIPprobPerformVarDeletions(), SCIPprobRemoveConsName(), SCIPprobRemoveVarName(), SCIPprobResetBounds(), SCIPprobScaleObj(), SCIPprobTransform(), SCIPprobVarChangedStatus(), SCIPprocessShellArguments(), SCIPprofileDeleteCore(), SCIPprofileInsertCore(), SCIPpropagateCutoffboundVar(), SCIPpropagateDomains(), SCIPpropagateProbing(), SCIPpropagateProbingImplications(), SCIPpropCons(), SCIPpropCopyInclude(), SCIPpropCreate(), SCIPpropCumulativeCondition(), SCIPpropExec(), SCIPpropExit(), SCIPpropExitpre(), SCIPpropExitsol(), SCIPpropFree(), SCIPpropInit(), SCIPpropInitpre(), SCIPpropInitsol(), SCIPpropPresol(), SCIPpropResolvePropagation(), SCIPptrarrayCopy(), SCIPptrarraySetVal(), SCIPqueueCreate(), SCIPqueueInsert(), SCIPreaderCopyInclude(), SCIPreaderCreate(), SCIPreaderFree(), SCIPreaderRead(), SCIPreaderWrite(), SCIPreadLp(), SCIPreadOpb(), SCIPreadParams(), SCIPreadPip(), SCIPreadProb(), SCIPreadSol(), SCIPrealarrayCopy(), SCIPrealarraySetVal(), SCIPreallocBufferSize(), SCIPrecalcNlRowActivity(), SCIPrecalcNlRowNLPActivity(), SCIPrecalcNlRowPseudoActivity(), SCIPrecalcRowActivity(), SCIPrecalcRowLPActivity(), SCIPrecalcRowPseudoActivity(), SCIPrelaxCopyInclude(), SCIPrelaxCreate(), SCIPrelaxExec(), SCIPrelaxExit(), SCIPrelaxExitsol(), SCIPrelaxFree(), SCIPrelaxInit(), SCIPrelaxInitsol(), SCIPreleaseCons(), SCIPreleaseDialog(), SCIPreleaseNlRow(), SCIPreleaseRow(), SCIPreleaseVar(), SCIPremoveInefficaciousCuts(), SCIPrepropagateNode(), SCIPresetConsAge(), SCIPresetParam(), SCIPresetParams(), SCIPresolveSolHeurSubNlp(), SCIPrespropCons(), SCIPrespropCumulativeCondition(), SCIPrestartSolve(), SCIPretransformSol(), SCIProundSol(), SCIProwAddCoef(), SCIProwAddConstant(), SCIProwCatchEvent(), SCIProwChgCoef(), SCIProwChgConstant(), SCIProwChgLhs(), SCIProwChgRhs(), SCIProwCreate(), SCIProwDelCoef(), SCIProwDropEvent(), SCIProwFree(), SCIProwIncCoef(), SCIProwMakeIntegral(), SCIProwRelease(), SCIPrunShell(), SCIPscaleVarBranchFactor(), SCIPselectBranchVarPscost(), SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), SCIPsepaCopyInclude(), SCIPsepaCreate(), SCIPsepaExecLP(), SCIPsepaExecSol(), SCIPsepaExit(), SCIPsepaExitsol(), SCIPsepaFree(), SCIPsepaInit(), SCIPsepaInitsol(), SCIPsepalpCons(), SCIPseparateCutpool(), SCIPseparateKnapsackCuts(), SCIPseparateRelaxedKnapsack(), SCIPseparateSol(), SCIPseparateSolCutpool(), SCIPseparationRound(), SCIPsepasolCons(), SCIPsepastoreAddCut(), SCIPsepastoreApplyCuts(), SCIPsepastoreClearCuts(), SCIPsepastoreRemoveInefficaciousCuts(), SCIPsetAddBoolParam(), SCIPsetAddCharParam(), SCIPsetAddIntParam(), SCIPsetAddLongintParam(), SCIPsetAddRealParam(), SCIPsetAddStringParam(), SCIPsetBasePointClosecuts(), SCIPsetBinaryVarIndicator(), SCIPsetBoolarrayVal(), SCIPsetBoolParam(), SCIPsetBranchruleCopy(), SCIPsetBranchruleExecExt(), SCIPsetBranchruleExecLp(), SCIPsetBranchruleExecPs(), SCIPsetBranchruleExit(), SCIPsetBranchruleExitsol(), SCIPsetBranchruleFree(), SCIPsetBranchruleInit(), SCIPsetBranchruleInitsol(), SCIPsetCharParam(), SCIPsetChgBoolParam(), SCIPsetChgCharParam(), SCIPsetChgIntParam(), SCIPsetChgLongintParam(), SCIPsetChgParamFixed(), SCIPsetChgRealParam(), SCIPsetChgStringParam(), SCIPsetConflicthdlrCopy(), SCIPsetConflicthdlrExit(), SCIPsetConflicthdlrExitsol(), SCIPsetConflicthdlrFree(), SCIPsetConflicthdlrInit(), SCIPsetConflicthdlrInitsol(), SCIPsetConsChecked(), SCIPsetConsDynamic(), SCIPsetConsEnforced(), SCIPsetConshdlrActive(), SCIPsetConshdlrCopy(), SCIPsetConshdlrDeactive(), SCIPsetConshdlrDelete(), SCIPsetConshdlrDelvars(), SCIPsetConshdlrDisable(), SCIPsetConshdlrEnable(), SCIPsetConshdlrExit(), SCIPsetConshdlrExitpre(), SCIPsetConshdlrExitsol(), SCIPsetConshdlrFree(), SCIPsetConshdlrGetNVars(), SCIPsetConshdlrGetVars(), SCIPsetConshdlrInit(), SCIPsetConshdlrInitlp(), SCIPsetConshdlrInitpre(), SCIPsetConshdlrInitsol(), SCIPsetConshdlrParse(), SCIPsetConshdlrPresol(), SCIPsetConshdlrPrint(), SCIPsetConshdlrProp(), SCIPsetConshdlrResprop(), SCIPsetConshdlrSepa(), SCIPsetConshdlrTrans(), SCIPsetConsInitial(), SCIPsetConsLocal(), SCIPsetConsModifiable(), SCIPsetConsPropagated(), SCIPsetConsRemovable(), SCIPsetConsSeparated(), SCIPsetConsStickingAtNode(), SCIPsetCopyParams(), SCIPsetCopyPlugins(), SCIPsetCreate(), SCIPsetEmphasis(), SCIPsetEventhdlrCopy(), SCIPsetEventhdlrDelete(), SCIPsetEventhdlrExit(), SCIPsetEventhdlrExitsol(), SCIPsetEventhdlrFree(), SCIPsetEventhdlrInit(), SCIPsetEventhdlrInitsol(), SCIPsetExitPlugins(), SCIPsetExitprePlugins(), SCIPsetExitsolPlugins(), SCIPsetExprtreesNonlinear(), SCIPsetFree(), SCIPsetGetBoolParam(), SCIPsetGetCharParam(), SCIPsetGetIntParam(), SCIPsetGetLongintParam(), SCIPsetGetRealParam(), SCIPsetGetStringParam(), SCIPsetHeurCopy(), SCIPsetHeurExit(), SCIPsetHeurExitsol(), SCIPsetHeurFree(), SCIPsetHeurInit(), SCIPsetHeurInitsol(), SCIPsetHeuristics(), SCIPsetInitPlugins(), SCIPsetInitprePlugins(), SCIPsetInitsolPlugins(), SCIPsetIntarrayVal(), SCIPsetIntParam(), SCIPsetLinearConsIndicator(), SCIPsetLongintParam(), SCIPsetMessagehdlr(), SCIPsetNLPInitialGuess(), SCIPsetNLPInitialGuessSol(), SCIPsetNLPIntPar(), SCIPsetNLPRealPar(), SCIPsetNLPStringPar(), SCIPsetNlRowExprtree(), SCIPsetNlRowExprtreeParam(), SCIPsetNlRowExprtreeParams(), SCIPsetNodeselCopy(), SCIPsetNodeselExit(), SCIPsetNodeselExitsol(), SCIPsetNodeselFree(), SCIPsetNodeselInit(), SCIPsetNodeselInitsol(), SCIPsetObjIntegral(), SCIPsetObjlimit(), SCIPsetObjsense(), SCIPsetParam(), SCIPsetParamsCountsols(), SCIPsetPresolCopy(), SCIPsetPresolExit(), SCIPsetPresolExitpre(), SCIPsetPresolFree(), SCIPsetPresolInit(), SCIPsetPresolInitpre(), SCIPsetPresolving(), SCIPsetPricerCopy(), SCIPsetPricerExit(), SCIPsetPricerExitsol(), SCIPsetPricerFree(), SCIPsetPricerInit(), SCIPsetPricerInitsol(), SCIPsetProbCopy(), SCIPsetProbData(), SCIPsetProbDelorig(), SCIPsetProbDeltrans(), SCIPsetProbExitsol(), SCIPsetProbInitsol(), SCIPsetProbName(), SCIPsetProbTrans(), SCIPsetPropCopy(), SCIPsetPropExit(), SCIPsetPropExitpre(), SCIPsetPropExitsol(), SCIPsetPropFree(), SCIPsetPropInit(), SCIPsetPropInitpre(), SCIPsetPropInitsol(), SCIPsetPropPresol(), SCIPsetPropResprop(), SCIPsetPtrarrayVal(), SCIPsetReaderCopy(), SCIPsetReaderFree(), SCIPsetReaderRead(), SCIPsetReaderWrite(), SCIPsetReadParams(), SCIPsetRealarrayVal(), SCIPsetRealParam(), SCIPsetRelaxCopy(), SCIPsetRelaxExit(), SCIPsetRelaxExitsol(), SCIPsetRelaxFree(), SCIPsetRelaxInit(), SCIPsetRelaxInitsol(), SCIPsetRelaxSolVal(), SCIPsetRelaxSolVals(), SCIPsetRelaxSolValsSol(), SCIPsetResetParam(), SCIPsetResetParams(), SCIPsetRootDialog(), SCIPsetSepaCopy(), SCIPsetSepaExit(), SCIPsetSepaExitsol(), SCIPsetSepaFree(), SCIPsetSepaInit(), SCIPsetSepaInitsol(), SCIPsetSeparating(), SCIPsetSetBoolParam(), SCIPsetSetCharParam(), SCIPsetSetDefaultBoolParam(), SCIPsetSetDefaultIntParam(), SCIPsetSetEmphasis(), SCIPsetSetFeastol(), SCIPsetSetHeuristics(), SCIPsetSetIntParam(), SCIPsetSetLongintParam(), SCIPsetSetParam(), SCIPsetSetPresolving(), SCIPsetSetRealParam(), SCIPsetSetSeparating(), SCIPsetSetStringParam(), SCIPsetSetSubscipsOff(), SCIPsetSolVal(), SCIPsetSolVals(), SCIPsetStringParam(), SCIPsetSubscipsOff(), SCIPsetWriteParams(), SCIPshrinkDisjunctiveVarSet(), SCIPsolAdjustImplicitSolVals(), SCIPsolCheck(), SCIPsolClear(), SCIPsolCopy(), SCIPsolCreate(), SCIPsolCreateCurrentSol(), SCIPsolCreateLPSol(), SCIPsolCreateNLPSol(), SCIPsolCreateOriginal(), SCIPsolCreatePseudoSol(), SCIPsolCreateRelaxSol(), SCIPsolCreateUnknown(), SCIPsolFree(), SCIPsolIncVal(), SCIPsolLinkCurrentSol(), SCIPsolLinkLPSol(), SCIPsolLinkNLPSol(), SCIPsolLinkPseudoSol(), SCIPsolLinkRelaxSol(), SCIPsolRetransform(), SCIPsolRound(), SCIPsolSetUnknown(), SCIPsolSetVal(), SCIPsolTransform(), SCIPsolUnlink(), SCIPsolve(), SCIPsolveCIP(), SCIPsolveCumulative(), SCIPsolveDiveLP(), SCIPsolveDiveNLP(), SCIPsolveKnapsackApproximately(), SCIPsolveKnapsackApproximatelyLT(), SCIPsolveKnapsackExactly(), SCIPsolveNLP(), SCIPsolveProbingLP(), SCIPsolveProbingLPWithPricing(), SCIPsortQuadVarTermsQuadratic(), SCIPsplitCumulativeCondition(), SCIPstartDive(), SCIPstartDiveNLP(), SCIPstartInteraction(), SCIPstartProbing(), SCIPstartSolvingTime(), SCIPstartStrongbranch(), SCIPstatCreate(), SCIPstopSolvingTime(), SCIPsumLPRows(), SCIPtightenVarLb(), SCIPtightenVarLbGlobal(), SCIPtightenVarUb(), SCIPtightenVarUbGlobal(), SCIPtransformCons(), SCIPtransformConss(), SCIPtransformMinUC(), SCIPtransformProb(), SCIPtransformVar(), SCIPtransformVars(), SCIPtreeBacktrackProbing(), SCIPtreeBranchVar(), SCIPtreeBranchVarHole(), SCIPtreeBranchVarNary(), SCIPtreeClear(), SCIPtreeCreate(), SCIPtreeCreatePresolvingRoot(), SCIPtreeCreateProbingNode(), SCIPtreeCreateRoot(), SCIPtreeCutoff(), SCIPtreeEndProbing(), SCIPtreeFree(), SCIPtreeFreePresolvingRoot(), SCIPtreeLoadLP(), SCIPtreeLoadLPState(), SCIPtreeLoadProbingLPState(), SCIPtreeMarkProbingNodeHasLP(), SCIPtreeSetNodesel(), SCIPtreeStartProbing(), SCIPtryCurrentSol(), SCIPtrySol(), SCIPtrySolFree(), SCIPunfixParam(), SCIPunlinkSol(), SCIPunlockVarCons(), SCIPunmarkConsPropagate(), SCIPupdateConsFlags(), SCIPupdateCutoffbound(), SCIPupdateLocalDualbound(), SCIPupdateLocalLowerbound(), SCIPupdateNodeDualbound(), SCIPupdateNodeLowerbound(), SCIPupdateStartpointHeurSubNlp(), SCIPupdateVarBranchPriority(), SCIPupdateVarPseudocost(), SCIPupgradeConsLinear(), SCIPvaluehistoryFind(), SCIPvarAddClique(), SCIPvarAddHoleGlobal(), SCIPvarAddHoleLocal(), SCIPvarAddHoleOriginal(), SCIPvarAddImplic(), SCIPvarAddLocks(), SCIPvarAddObj(), SCIPvarAddToRow(), SCIPvarAddVlb(), SCIPvarAddVub(), SCIPvarAggregate(), SCIPvarCatchEvent(), SCIPvarChgBranchDirection(), SCIPvarChgBranchFactor(), SCIPvarChgBranchPriority(), SCIPvarChgLbDive(), SCIPvarChgLbGlobal(), SCIPvarChgLbLocal(), SCIPvarChgLbOriginal(), SCIPvarChgName(), SCIPvarChgObj(), SCIPvarChgObjDive(), SCIPvarChgUbDive(), SCIPvarChgUbGlobal(), SCIPvarChgUbLocal(), SCIPvarChgUbOriginal(), SCIPvarColumn(), SCIPvarCopy(), SCIPvarCreateOriginal(), SCIPvarCreateTransformed(), SCIPvarDelClique(), SCIPvarDelCliqueFromList(), SCIPvarDropEvent(), SCIPvarFix(), SCIPvarFixBinary(), SCIPvarFlattenAggregationGraph(), SCIPvarGetActiveRepresentatives(), SCIPvarGetAggregatedObj(), SCIPvarGetProbvarBound(), SCIPvarGetProbvarHole(), SCIPvarGetTransformed(), SCIPvarIncCutoffSum(), SCIPvarIncInferenceSum(), SCIPvarIncNActiveConflicts(), SCIPvarIncNBranchings(), SCIPvarIncVSIDS(), SCIPvarLoose(), SCIPvarMultiaggregate(), SCIPvarNegate(), SCIPvarParseOriginal(), SCIPvarParseTransformed(), SCIPvarRelease(), SCIPvarRemove(), SCIPvarResetBounds(), SCIPvarsAddClique(), SCIPvarScaleVSIDS(), SCIPvarSetNLPSol(), SCIPvarSetRelaxSol(), SCIPvarsGetActiveVars(), SCIPvarsGetProbvarBinary(), SCIPvarTransform(), SCIPvarTryAggregateVars(), SCIPvarUpdatePseudocost(), SCIPvbcInit(), SCIPvbcNewChild(), SCIPvboundsAdd(), SCIPvboundsDel(), SCIPvisualizeConsCumulative(), SCIPwriteCcg(), SCIPwriteCliqueGraph(), SCIPwriteGms(), SCIPwriteImplicationConflictGraph(), SCIPwriteLp(), SCIPwriteLP(), SCIPwriteMIP(), SCIPwriteNLP(), SCIPwriteOrigProblem(), SCIPwriteParams(), SCIPwritePbm(), SCIPwritePip(), SCIPwritePpm(), SCIPwriteTransProblem(), SCIPwriteVarName(), SCIPwriteVarsLinearsum(), SCIPwriteVarsList(), SCIPwriteVarsPolynomial(), selectBranchVar(), selectSolsRandomized(), sepadataCreate(), separateByAuxGraph(), separateByEnumerationHeuristics(), separateByGaussHeuristics(), separateBySolvingAuxIP(), separateCons(), separateConsBinaryRepresentation(), separateConsOnIntegerVariables(), separateCoverCutsCons(), separateCuts(), separateGLS(), separateHeur(), separateIISRounding(), separateIndicators(), separatePoint(), separateSCIs(), separateSequLiftedExtendedWeightInequality(), separateSequLiftedMinimalCoverInequality(), separateSupLiftedMinimalCoverInequality(), separationRoundLP(), separationRoundResolveLP(), separationRoundSol(), sepastoreAddCut(), sepastoreApplyBdchg(), sepastoreApplyCut(), sepastoreApplyLb(), sepastoreApplyUb(), sepastoreDelCut(), sepastoreUpdateOrthogonalities(), sequentialUpAndDownLifting(), sequentialUpAndDownLiftingGUB(), setAltLPObj(), setAltLPObjZero(), setColumnMajorFormat(), setObjective(), setParameterValues(), setSetppcType(), setUpEvents(), setupProbingSCIP(), setupSCIPparamsFP2(), setupSCIPparamsStage3(), setupSubproblem(), shortenConss(), simplifyInequalities(), singletonColumnStuffing(), solClearArrays(), solCutIsViolated(), solIncArrayVal(), solSetArrayVal(), solUnlinkVar(), solveCoveringProblem(), solveDerivativeEquation(), solveIndependentCons(), solveLp(), solveNode(), solveNodeInitialLP(), solveNodeLP(), solveNodeRelax(), solveProbingLP(), solveSubMIP(), solveSubNLP(), solveSubproblem(), solveSubscip(), SolveWSimplex(), sortGenVBounds(), sortVariables(), splitOffLinearPart(), splitProblem(), stableSort(), stableSortBinvars(), storeMod2Data(), storeSolution(), strengthenConss(), strengthVarbaounds(), subrootConstructLP(), subrootFree(), subrootReleaseLPIState(), subscipSetParams(), superadditiveUpLifting(), switchWatchedvars(), tcliquegraphAddCliqueVars(), tcliquegraphAddImplics(), tcliquegraphAddImplicsCliqueVars(), tcliquegraphAddImplicsVars(), tcliquegraphAddNode(), tcliquegraphConstructCliqueTable(), tcliquegraphCreate(), tcliquegraphEnsureAdjnodesSize(), tcliquegraphEnsureCliqueidsSize(), tcliquegraphFree(), tightenBoundDive(), tightenBounds(), tightenCapacity(), tightenCoefs(), tightenedIntvar(), tightenLbTTEF(), tightenSides(), tightenUbTTEF(), tightenVarBounds(), tightenVarBoundsEasy(), tightenVarLb(), tightenVarUb(), tightenWeights(), tightenWeightsLift(), topologicalSort(), transformMIRRow(), transformSols(), transformToOrig(), treeAddChild(), treeAddPendingBdchg(), treeApplyPendingBdchgs(), treeBacktrackProbing(), treeCreateProbingNode(), treeNodesToQueue(), treeSwitchPath(), tryAggregateIntVars(), tryDelta(), tryUpgrading(), tryUpgradingLogicor(), tryUpgradingSetppc(), tryUpgradingXor(), turnoffNodeSelector(), undoBdchgsDualfarkas(), undoBdchgsDualsol(), undoBdchgsProof(), unfixAltLPVariable(), unfixAltLPVariables(), unlockLinearVariable(), unlockQuadraticVariable(), unlockRounding(), unlockRoundingAndCons(), unlockVariableSOS1(), unlockVariableSOS2(), updateAndConss(), updateBestCandidate(), updateBounds(), updateConsanddataUses(), updateCutoffbound(), updateEstimate(), updateFirstRow(), updateFirstRowGlobal(), updateLazyBounds(), updatePrimalRay(), updatePseudocost(), updateSlacks(), updateStatistics(), updateTimelimit(), upgradeCons(), upgradeConss(), upgradeIndicatorSuperindicator(), upgradeLinearSuperindicator(), upgradeSuperindicator(), varAddImplic(), varAddLbchginfo(), varAddParent(), varAddTransitiveBinaryClosureImplic(), varAddTransitiveImplic(), varAddUbchginfo(), varAddVbound(), varCreate(), varEventGholeAdded(), varEventGlbChanged(), varEventGubChanged(), varEventImplAdded(), varEventLbChanged(), varEventObjChanged(), varEventUbChanged(), varEventVarFixed(), varEventVarUnlocked(), varFree(), varFreeParents(), varMayRoundDown(), varMayRoundUp(), varParse(), varProcessAddHoleGlobal(), varProcessAddHoleLocal(), varProcessChgBranchDirection(), varProcessChgBranchFactor(), varProcessChgBranchPriority(), varProcessChgLbGlobal(), varProcessChgLbLocal(), varProcessChgUbGlobal(), varProcessChgUbLocal(), varRemoveImplicsVbs(), varUpdateAggregationBounds(), vboundsEnsureSize(), writeExpandedSolutions(), writeFzn(), writeOpb(), writeOpbConstraints(), writeOpbRelevantAnds(), writeProblem(), ZerohalfAuxGraphCreate(), ZerohalfAuxGraphFree(), ZerohalfAuxGraphNodeCreate(), ZerohalfAuxIPDataCreate(), ZerohalfAuxIPDataFree(), ZerohalfCutDataCreate(), ZerohalfCutDataFree(), ZerohalfLPDataCreate(), ZerohalfMod2DataCreate(), and ZerohalfSubLPDataCreate().

#define SCIP_ALLOC (   x)
Value:
do \
{ \
if( NULL == (x) ) \
{ \
SCIPerrorMessage("No memory in function call\n"); \
return SCIP_NOMEMORY; \
} \
} \
while( FALSE )

Definition at line 269 of file def.h.

Referenced by allocDiveChgSideArrays(), btnodeCreateEmpty(), cliqueCreateWithData(), cliqueEnsureSize(), cliquelistCreate(), cliquelistEnsureSize(), cliquetableEnsureSize(), colEnsureSize(), colStoreSolVals(), conflictEnsureConflictsetsMem(), conflictEnsureTmpbdchginfosMem(), conflictsetCopy(), conflictsetCreate(), conflictsetEnsureBdchginfosMem(), conshdlrEnsureCheckconssMem(), conshdlrEnsureConssMem(), conshdlrEnsureEnfoconssMem(), conshdlrEnsureInitconssMem(), conshdlrEnsurePropconssMem(), conshdlrEnsureSepaconssMem(), conshdlrEnsureUpdateconssMem(), conssetchgCreate(), conssetchgEnsureAddedconssSize(), conssetchgEnsureDisabledconssSize(), createConstraint(), cutCreate(), cutpoolEnsureCutsMem(), domchgCreate(), domchgEnsureBoundchgsSize(), domchgEnsureHolechgsSize(), domchgMakeDynamic(), ensureBoundchgMem(), ensureChgcolsSize(), ensureChgrowsSize(), ensureColMem(), ensureColsSize(), ensureConsLinSize(), ensureConsQuadSize(), ensureConssSize(), ensureCstatMem(), ensureExistingsolsSize(), ensureExterncandsSize(), ensureIntArraySize(), ensureLazycolsSize(), ensureLpcandsSize(), ensureLpicolsSize(), ensureLpirowsSize(), ensureProfileSize(), ensurePropagationStorage(), ensurePseudocandsSize(), ensureRowMem(), ensureRowsSize(), ensureRstatMem(), ensureSidechgMem(), ensureSolsSize(), ensureStateMem(), ensureSubdialogMem(), ensureSuccessorsSize(), ensureTabMem(), ensureValMem(), ensureVarsSize(), evalFunctionGradient(), evalFunctionValue(), eventfilterEnsureMem(), eventqueueEnsureEventsMem(), exprCreate(), exprgraphAddExpr(), exprgraphCreateNode(), exprgraphFindParentByOperator(), exprgraphNodeAddChildren(), exprgraphNodeCreateExpr(), exprgraphNodeEval(), exprgraphNodeRemovePolynomialDuplicateChildren(), exprgraphNodeRemovePolynomialNullChildren(), exprgraphNodeSimplify(), exprgraphNodeUpdateBounds(), exprsimplifyAddChildren(), exprsimplifyFlattenPolynomials(), exprsimplifyRemoveDuplicatePolynomialChildren(), exprsimplifyRemovePolynomialNullChildren(), exprsimplifyRemovePolynomialUnusedChildren(), exprsimplifySeparateLinearFromPolynomial(), exprUnconvertPolynomial(), forkCreate(), getASlice(), getEndptrs(), getIndicesFromDense(), getIndicesRange(), hashmaplistAppend(), hashtablelistAppend(), hashtableResize(), hessLagAddExprtree(), hessLagSparsitySetNzFlagForExprtree(), holelistCreate(), implicsCreate(), implicsEnsureSize(), lpiGetBInvVec(), lpistateCreate(), lpiStrongbranch(), lpiStrongbranches(), lpStoreSolVals(), monomialdataEnsureFactorsSize(), nlpCalcFracVars(), nlpEnsureNlRowsSolverSize(), nlpEnsureVarsSolverSize(), nodeCreate(), nodepqResize(), paramCreate(), paramCreateChar(), paramCreateString(), paramsetAdd(), polynomialdataCopy(), polynomialdataCreate(), pqueueResize(), pricestoreEnsureBdviolvarsMem(), pricestoreEnsureVarsMem(), printFunction(), probEnsureConssMem(), probEnsureDeletedvarsMem(), probEnsureFixedvarsMem(), probEnsureVarsMem(), probingnodeCreate(), pseudoforkCreate(), quadraticdataCreate(), queueResize(), reallocDiveChgSideArrays(), rowStoreSolVals(), SCIP_DECL_EXPRCOPYDATA(), SCIPactivityCreate(), SCIPbdchginfoCreate(), SCIPboolarrayCopy(), SCIPboolarrayCreate(), SCIPboolarrayExtend(), SCIPbranchcandCreate(), SCIPbranchruleCreate(), SCIPbtCreate(), SCIPbufferAllocMem(), SCIPbufferCreate(), SCIPbufferReallocMem(), SCIPcliquetableAdd(), SCIPcliquetableCreate(), SCIPclockCreate(), SCIPcolCreate(), SCIPconflictCreate(), SCIPconflicthdlrCreate(), SCIPconsChgName(), SCIPconsCreate(), SCIPconshdlrCreate(), SCIPcreate(), SCIPcreateNlpSolverIpopt(), SCIPcutpoolCreate(), SCIPdialogCreate(), SCIPdialoghdlrAddInputLine(), SCIPdialoghdlrCreate(), SCIPdigraphComputeUndirectedComponents(), SCIPdigraphCopy(), SCIPdigraphCreate(), SCIPdigraphResize(), SCIPdigraphSetSizes(), SCIPdigraphTopoSortComponents(), SCIPdispAutoActivate(), SCIPdispCreate(), SCIPdomchgMakeStatic(), SCIPensureBlockMemoryArray_call(), SCIPeventCreateGholeAdded(), SCIPeventCreateGholeRemoved(), SCIPeventCreateGlbChanged(), SCIPeventCreateGubChanged(), SCIPeventCreateImplAdded(), SCIPeventCreateLbChanged(), SCIPeventCreateLholeAdded(), SCIPeventCreateLholeRemoved(), SCIPeventCreateObjChanged(), SCIPeventCreateRowAddedLP(), SCIPeventCreateRowAddedSepa(), SCIPeventCreateRowCoefChanged(), SCIPeventCreateRowConstChanged(), SCIPeventCreateRowDeletedLP(), SCIPeventCreateRowDeletedSepa(), SCIPeventCreateRowSideChanged(), SCIPeventCreateUbChanged(), SCIPeventCreateVarAdded(), SCIPeventCreateVarDeleted(), SCIPeventCreateVarFixed(), SCIPeventCreateVarUnlocked(), SCIPeventfilterCreate(), SCIPeventhdlrCreate(), SCIPeventqueueCreate(), SCIPexprAddToLinear(), SCIPexprCheckCurvature(), SCIPexprCopyDeep(), SCIPexprCreate(), SCIPexprCreateLinear(), SCIPexprCreateMonomial(), SCIPexprCreatePolynomial(), SCIPexprCreateQuadratic(), SCIPexprEval(), SCIPexprEvalInt(), SCIPexprgraphAddExprtreeSum(), SCIPexprgraphAddNode(), SCIPexprgraphCreate(), SCIPexprgraphCreateNodeLinear(), SCIPexprgraphGetSeparableTrees(), SCIPexprgraphGetSumTrees(), SCIPexprgraphGetTree(), SCIPexprgraphNodeSplitOffLinear(), SCIPexprgraphReplaceVarByLinearSum(), SCIPexprgraphSimplify(), SCIPexprgraphUpdateNodeBoundsCurvature(), SCIPexprintCreate(), SCIPexprtreeAddVars(), SCIPexprtreeCopy(), SCIPexprtreeCreate(), SCIPexprtreePrintWithNames(), SCIPexprtreeRemoveFixedVars(), SCIPexprtreeSetParams(), SCIPexprtreeSetVars(), SCIPexprtreeSimplify(), SCIPhashmapCreate(), SCIPhashtableCreate(), SCIPheurCreate(), SCIPhistoryCreate(), SCIPincludeDialogDefaultFix(), SCIPincludeDialogDefaultSet(), SCIPintarrayCopy(), SCIPintarrayCreate(), SCIPintarrayExtend(), SCIPinterruptCreate(), SCIPlpCreate(), SCIPlpiAddCols(), SCIPlpiAddRows(), SCIPlpiChgBounds(), SCIPlpiChgSides(), SCIPlpiCreate(), SCIPlpiDelCols(), SCIPlpiDelColset(), SCIPlpiDelRows(), SCIPlpiDelRowset(), SCIPlpiGetBasisInd(), SCIPlpiGetBInvACol(), SCIPlpiGetBInvARow(), SCIPlpiGetBInvCol(), SCIPlpiGetBInvRow(), SCIPlpiGetCoef(), SCIPlpiGetColNames(), SCIPlpiGetCols(), SCIPlpiGetNorms(), SCIPlpiGetPrimalRay(), SCIPlpiGetRowNames(), SCIPlpiGetRows(), SCIPlpiGetSol(), SCIPlpiGetState(), SCIPlpiLoadColLP(), SCIPlpiScaleCol(), SCIPlpiScaleRow(), SCIPlpiSetBase(), SCIPlpiStrongbranchFrac(), SCIPmemCreate(), SCIPmessagehdlrCreate(), SCIPnlpCreate(), SCIPnlpEnsureNlRowsSize(), SCIPnlpEnsureVarsSize(), SCIPnlpiCreate(), SCIPnlpiOracleAddVars(), SCIPnlpiOracleChgExprtree(), SCIPnlpiOracleChgLinearCoefs(), SCIPnlpiOracleChgQuadCoefs(), SCIPnlpiOracleCreate(), SCIPnlpiOracleEvalJacobian(), SCIPnlpiOracleGetHessianLagSparsity(), SCIPnlpiOracleGetJacobianSparsity(), SCIPnlpiOracleSetProblemName(), SCIPnlpSetInitialGuess(), SCIPnlrowCreate(), SCIPnlrowEnsureLinearSize(), SCIPnlrowEnsureQuadElementsSize(), SCIPnlrowEnsureQuadVarsSize(), SCIPnodepqCreate(), SCIPnodeselCreate(), SCIPparamsetCreate(), SCIPparamSetString(), SCIPpqueueCreate(), SCIPpresolCreate(), SCIPpricerCreate(), SCIPpricestoreCreate(), SCIPprimalCreate(), SCIPprobCreate(), SCIPprobSetName(), SCIPprofileCreate(), SCIPpropCreate(), SCIPptrarrayCopy(), SCIPptrarrayCreate(), SCIPptrarrayExtend(), SCIPqueueCreate(), SCIPreaderCreate(), SCIPreaderWrite(), SCIPrealarrayCopy(), SCIPrealarrayCreate(), SCIPrealarrayExtend(), SCIPrelaxationCreate(), SCIPrelaxCreate(), SCIProwCreate(), SCIProwEnsureSize(), SCIPsepaCreate(), SCIPsepastoreCreate(), SCIPsetCreate(), SCIPsetIncludeBranchrule(), SCIPsetIncludeConflicthdlr(), SCIPsetIncludeConshdlr(), SCIPsetIncludeDialog(), SCIPsetIncludeDisp(), SCIPsetIncludeEventhdlr(), SCIPsetIncludeExternalCode(), SCIPsetIncludeHeur(), SCIPsetIncludeNlpi(), SCIPsetIncludeNodesel(), SCIPsetIncludePresol(), SCIPsetIncludePricer(), SCIPsetIncludeProp(), SCIPsetIncludeReader(), SCIPsetIncludeRelax(), SCIPsetIncludeSepa(), SCIPshrinkDisjunctiveVarSet(), SCIPsolCopy(), SCIPsolCreate(), SCIPsolCreateOriginal(), SCIPsolCreateUnknown(), SCIPsparseSolCreate(), SCIPstatCreate(), SCIPtransformMinUC(), SCIPtreeCreate(), SCIPvaluehistoryCreate(), SCIPvaluehistoryFind(), SCIPvarFlattenAggregationGraph(), SCIPvarMultiaggregate(), SCIPvbcCreate(), sepastoreEnsureCutsMem(), treeEnsureChildrenMem(), treeEnsurePathMem(), treeEnsurePendingbdchgsMem(), varCreate(), varEnsureLbchginfosSize(), varEnsureParentvarsSize(), varEnsureUbchginfosSize(), varSetName(), vboundsCreate(), and vboundsEnsureSize().

#define SCIP_DEPRECATED

Definition at line 288 of file def.h.