Home
last modified time | relevance | path

Searched refs:lhss (Results 1 – 25 of 110) sorted by relevance

12345

/dports/math/SCIP/scip-7.0.3/src/lpi/
H A Dlpi_xprs.c431 assert(lhss != NULL); in convertSides()
437 assert(lhss[i] <= rhss[i]); in convertSides()
454 lpi->rhsarray[i] = lhss[i]; in convertSides()
480 assert(lhss != NULL); in reconvertBothSides()
488 lhss[i] = lpi->rhsarray[i]; in reconvertBothSides()
498 lhss[i] = lpi->rhsarray[i]; in reconvertBothSides()
512 assert(lhss[i] <= rhss[i]); in reconvertBothSides()
528 assert(lhss != NULL); in reconvertLhs()
536 lhss[i] = lpi->rhsarray[i]; in reconvertLhs()
1621 assert((lhss != NULL && rhss != NULL) || (lhss == NULL && rhss == NULL)); in SCIPlpiGetRows()
[all …]
H A Dlpi_qso.c1827 SCIP_Real* lhss, /**< array to store left hand side values, or NULL */ in SCIPlpiGetSides() argument
1841 assert(lhss != NULL); in SCIPlpiGetSides()
1860 lhss[i] = lrhs[i]; in SCIPlpiGetSides()
1864 lhss[i] = rhss[i] = lrhs[i]; in SCIPlpiGetSides()
1868 lhss[i] = -QS_MAXDOUBLE; in SCIPlpiGetSides()
1871 lhss[i] = lrhs[i]; in SCIPlpiGetSides()
H A Dlpi.h464 SCIP_Real* lhss, /**< array to store left hand side values, or NULL */
/dports/cad/verilator/verilator-4.216/src/
H A DV3Number_test.cpp32 void test(const string& lhss, const string& op, const string& rhss, const string& exps) { in test() argument
33 char* l1 = strdup(lhss.c_str()); in test()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dlp.pxi183 def addRows(self, entrieslist, lhss = None, rhss = None): argument
188 lhss -- left-hand side of the row (default 0.0)
202 c_lhss[i] = lhss[i] if lhss != None else 0.0
274 lhss = []
278 lhss.append(c_lhss[i])
284 return lhss, rhss
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dscip_nonlinear.c983 SCIP_Real* lhss; in SCIPcreateNlpiProb() local
1021 SCIP_CALL( SCIPallocBufferArray(scip, &lhss, nnlrows + 1) ); in SCIPcreateNlpiProb()
1076 lhss[nconss] = -SCIPinfinity(scip); in SCIPcreateNlpiProb()
1134lhss[nconss] = uselhs ? SCIPnlrowGetLhs(nlrow) - SCIPnlrowGetConstant(nlrow) : -SCIPinfinity(scip); in SCIPcreateNlpiProb()
1247 …SCIP_CALL( SCIPnlpiAddConstraints(nlpi, nlpiprob, nconss, lhss, rhss, nlininds, lininds, linvals, … in SCIPcreateNlpiProb()
1278 SCIPfreeBufferArray(scip, &lhss); in SCIPcreateNlpiProb()
1355 SCIP_Real* lhss; in SCIPaddNlpiProbRows() local
1373 SCIP_CALL( SCIPallocBufferArray(scip, &lhss, nrows) ); in SCIPaddNlpiProbRows()
1387 lhss[i] = SCIProwGetLhs(rows[i]) - SCIProwGetConstant(rows[i]); in SCIPaddNlpiProbRows()
1409 …SCIP_CALL( SCIPnlpiAddConstraints(nlpi, nlpiprob, nrows, lhss, rhss, nlininds, lininds, linvals, N… in SCIPaddNlpiProbRows()
[all …]
H A Dheur_mpec.c233 SCIP_Real* lhss; in addRegularScholtes() local
237 SCIP_CALL( SCIPallocBufferArray(scip, &lhss, nbinvars) ); in addRegularScholtes()
243 lhss[i] = -SCIPinfinity(scip); in addRegularScholtes()
248 …SCIP_CALL( SCIPnlpiChgConsSides(heurdata->nlpi, heurdata->nlpiprob, nbinvars, indices, lhss, rhss)… in addRegularScholtes()
252 SCIPfreeBufferArray(scip, &lhss); in addRegularScholtes()
/dports/math/SCIP/scip-7.0.3/src/nlpi/
H A Dnlpioracle.h96 …const SCIP_Real* lhss, /**< array with left-hand sides of constraints, or NULL …
144 …const SCIP_Real* lhss, /**< array with new left-hand sides, or NULL if all shou…
H A Dtype_nlpi.h182 …(x) SCIP_RETCODE x (SCIP_NLPI* nlpi, SCIP_NLPIPROBLEM* problem, int ncons, const SCIP_Real* lhss, \
234 const SCIP_Real* lhss, const SCIP_Real* rhss)
H A Dnlpi.c273 const SCIP_Real* lhss, /**< left hand sides of constraints */ in SCIPnlpiAddConstraints() argument
294 …SCIP_CALL( (*nlpi->nlpiaddconstraints)(nlpi, problem, nconss, lhss, rhss, nlininds, lininds, linva… in SCIPnlpiAddConstraints()
349 const SCIP_Real* lhss, /**< new left hand sides */ in SCIPnlpiChgConsSides() argument
356 SCIP_CALL( (*nlpi->nlpichgconssides)(nlpi, problem, nconss, indices, lhss, rhss) ); in SCIPnlpiChgConsSides()
H A Dnlpi.h150 …const SCIP_Real* lhss, /**< left hand sides of constraints, can be NULL if -inf…
204 const SCIP_Real* lhss, /**< new left hand sides */
H A Dnlpi_all.c313 …SCIP_CALL( SCIPnlpiAddConstraints(nlpidata->nlpis[i], problem->nlpiproblems[i], ncons, lhss, rhss,… in SCIP_DECL_NLPIADDCONSTRAINTS()
422 … SCIPnlpiChgConsSides(nlpidata->nlpis[i], problem->nlpiproblems[i], nconss, indices, lhss, rhss) ); in SCIP_DECL_NLPICHGCONSSIDES()
/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/heuristics/
H A DCouenneFPscipSolve.cpp43 const SCIP_Real* lhss; in ScipSolve() local
83 lhss = milp_ -> getRowLower (); in ScipSolve()
233 checkInfinity(scip, lhss[i], infinity); in ScipSolve()
237 SCIP_CALL( SCIPcreateConsLinear(scip, &cons, consname, 0, NULL, NULL, lhss[i], rhss[i], in ScipSolve()
/dports/math/SCIP/scip-7.0.3/tests/src/nlpi/
H A Dnlpi.c106 SCIP_Real lhss[3] = {1, -INF, 2.5}; in testNlpi() local
150 …SCIP_CALL( SCIPnlpiAddConstraints(nlpi, nlpiprob, 1, &lhss[0], &rhss[0], NULL, NULL, NULL, &nquade… in testNlpi()
158 …SCIP_CALL( SCIPnlpiAddConstraints(nlpi, nlpiprob, 1, &lhss[1], &rhss[1], &nlinds, &lininds, &linva… in testNlpi()
166 …SCIP_CALL( SCIPnlpiAddConstraints(nlpi, nlpiprob, 1, &lhss[2], &rhss[2], &nlinds, &lininds, &linva… in testNlpi()
/dports/misc/frugally-deep/frugally-deep-0.15.13-p0/include/fdeep/
H A Dtensor_shape.hpp253 inline bool operator == (const std::vector<tensor_shape>& lhss, in operator ==() argument
257 lhss, rhss)); in operator ==()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/crates/mbe/src/expander/
H A Dmatcher.rs827 Separator::Puncts(lhss) if idx < lhss.len() => match fork.expect_punct() { in expect_separator()
828 Ok(rhs) => rhs.char == lhss[idx].char, in expect_separator()
/dports/lang/rust/rustc-1.58.1-src/src/tools/rust-analyzer/crates/mbe/src/expander/
H A Dmatcher.rs827 Separator::Puncts(lhss) if idx < lhss.len() => match fork.expect_punct() { in expect_separator()
828 Ok(rhs) => rhs.char == lhss[idx].char, in expect_separator()
/dports/lang/racket/racket-8.3/share/pkgs/redex-lib/redex/private/
H A Dreduction-semantics.rkt1648 (define new-lhss
1657 (define new-dqs (make-clause-dqs c-lhs new-lhss (length new-lhss)))
1670 (define-for-syntax (make-mf-clauses lhss rhss extrass nts err-name name lang)
1673 ([lhs (in-list lhss)] [rhs (in-list rhss)] [extras (in-list extrass)])
1697 (for/fold ([new-cs '()] [prev-lhss '()])
1701 (define new-dqs (make-clause-dqs c-lhs prev-lhss))
1705 (cons c-lhs prev-lhss))])))
1710 (define fixed-lhss
1725 (for/list ([plhs (in-list fixed-lhss)])
1869 [lhss lhss-at-lang]
[all …]
/dports/net/evans/evans-0.9.1/vendor/golang.org/x/tools/go/ssa/
H A Dbuilder.go1024 func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
1026 lvals := make([]lvalue, len(lhss))
1027 isZero := make([]bool, len(lhss))
1028 for i, lhs := range lhss {
1041 if len(lhss) == len(rhss) {
/dports/www/bugzilla2atom/bugzilla2atom-56126912bf314a80744827758d582e5e60e7178c/vendor/golang.org/x/tools/go/ssa/
H A Dbuilder.go1024 func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
1026 lvals := make([]lvalue, len(lhss))
1027 isZero := make([]bool, len(lhss))
1028 for i, lhs := range lhss {
1041 if len(lhss) == len(rhss) {
/dports/security/vault/vault-1.8.2/vendor/golang.org/x/tools/go/ssa/
H A Dbuilder.go1024 func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
1026 lvals := make([]lvalue, len(lhss))
1027 isZero := make([]bool, len(lhss))
1028 for i, lhs := range lhss {
1041 if len(lhss) == len(rhss) {
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/golang.org/x/tools/go/ssa/
H A Dbuilder.go1024 func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
1026 lvals := make([]lvalue, len(lhss))
1027 isZero := make([]bool, len(lhss))
1028 for i, lhs := range lhss {
1041 if len(lhss) == len(rhss) {
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/golang.org/x/tools/go/ssa/
H A Dbuilder.go1024 func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
1026 lvals := make([]lvalue, len(lhss))
1027 isZero := make([]bool, len(lhss))
1028 for i, lhs := range lhss {
1041 if len(lhss) == len(rhss) {
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/golang.org/x/tools/go/ssa/
H A Dbuilder.go1024 func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
1026 lvals := make([]lvalue, len(lhss))
1027 isZero := make([]bool, len(lhss))
1028 for i, lhs := range lhss {
1041 if len(lhss) == len(rhss) {
/dports/devel/liteide/liteide-x37.4/liteidex/vendor/golang.org/x/tools/go/ssa/
H A Dbuilder.go1024 func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
1026 lvals := make([]lvalue, len(lhss))
1027 isZero := make([]bool, len(lhss))
1028 for i, lhs := range lhss {
1041 if len(lhss) == len(rhss) {

12345