Home
last modified time | relevance | path

Searched refs:rowvars (Results 1 – 4 of 4) sorted by relevance

/dports/math/chuffed/chuffed-e04bedd/chuffed/examples/
H A Dnon.cpp57 vec<IntVar*> rowvars; in Nonogram() local
61 rowvars.push( x[j*c + kk] ); in Nonogram()
71 nonogram(rowvars, row); in Nonogram()
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dreader_mps.c4418 SCIP_VAR** rowvars; in SCIPwriteMps() local
4432 SCIP_CALL( SCIPallocBufferArray(scip, &rowvars, nrowvars + 1) ); in SCIPwriteMps()
4441 rowvars[0] = resultant; in SCIPwriteMps()
4480 rowvars[1] = operands[v]; in SCIPwriteMps()
4488 … SCIP_CALL( getLinearCoeffs(scip, rowname, rowvars, rowvals, 2, transformed, matrix, &rhss[k]) ); in SCIPwriteMps()
4496 rowvars[v] = operands[v]; in SCIPwriteMps()
4500 rowvars[nrowvars] = resultant; in SCIPwriteMps()
4535 …SCIP_CALL( getLinearCoeffs(scip, rowname, rowvars, rowvals, nrowvars + 1, transformed, matrix, &rh… in SCIPwriteMps()
4549 …SCIP_CALL( getLinearCoeffs(scip, consname, rowvars, rowvals, nrowvars + 1, transformed, matrix, &r… in SCIPwriteMps()
4553 SCIPfreeBufferArray(scip, &rowvars); in SCIPwriteMps()
H A Dcons_indicator.c2382 SCIP_VAR** rowvars; in addAltLPRow() local
2411 SCIP_CALL( SCIPallocBufferArray(scip, &rowvars, nrowcols) ); in addAltLPRow()
2414 rowvars[j] = SCIPcolGetVar(rowcols[j]); in addAltLPRow()
2415 assert( rowvars[j] != NULL ); in addAltLPRow()
2422 …SCIP_CALL( addAltLPColumn(scip, conshdlr, conshdlrdata, NULL, nrowcols, rowvars, rowvals, rowrhs, … in addAltLPRow()
2427 …SCIP_CALL( addAltLPColumn(scip, conshdlr, conshdlrdata, NULL, nrowcols, rowvars, rowvals, rowrhs, … in addAltLPRow()
2433 …SCIP_CALL( addAltLPColumn(scip, conshdlr, conshdlrdata, NULL, nrowcols, rowvars, rowvals, rowlhs, … in addAltLPRow()
2436 SCIPfreeBufferArray(scip, &rowvars); in addAltLPRow()
H A Dnlp.c2209 SCIP_VAR** rowvars; in SCIPnlrowCreateFromRow() local
2212 SCIP_CALL( SCIPsetAllocBufferArray(set, &rowvars, rownz) ); in SCIPnlrowCreateFromRow()
2216 rowvars[i] = SCIPcolGetVar(SCIProwGetCols(row)[i]); in SCIPnlrowCreateFromRow()
2217 assert(rowvars[i] != NULL); in SCIPnlrowCreateFromRow()
2222 rownz, rowvars, SCIProwGetVals(row), in SCIPnlrowCreateFromRow()
2228 SCIPsetFreeBufferArray(set, &rowvars); in SCIPnlrowCreateFromRow()