Home
last modified time | relevance | path

Searched refs:subvars (Results 1 – 25 of 223) sorted by relevance

123456789

/dports/textproc/mdocml/mandoc-1.14.5/regress/
H A Dregress.pl162 my %subvars = (MOPTS => '');
165 delete $subvars{SKIP_GROFF};
167 delete $subvars{TBL};
168 delete $subvars{EQN};
170 delete $subvars{MOPTS};
186 delete $subvars{UTF8_TARGETS};
193 delete $subvars{HTML_TARGETS};
207 delete $subvars{SKIP_ASCII};
212 delete $subvars{SKIP_TMAN};
219 if (keys %subvars) {
[all …]
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_lpface.c544 subscipdata->subvars = NULL; in subscipdataReset()
567 if( subscipdata->subvars != NULL ) in subscipdataFreeSubscip()
591 assert(subvars != NULL); in subscipdataCopySubscip()
595 assert(subscipdata->subvars == NULL); in subscipdataCopySubscip()
598 SCIP_CALL( SCIPduplicateBlockMemoryArray(scip, &subscipdata->subvars, subvars, nvars) ); in subscipdataCopySubscip()
789 if( subvars[i] != NULL ) in setupSubscipLpface()
830 assert( subvars != NULL ); in solveSubscipLpface()
1217 subvars = heurdata->subscipdata->subvars; in SCIP_DECL_HEUREXEC()
1272 SCIPfreeBufferArray(scip, &subvars); in SCIP_DECL_HEUREXEC()
1286 SCIPfreeBufferArray(scip, &subvars); in SCIP_DECL_HEUREXEC()
[all …]
H A Dheur_proximity.c237 assert(subvars != NULL); in createNewSol()
249 if( subvars[i] == NULL ) in createNewSol()
408 assert(heurdata->subvars != NULL); in deleteSubproblem()
419 heurdata->subvars = NULL; in deleteSubproblem()
514 heurdata->subvars = NULL; in SCIP_DECL_HEURINIT()
852 if( subvars[i] == NULL ) in SCIPapplyProximity()
892 assert(heurdata->subvars != NULL); in SCIPapplyProximity()
897 subvars = heurdata->subvars; in SCIPapplyProximity()
910 if( subvars[i] == NULL ) in SCIPapplyProximity()
914 assert(SCIPvarIsBinary(subvars[i])); in SCIPapplyProximity()
[all …]
H A Dsepa_rapidlearning.c168 SCIP_VAR** subvars; /* subproblem's variables */ in setupAndSolveSubscipRapidlearning() local
210 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolveSubscipRapidlearning()
226 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolveSubscipRapidlearning()
237 if( subvars[i] == NULL ) in setupAndSolveSubscipRapidlearning()
240 assert(SCIPvarGetType(subvars[i]) == SCIP_VARTYPE_IMPLINT); in setupAndSolveSubscipRapidlearning()
354 if( subvars[i] != NULL ) in setupAndSolveSubscipRapidlearning()
549 if( subvars[i] == NULL ) in setupAndSolveSubscipRapidlearning()
553 assert(SCIPisLE(scip, SCIPvarGetLbGlobal(subvars[i]), SCIPvarGetUbGlobal(subvars[i]))); in setupAndSolveSubscipRapidlearning()
623 if( subvars[i] == NULL ) in setupAndSolveSubscipRapidlearning()
632 upvsids = SCIPgetVarVSIDS(subscip, subvars[i], SCIP_BRANCHDIR_UPWARDS); in setupAndSolveSubscipRapidlearning()
[all …]
H A Dheur_zeroobj.c250 SCIP_VAR** subvars; /* subproblem's variables */ in setupAndSolveSubscip() local
274 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolveSubscip()
305 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolveSubscip()
306 if( subvars[i] == NULL ) in setupAndSolveSubscip()
309 SCIP_CALL( SCIPchgVarObj(subscip, subvars[i], 0.0) ); in setupAndSolveSubscip()
311 lb = SCIPvarGetLbGlobal(subvars[i]); in setupAndSolveSubscip()
312 ub = SCIPvarGetUbGlobal(subvars[i]); in setupAndSolveSubscip()
322 SCIP_CALL( SCIPchgVarUbGlobal(subscip, subvars[i], adjustedbound) ); in setupAndSolveSubscip()
328 SCIP_CALL( SCIPchgVarLbGlobal(subscip, subvars[i], adjustedbound) ); in setupAndSolveSubscip()
482 SCIP_CALL( SCIPtranslateSubSol(scip, subscip, subsols[i], heur, subvars, &newsol) ); in setupAndSolveSubscip()
[all …]
H A Dheur_dins.c343 if( subvars[i] == NULL ) in reboundIntegerVariables()
351 SCIP_CALL( SCIPchgVarLbGlobal(subscip, subvars[i], lb) ); in reboundIntegerVariables()
352 SCIP_CALL( SCIPchgVarUbGlobal(subscip, subvars[i], ub) ); in reboundIntegerVariables()
356 assert(SCIPisFeasEQ(scip, SCIPvarGetLbGlobal(subvars[i]), SCIPvarGetUbGlobal(subvars[i]))); in reboundIntegerVariables()
407 if( subvars[i] == NULL ) in addLocalBranchingConstraint()
410 assert(SCIPvarGetType(subvars[i]) == SCIP_VARTYPE_BINARY); in addLocalBranchingConstraint()
411 if( SCIPvarGetUbGlobal(subvars[i]) - SCIPvarGetLbGlobal(subvars[i]) < 0.5 ) in addLocalBranchingConstraint()
426 consvars[nconsvars++] = subvars[i]; in addLocalBranchingConstraint()
476 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in wrapperDins()
501 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in wrapperDins()
[all …]
H A Dheur_trustregion.c151 SCIP_VAR** subvars, /**< variables of the subproblem */ in addTrustRegionConstraints() argument
170 …SCIP_CALL( SCIPaddTrustregionNeighborhoodConstraint(scip, subscip, subvars, heurdata->violpenalty)… in addTrustRegionConstraints()
197 if( subvars[i] == NULL ) in addTrustRegionConstraints()
199 consvals[nconsvars] = SCIPvarGetObj(subvars[i]); in addTrustRegionConstraints()
200 consvars[nconsvars] = subvars[i]; in addTrustRegionConstraints()
319 SCIP_VAR** subvars; in setupAndSolveSubscipTrustregion() local
369 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolveSubscipTrustregion()
371 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolveSubscipTrustregion()
379 SCIP_CALL( addTrustRegionConstraints(scip, subscip, subvars, heurdata) ); in setupAndSolveSubscipTrustregion()
416 SCIP_CALL( SCIPtranslateSubSols(scip, subscip, heur, subvars, &success, NULL) ); in setupAndSolveSubscipTrustregion()
[all …]
H A Dheur_rens.c264 assert(subvars != NULL); in restrictToBinaryBounds()
278 if( subvars[i] == NULL ) in restrictToBinaryBounds()
294 SCIP_CALL( SCIPchgVarLbGlobal(subscip, subvars[i], lb) ); in restrictToBinaryBounds()
295 SCIP_CALL( SCIPchgVarUbGlobal(subscip, subvars[i], ub) ); in restrictToBinaryBounds()
300 assert(SCIPisFeasEQ(scip, SCIPvarGetLbGlobal(subvars[i]), SCIPfloor(scip, solval+0.5))); in restrictToBinaryBounds()
399 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolveSubscip()
401 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolveSubscip()
409 SCIP_CALL( restrictToBinaryBounds(scip, subscip, subvars, startsol) ); in setupAndSolveSubscip()
569 SCIP_CALL( SCIPmergeVariableStatistics(subscip, scip, subvars, vars, nvars) ); in setupAndSolveSubscip()
585 SCIP_CALL( SCIPtranslateSubSol(scip, subscip, subsols[i], heur, subvars, &newsol) ); in setupAndSolveSubscip()
[all …]
H A Dheur_completesol.c151 SCIP_VAR** subvars, /**< the variables of the subproblem */ in createSubproblem() argument
167 assert(subvars != NULL); in createSubproblem()
221 if( subvars[i] == NULL ) in createSubproblem()
249 SCIP_CALL( SCIPaddCoefLinear(subscip, objcons, subvars[i], SCIPvarGetObj(subvars[i])) ); in createSubproblem()
252 SCIP_CALL( SCIPchgVarObj(subscip, subvars[i], 0.0) ); in createSubproblem()
310 SCIP_CALL( SCIPaddCoefLinear(subscip, conspos, subvars[i], 1.0) ); in createSubproblem()
317 SCIP_CALL( SCIPaddCoefLinear(subscip, consneg, subvars[i], -1.0) ); in createSubproblem()
715 SCIP_VAR** subvars = NULL; in setupAndSolve() local
757 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolve()
761 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapf, vars[i]); in setupAndSolve()
[all …]
H A Dheur_localbranching.c126 SCIP_VAR** subvars /**< the subproblem variables */ in addLocalbranchingConstraintAndObjcutoff() argument
174 if( subvars[i] == NULL ) in addLocalbranchingConstraintAndObjcutoff()
190 consvars[nconsvars] = subvars[i]; in addLocalbranchingConstraintAndObjcutoff()
329 …SCIP_VAR** subvars; /* subproblem's variables … in setupAndSolveSubscipLocalbranching() local
379 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolveSubscipLocalbranching()
381 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolveSubscipLocalbranching()
390 SCIP_CALL( addLocalbranchingConstraintAndObjcutoff(scip, subscip, heur, subvars) ); in setupAndSolveSubscipLocalbranching()
426 SCIP_CALL( SCIPtranslateSubSols(scip, subscip, heur, subvars, &success, NULL) ); in setupAndSolveSubscipLocalbranching()
481 SCIPfreeBufferArray(scip, &subvars); in setupAndSolveSubscipLocalbranching()
H A Dheur_repair.c493 assert(subvars != NULL); in createNewSol()
496 SCIP_CALL( SCIPtranslateSubSol(scip, subscip, subsol, heur, subvars, &newsol) ); in createNewSol()
527 SCIP_VAR** subvars = NULL; in applyRepair() local
579 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in applyRepair()
668 SCIP_CALL( SCIPaddVar(subscip, subvars[i]) ); in applyRepair()
673 SCIP_CALL( SCIPsetSolVal(subscip, subsol, subvars[i], value) ); in applyRepair()
806 consvars[j] = subvars[pos]; in applyRepair()
879 if( fixed && (SCIP_VARTYPE_BINARY == SCIPvarGetType(subvars[permutation[i]]) in applyRepair()
880 || SCIP_VARTYPE_INTEGER == SCIPvarGetType(subvars[permutation[i]])) ) in applyRepair()
999 SCIP_CALL( SCIPreleaseVar(subscip, &subvars[i]) ); in applyRepair()
[all …]
H A Dcons_components.c238 component->subvars = NULL; in initComponent()
552 assert(subvars != NULL); in copyToSubscip()
799 subvar = subvars[i]; in solveAndEvalSubscip()
872 if( subvars[i] != NULL ) in solveAndEvalSubscip()
964 if( subvars[i] == NULL ) in solveAndEvalSubscip()
1031 SCIP_VAR** subvars = component->subvars; in solveComponent() local
1040 if( subvars[v] != NULL ) in solveComponent()
1266 subvar = component->subvars[v]; in solveComponent()
2334 SCIP_VAR** subvars; in SCIP_DECL_CONSPRESOL() local
2443 if( subvars[i] != NULL ) in SCIP_DECL_CONSPRESOL()
[all …]
H A Dheur_ofins.c139 SCIP_VAR** subvars; in setupAndSolve() local
214 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolve()
216 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolve()
289 SCIPfreeBufferArray(scip, &subvars); in setupAndSolve()
332 subvars[i] != NULL ? SCIPgetPrimalRayVal(subscip, subvars[i]) : 0.0) ); in setupAndSolve()
357 SCIP_CALL( SCIPtranslateSubSol(scip, subscip, subsols[i], heur, subvars, &newsol) ); in setupAndSolve()
373 SCIPfreeBufferArray(scip, &subvars); in setupAndSolve()
H A Dbenderscut_feas.c108 SCIP_VAR** subvars; in computeStandardLPFeasibilityCut() local
155 subvars = SCIPgetVars(subproblem); in computeStandardLPFeasibilityCut()
163 var = subvars[i]; in computeStandardLPFeasibilityCut()
230 SCIP_VAR** subvars; in computeStandardNLPFeasibilityCut() local
247 subvars = SCIPgetNLPVars(subproblem); in computeStandardNLPFeasibilityCut()
295 var = subvars[i]; in computeStandardNLPFeasibilityCut()
H A Dheur_alns.c917 subvars = eventdata->subvars; in transferSolution()
923 assert(subvars != NULL); in transferSolution()
2282 SCIP_VAR** subvars; in SCIP_DECL_HEUREXEC() local
2529 eventdata.subvars = subvars; in SCIP_DECL_HEUREXEC()
2729 if( subvars[i] == NULL ) in DECL_CHANGESUBSCIP()
2738 … if( newlb > SCIPvarGetLbGlobal(subvars[i]) + 0.5 || newub < SCIPvarGetUbGlobal(subvars[i]) - 0.5 ) in DECL_CHANGESUBSCIP()
3168 if( subvars[i] == NULL ) in addLocalBranchingConstraint()
3229 if( subvars[i] == NULL ) in DECL_CHANGESUBSCIP()
3243 if( subvars[i] == NULL ) in DECL_CHANGESUBSCIP()
3275 if( subvars[i] == NULL ) in DECL_CHANGESUBSCIP()
[all …]
H A Dheur_mutation.c197 …SCIP_VAR** subvars; /* subproblem's variables */ in setupAndSolveSubscipMutation() local
219 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in setupAndSolveSubscipMutation()
229 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolveSubscipMutation()
335 SCIP_CALL( SCIPmergeVariableStatistics(subscip, scip, subvars, vars, nvars) ); in setupAndSolveSubscipMutation()
345 SCIP_CALL( SCIPtranslateSubSols(scip, subscip, heur, subvars, &success, NULL) ); in setupAndSolveSubscipMutation()
350 SCIPfreeBufferArray(scip, &subvars); in setupAndSolveSubscipMutation()
H A Dheur_rins.c211 SCIP_VAR** subvars; /* variables of the subscip */ in wrapperRins() local
238 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in wrapperRins()
240 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in wrapperRins()
352 SCIP_CALL( SCIPmergeVariableStatistics(subscip, scip, subvars, vars, nvars) ); in wrapperRins()
359 SCIP_CALL( SCIPtranslateSubSols(scip, subscip, heur, subvars, &success, NULL) ); in wrapperRins()
364 SCIPfreeBufferArray(scip, &subvars); in wrapperRins()
H A Dheur_oneopt.c240 SCIP_VAR** subvars, /**< subproblem's variables */ in setupAndSolveSubscipOneopt() argument
269 subvars[i] = (SCIP_VAR*) SCIPhashmapGetImage(varmapfw, vars[i]); in setupAndSolveSubscipOneopt()
270 if( subvars[i] != NULL ) in setupAndSolveSubscipOneopt()
271 … SCIP_CALL( SCIPsetSolVal(subscip, startsol, subvars[i], SCIPgetSolVal(scip, bestsol, vars[i])) ); in setupAndSolveSubscipOneopt()
347 SCIP_CALL( SCIPtranslateSubSols(scip, subscip, heur, subvars, valid, NULL) ); in setupAndSolveSubscipOneopt()
508 … SCIP_VAR** subvars; /* subproblem's variables */ in SCIP_DECL_HEUREXEC() local
521 SCIP_CALL( SCIPallocBufferArray(scip, &subvars, nvars) ); in SCIP_DECL_HEUREXEC()
527 … retcode = setupAndSolveSubscipOneopt(scip, subscip, heur, vars, subvars, bestsol, result, &valid); in SCIP_DECL_HEUREXEC()
533 SCIPfreeBufferArray(scip, &subvars); in SCIP_DECL_HEUREXEC()
H A Dheur_subnlp.c152 SCIP_VAR** subvars; in createSubSCIP() local
364 SCIP_VAR** subvars; in freeSubSCIP() local
388 subvar = subvars[i]; in freeSubSCIP()
1588 SCIP_VAR** subvars; in forbidFixation() local
1634 subvar = subvars[i]; in forbidFixation()
1687 subvar = subvars[i]; in forbidFixation()
1798 SCIP_VAR** subvars; in SCIPapplyHeurSubNlp() local
1809 subvar = subvars[i]; in SCIPapplyHeurSubNlp()
1922 SCIP_VAR** subvars; in SCIPapplyHeurSubNlp() local
1995 SCIP_VAR** subvars; in SCIPresolveSolHeurSubNlp() local
[all …]
/dports/math/R-cran-forecast/forecast/R/
H A Dlm.R340 subvars <- NULL functionVar
342 subvars[j] <- pmatch(i, names(object$coefficients)[j])
344 subvars <- !is.na(subvars)
345 subvars <- names(object$coefficients)[subvars]
347 if (length(subvars) > 1) {
349 subvars <- substr(subvars, nchar(i) + 1, 999L)
350 fsub <- match(make.names(subvars), newvars, 0L)
355 if (all(fsub != 0) && length(fsub) == length(subvars)) {
357 colnames(imat) <- subvars
363 subvars <- i
[all …]
/dports/net-mgmt/observium/observium/includes/
H A Dtemplates.inc.php307 $subvars = array();
309 $subvars = explode('.', $var);
317 else if (count($subvars) > 1 && is_array($tags[$subvars[0]]))
320 $replace = $tags[$subvars[0]];
321 array_shift($subvars);
322 foreach ($subvars as $subvar)
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/gallium/drivers/d3d12/
H A Dd3d12_nir_passes.c1029 struct multistream_subvar_state subvars[4]; member
1075 first_channel += var_state->subvars[subvar].num_components; in split_multistream_varying_stores()
1101 struct multistream_subvar_state *subvars = var_state->subvars; in d3d12_split_multistream_varyings() local
1105 subvars[var_state->num_subvars].stream = stream; in d3d12_split_multistream_varyings()
1106 subvars[var_state->num_subvars].num_components = 1; in d3d12_split_multistream_varyings()
1109 subvars[var_state->num_subvars - 1].num_components++; in d3d12_split_multistream_varyings()
1113 var->data.stream = subvars[0].stream; in d3d12_split_multistream_varyings()
1119 subvars[0].var = var; in d3d12_split_multistream_varyings()
1129 new_var->data.stream = subvars[subvar].stream; in d3d12_split_multistream_varyings()
1131 location_frac += subvars[subvar].num_components; in d3d12_split_multistream_varyings()
[all …]
/dports/math/gap/gap-4.11.0/pkg/ToricVarieties-2019.12.05/gap/
H A DToricSubvarieties.gi114 # "for closed subvars",
123 # "for closed subvars",
132 # "for closed subvars",
/dports/mail/imapsync/imapsync-1d08afa/
H A D.gitignore7 debian/*.subvars
/dports/math/wcalc/wcalc-2.5/src/common/includes/
H A Doutput.h27 List subvars,

123456789