Home
last modified time | relevance | path

Searched refs:lazyconss (Results 1 – 6 of 6) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dscip_lp.h628 SCIP_Bool lazyconss /**< output removable rows as lazy constraints? */
H A Dlp.h1418 SCIP_Bool lazyconss /**< output removable rows as lazy constraints? */
H A Dscip_lp.c887 SCIP_Bool lazyconss /**< output removable rows as lazy constraints? */ in SCIPwriteMIP() argument
896 …obj, scip->origprob->objsense, scip->transprob->objscale, scip->transprob->objoffset, lazyconss) ); in SCIPwriteMIP()
H A Ddialog_default.c3303 SCIP_Bool lazyconss; in SCIP_DECL_DIALOGEXEC() local
3398 lazyconss = parseBoolValue(scip, valuestr, &error); in SCIP_DECL_DIALOGEXEC()
3410 (void) SCIPsnprintf(command, SCIP_MAXSTRLEN, "%s %s", command, lazyconss ? "TRUE" : "FALSE"); in SCIP_DECL_DIALOGEXEC()
3413 SCIP_CALL( SCIPwriteMIP(scip, filename, generic, offset, lazyconss) ); in SCIP_DECL_DIALOGEXEC()
H A Dlp.c16425 SCIP_Bool lazyconss /**< output removable rows as lazy constraints? */ in SCIPlpWriteMip() argument
16504 if ( lazyconss && SCIProwIsRemovable(lp->rows[i]) ) in SCIPlpWriteMip()
16586 if ( lazyconss ) in SCIPlpWriteMip()
/dports/math/SCIP/scip-7.0.3/
H A DCHANGELOG3040 …- Added parameter `lazyconss` to SCIPwriteMIP() to swith writing removable rows as lazy constraint…