Home
last modified time | relevance | path

Searched refs:sourcescip (Results 1 – 25 of 59) sorted by relevance

123

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dscip_copy.c131 assert(sourcescip != NULL); in copyCuts()
289 assert(sourcescip != NULL); in SCIPcopyPlugins()
359 assert(sourcescip != NULL); in SCIPcopyBenders()
406 assert(sourcescip != NULL); in copyProb()
524 assert(sourcescip != NULL); in SCIPcopyProb()
576 assert(sourcescip != NULL); in SCIPcopyOrigProb()
716 assert(sourcescip != NULL); in SCIPgetVarCopy()
960 assert(sourcescip != NULL); in copyVars()
1177 assert(sourcescip != NULL); in SCIPcopyVars()
2644 SCIPclockStart(sourcescip->stat->copyclock, sourcescip->set); in doCopy()
[all …]
H A Dscip_copy.h92 SCIP* sourcescip, /**< source SCIP data structure */
150 SCIP* sourcescip, /**< source SCIP data structure */
200 SCIP* sourcescip, /**< source SCIP data structure */
242 SCIP* sourcescip, /**< source SCIP data structure */
336 SCIP* sourcescip, /**< source SCIP data structure */
385 SCIP* sourcescip, /**< source SCIP data structure */
431 SCIP* sourcescip, /**< source SCIP data structure */
451 SCIP* sourcescip, /**< source SCIP data structure */
542 SCIP* sourcescip, /**< source SCIP data structure */
609 SCIP* sourcescip, /**< source SCIP data structure */
[all …]
H A Dheuristics.c931 assert(sourcescip != NULL); in SCIPcopyLargeNeighborhoodSearch()
954 SCIP_CALL( SCIPcopyParamSettings(sourcescip, subscip) ); in SCIPcopyLargeNeighborhoodSearch()
957 SCIP_CALL( createRows(sourcescip, subscip, varmap) ); in SCIPcopyLargeNeighborhoodSearch()
1013 bestsol = SCIPgetBestSol(sourcescip); in SCIPaddTrustregionNeighborhoodConstraint()
1019 SCIP_CALL( SCIPallocBufferArray(sourcescip, &consvars, nbinvars + 1) ); in SCIPaddTrustregionNeighborhoodConstraint()
1020 SCIP_CALL( SCIPallocBufferArray(sourcescip, &consvals, nbinvars + 1) ); in SCIPaddTrustregionNeighborhoodConstraint()
1034 solval = SCIPgetSolVal(sourcescip, bestsol, vars[i]); in SCIPaddTrustregionNeighborhoodConstraint()
1035 assert( SCIPisFeasIntegral(sourcescip,solval) ); in SCIPaddTrustregionNeighborhoodConstraint()
1038 if( SCIPisFeasEQ(sourcescip, solval, 1.0) ) in SCIPaddTrustregionNeighborhoodConstraint()
1070 SCIPfreeBufferArray(sourcescip, &consvals); in SCIPaddTrustregionNeighborhoodConstraint()
[all …]
H A Dheur_alns.c916 sourcescip = eventdata->sourcescip; in transferSolution()
920 assert(sourcescip != NULL); in transferSolution()
921 assert(sourcescip != subscip); in transferSolution()
928 oldbestsol = SCIPgetBestSol(sourcescip); in transferSolution()
940 if( SCIPgetSolTransObj(sourcescip, newsol) < SCIPgetCutoffbound(sourcescip) ) in transferSolution()
1868 assert(sourcescip != NULL); in neighborhoodChangeSubscip()
2528 eventdata.sourcescip = scip; in SCIP_DECL_HEUREXEC()
3146 assert(sourcescip != NULL); in addLocalBranchingConstraint()
3150 vars = SCIPgetVars(sourcescip); in addLocalBranchingConstraint()
3171 if( SCIPisEQ(sourcescip, SCIPgetSolVal(sourcescip, referencesol, vars[i]), 0.0) ) in addLocalBranchingConstraint()
[all …]
H A Dheuristics.h87 SCIP* sourcescip, /**< source SCIP data structure */
H A Dtype_prob.h140 #define SCIP_DECL_PROBCOPY(x) SCIP_RETCODE x (SCIP* scip, SCIP* sourcescip, SCIP_PROBDATA* sourceda…
H A Dtype_var.h181 #define SCIP_DECL_VARCOPY(x) SCIP_RETCODE x (SCIP* scip, SCIP* sourcescip, SCIP_VAR* sourcevar, SCI…
H A Dstruct_benders.h102 …SCIP* sourcescip; /**< the source scip from when the Benders' was copied */ member
H A Dcons_superindicator.c1637 assert(sourcescip != NULL); in SCIP_DECL_CONSCOPY()
1685 assert(!SCIPisTransformed(sourcescip) || SCIPconsIsTransformed(sourceslackcons)); in SCIP_DECL_CONSCOPY()
1686 if( SCIPisTransformed(sourcescip) && !SCIPconsIsTransformed(sourceslackcons) ) in SCIP_DECL_CONSCOPY()
1690 SCIP_CALL( SCIPgetTransformedCons(sourcescip, sourceslackcons, &transslackcons) ); in SCIP_DECL_CONSCOPY()
1692 SCIP_CALL( SCIPreleaseCons(sourcescip, &sourceconsdata->slackcons) ); in SCIP_DECL_CONSCOPY()
1693 SCIP_CALL( SCIPcaptureCons(sourcescip, transslackcons) ); in SCIP_DECL_CONSCOPY()
1699 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourceslackcons, &targetslackcons, conshdlrslack, var… in SCIP_DECL_CONSCOPY()
1714 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourcebinvar, &targetbinvar, varmap, consmap, global, … in SCIP_DECL_CONSCOPY()
H A Dcons_linear.h189 SCIP* sourcescip, /**< source SCIP data structure */
H A Dbenders.c950 targetbenders->sourcescip = sourceset->scip; in SCIPbendersCopyInclude()
2091 assert(sourcescip != NULL); in createAndAddTransferredCut()
2097 sourcebenders = SCIPfindBenders(sourcescip, SCIPbendersGetName(benders)); in createAndAddTransferredCut()
2100 consbenders = SCIPfindConshdlr(sourcescip, "benders"); in createAndAddTransferredCut()
2115 SCIP_CALL( SCIPsetConsRemovable(sourcescip, transfercons, TRUE) ); in createAndAddTransferredCut()
2160 SCIP_CALL( SCIPaddCons(sourcescip, transfercons) ); in createAndAddTransferredCut()
2164 SCIP_CALL( SCIPaddPoolCut(sourcescip, transfercut) ); in createAndAddTransferredCut()
2174 SCIP_CALL( SCIPreleaseCons(sourcescip, &transfercons) ); in createAndAddTransferredCut()
2178 SCIP_CALL( SCIPreleaseRow(sourcescip, &transfercut) ); in createAndAddTransferredCut()
2206 sourcebenders = SCIPfindBenders(sourcescip, SCIPbendersGetName(benders)); in transferBendersCuts()
[all …]
H A Dcons_pseudoboolean.c3781 assert(sourcescip != NULL); in copyConsPseudoboolean()
3810 conshdlrlinear = SCIPfindConshdlr(sourcescip, "linear"); in copyConsPseudoboolean()
3814 conshdlrlinear = SCIPfindConshdlr(sourcescip, "logicor"); in copyConsPseudoboolean()
3822 conshdlrlinear = SCIPfindConshdlr(sourcescip, "setppc"); in copyConsPseudoboolean()
3877 conshdlrand = SCIPfindConshdlr(sourcescip, "and"); in copyConsPseudoboolean()
3910 SCIPfreeBufferArray(sourcescip, &targetlincoefs); in copyConsPseudoboolean()
3911 SCIPfreeBufferArray(sourcescip, &targetlinvars); in copyConsPseudoboolean()
4015 if( !(*valid) && !SCIPisConsCompressionEnabled(sourcescip) ) in copyConsPseudoboolean()
4043 SCIPfreeBufferArrayNull(sourcescip, &targetandcoefs); in copyConsPseudoboolean()
4044 SCIPfreeBufferArrayNull(sourcescip, &targetandconss); in copyConsPseudoboolean()
[all …]
H A Dcons_cardinality.c2906 assert(sourcescip != NULL); in SCIP_DECL_CONSCOPY()
2908 assert(SCIPisTransformed(sourcescip)); in SCIP_DECL_CONSCOPY()
2937 SCIP_CALL( SCIPallocBufferArray(sourcescip, &targetvars, nvars) ); in SCIP_DECL_CONSCOPY()
2938 SCIP_CALL( SCIPallocBufferArray(sourcescip, &targetindvars, nvars) ); in SCIP_DECL_CONSCOPY()
2939 SCIP_CALL( SCIPduplicateBufferArray(sourcescip, &targetweights, sourceweights, nvars) ); in SCIP_DECL_CONSCOPY()
2947 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourcevars[v], &(targetvars[v]), varmap, consmap, glob… in SCIP_DECL_CONSCOPY()
2950 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourceindvars[v], &(targetindvars[v]), varmap, consmap… in SCIP_DECL_CONSCOPY()
2962 SCIPfreeBufferArray(sourcescip, &targetweights); in SCIP_DECL_CONSCOPY()
2963 SCIPfreeBufferArray(sourcescip, &targetindvars); in SCIP_DECL_CONSCOPY()
2964 SCIPfreeBufferArray(sourcescip, &targetvars); in SCIP_DECL_CONSCOPY()
H A Dcons_or.c1857 sourceresvar = SCIPgetResultantOr(sourcescip, sourcecons); in SCIP_DECL_CONSCOPY()
1858 sourcevars = SCIPgetVarsOr(sourcescip, sourcecons); in SCIP_DECL_CONSCOPY()
1859 nvars = SCIPgetNVarsOr(sourcescip, sourcecons); in SCIP_DECL_CONSCOPY()
1870 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourcevars[v], &vars[v], varmap, consmap, global, vali… in SCIP_DECL_CONSCOPY()
1877 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourceresvar, &resvar, varmap, consmap, global, valid)… in SCIP_DECL_CONSCOPY()
H A Dcons_sos2.c2057 assert( sourcescip != NULL ); in SCIP_DECL_CONSCOPY()
2081 … SCIP_CALL( SCIPduplicateBufferArray(sourcescip, &targetweights, sourceconsdata->weights, nvars) ); in SCIP_DECL_CONSCOPY()
2086 SCIP_CALL( SCIPallocBufferArray(sourcescip, &targetvars, nvars) ); in SCIP_DECL_CONSCOPY()
2090 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourcevars[v], &(targetvars[v]), varmap, consmap, glob… in SCIP_DECL_CONSCOPY()
2101 SCIPfreeBufferArray(sourcescip, &targetvars); in SCIP_DECL_CONSCOPY()
2102 SCIPfreeBufferArrayNull(sourcescip, &targetweights); in SCIP_DECL_CONSCOPY()
H A Dtype_cons.h800 …SCIP* sourcescip, SCIP_CONSHDLR* sourceconshdlr, SCIP_CONS* sourcecons, SCIP_HASHMAP* varmap, SCIP…
H A Dprob.h64 SCIP* sourcescip, /**< source SCIP data structure */
/dports/math/SCIP/scip-7.0.3/examples/TSP/src/
H A DProbDataTSP.cpp117 SCIP* sourcescip, /**< source SCIP main data structure */ in scip_copy() argument
129 sourceprobdatatsp = dynamic_cast<ProbDataTSP*>(SCIPgetObjProbData(sourcescip)); in scip_copy()
148 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourcegraph->edges[e].var, &(edgeforw->var), varmap, c… in scip_copy()
H A DProbDataTSP.h58 SCIP* sourcescip, /**< source SCIP main data structure */
/dports/math/SCIP/scip-7.0.3/src/objscip/
H A Dobjprobdata.h161 SCIP* sourcescip, /**< source SCIP main data structure */ in scip_copy() argument
H A Dobjvardata.h137 SCIP* sourcescip, /**< source SCIP main data structure */ in scip_copy() argument
H A Dobjvardata.cpp134 …SCIP_CALL( sourcedata->objvardata->scip_copy(scip, sourcescip, sourcevar, varmap, consmap, targetv… in SCIP_DECL_VARCOPY()
H A Dobjprobdata.cpp162 …SCIP_CALL( sourcedata->objprobdata->scip_copy(scip, sourcescip, varmap, consmap, &objprobdata, glo… in SCIP_DECL_PROBCOPY()
/dports/math/SCIP/scip-7.0.3/applications/STP/src/
H A Dprobdata_stp.c1294 …SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, sourcedata->offsetvar, &((*targetdata)->offsetvar), va… in SCIP_DECL_PROBCOPY()
1329 … SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->degcons[c], &((*targetdata)->degcons[c]), in SCIP_DECL_PROBCOPY()
1355 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->flowbcons[c], &((*targetdata)->flowbcons[… in SCIP_DECL_PROBCOPY()
1380 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->prizecyclecons[c], &((*targetdata)->prize… in SCIP_DECL_PROBCOPY()
1410 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->prizesymcons[c], &((*targetdata)->prizesy… in SCIP_DECL_PROBCOPY()
1432 … SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->prizecons, &((*targetdata)->prizecons), in SCIP_DECL_PROBCOPY()
1462 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->edgecons[c], &((*targetdata)->edgecons[c]… in SCIP_DECL_PROBCOPY()
1486 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->edgecons[c], &((*targetdata)->edgecons[c]… in SCIP_DECL_PROBCOPY()
1512 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->pathcons[c], &((*targetdata)->pathcons[c]… in SCIP_DECL_PROBCOPY()
1540 …SCIP_CALL( SCIPgetConsCopy(sourcescip, scip, sourcedata->pathcons[c], &((*targetdata)->pathcons[c]… in SCIP_DECL_PROBCOPY()
[all …]
/dports/math/SCIP/scip-7.0.3/applications/CycleClustering/src/
H A Dprobdata_cyc.c1160 assert(sourcescip != NULL); in SCIP_DECL_PROBCOPY()
1213 … SCIP_CALL( SCIPgetTransformedVar(sourcescip, sourcedata->edgevars[i][j][edgetype], &var) ); in SCIP_DECL_PROBCOPY()
1217 … SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, var, &((*targetdata)->edgevars[i][j][edgetype]), in SCIP_DECL_PROBCOPY()
1242 SCIP_CALL( SCIPgetTransformedVar(sourcescip, sourcedata->binvars[i][c], &var) ); in SCIP_DECL_PROBCOPY()
1246 SCIP_CALL( SCIPgetVarCopy(sourcescip, scip, var, &((*targetdata)->binvars[i][c]), in SCIP_DECL_PROBCOPY()

123