Home
last modified time | relevance | path

Searched refs:repvars (Results 1 – 7 of 7) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dcompr_largestrepr.c125 SCIP_VAR*** repvars; in constructCompression() local
227 SCIP_CALL( SCIPallocBufferArray(scip, &repvars, 2+comprdata->niters) ); in constructCompression()
398 … SCIP_CALL( SCIPallocBufferArray(scip, &repvars[nreps-2], nnon_zero_vars) ); /*lint !e866*/ in constructCompression()
405 repvars[nreps-2][k] = SCIPfindVar(scip, varnames[idx_non_zero[k]]); in constructCompression()
474 SCIP_CALL( SCIPaddReoptnodeBndchg(scip, comprdata->representatives[k], repvars[k][v], in constructCompression()
486 SCIPfreeBufferArray(scip, &repvars[k]); in constructCompression()
491 SCIPfreeBufferArray(scip, &repvars); in constructCompression()
H A Dcons_pseudoboolean.c5591 SCIP_VAR** repvars; in checkSolution() local
5670 var = ( negated[v] ? SCIPvarGetNegationVar(repvars[v]) : repvars[v]); in checkSolution()
5766 SCIP_VAR** repvars; in tryUpgradingXor() local
7129 SCIP_VAR** repvars; in findAggregation() local
7230 …assert(SCIPvarIsActive(repvars[v]) || (SCIPvarIsNegated(repvars[v]) && SCIPvarIsActive(SCIPvarGetN… in findAggregation()
7236 var2 = (negated[v] ? SCIPvarGetNegationVar(repvars[v]) : repvars[v]); in findAggregation()
7248 …assert(SCIPvarIsActive(repvars[v]) || (SCIPvarIsNegated(repvars[v]) && SCIPvarIsActive(SCIPvarGetN… in findAggregation()
7288 …assert(SCIPvarIsActive(repvars[v]) || (SCIPvarIsNegated(repvars[v]) && SCIPvarIsActive(SCIPvarGetN… in findAggregation()
7293 var1 = (negated[v-1] ? SCIPvarGetNegationVar(repvars[v-1]) : repvars[v-1]); in findAggregation()
7294 var2 = (negated[v] ? SCIPvarGetNegationVar(repvars[v]) : repvars[v]); in findAggregation()
[all …]
H A Dcons_logicor.c3339 SCIP_VAR** repvars; in removeConstraintsDueToNegCliques() local
3379 SCIP_CALL( SCIPallocBufferArray(scip, &repvars, size) ); in removeConstraintsDueToNegCliques()
3422 BMScopyMemoryArray(repvars, consdata->vars, consdata->nvars); in removeConstraintsDueToNegCliques()
3429 …(SCIPvarIsActive(repvars[v]) || (SCIPvarGetStatus(repvars[v]) == SCIP_VARSTATUS_NEGATED && SCIPvar… in removeConstraintsDueToNegCliques()
3430 negated[v] = SCIPvarIsNegated(repvars[v]); in removeConstraintsDueToNegCliques()
3439 var1 = repvars[v]; in removeConstraintsDueToNegCliques()
3470 var2 = repvars[w]; in removeConstraintsDueToNegCliques()
3581 SCIPfreeBufferArray(scip, &repvars); in removeConstraintsDueToNegCliques()
H A Dscip_var.h738 SCIP_VAR** repvars, /**< array to store the binary representatives */
H A Dscip_var.c1645 SCIP_VAR** repvars, /**< array to store the binary representatives */ in SCIPgetBinvarRepresentatives() argument
1653 assert(repvars != NULL || nvars == 0); in SCIPgetBinvarRepresentatives()
1662 BMScopyMemoryArray(repvars, vars, nvars); in SCIPgetBinvarRepresentatives()
1664 SCIP_CALL( SCIPvarsGetProbvarBinary(&repvars, &negated, nvars) ); in SCIPgetBinvarRepresentatives()
1670 SCIP_CALL( SCIPgetNegatedVar(scip, repvars[v], &(repvars[v])) ); in SCIPgetBinvarRepresentatives()
/dports/devel/R-cran-Hmisc/Hmisc/R/
H A DreShape.s8 repvars <- as.vector(outer(base,1:reps,paste,sep=''))
10 nonrep <- nam[nam %nin% repvars]
/dports/math/R-cran-survey/survey/R/
H A Dsurveyrep.R786 repvars<-apply(wts,2, v) functionVar
788 repvars<-drop(t(repvars))
789 attr(rval,"var")<-svrVar(repvars, scale, rscales,mse=design$mse, coef=rval)
792 attr(repvars,"scale")<-design$scale
793 attr(repvars,"rscales")<-design$rscales
794 attr(repvars,"mse")<-design$mse
795 rval<-list(variance=rval, replicates=repvars)