Home
last modified time | relevance | path

Searched refs:newlhs (Results 1 – 25 of 56) sorted by relevance

123

/dports/science/smoldyn/smoldyn-2.67/source/NextSubVolume/
H A DReactionEquation.cpp44 return ReactionEquation(*newlhs,*newrhs); in operator >>()
50 return ReactionEquation(*newlhs,*newrhs); in operator >>()
56 return ReactionEquation(*newlhs,*newrhs); in operator >>()
64 return ReactionEquation(*newlhs,*newrhs); in operator >>()
70 return ReactionEquation(*newlhs,*newrhs); in operator >>()
76 return ReactionEquation(*newlhs,*newrhs); in operator >>()
81 return ReactionEquation(*newlhs,*newrhs); in operator >>()
88 return ReactionEquation(*newlhs,*newrhs); in operator >>()
94 return ReactionEquation(*newlhs,*newrhs); in operator >>()
100 return ReactionEquation(*newlhs,*newrhs); in operator >>()
[all …]
/dports/math/gap/gap-4.11.0/pkg/kbmag-1.5.9/standalone/lib/
H A Dkbfns.c1567 gen **newlhs, **newrhs; in sort_eqns() local
1606 tfree(newlhs); in sort_eqns()
1625 gen **newlhs, **newrhs; in type_sort_eqns() local
1674 eqn[i].lhs = newlhs[i]; in type_sort_eqns()
1678 tfree(newlhs); in type_sort_eqns()
1695 gen **newlhs, **newrhs; in type_sort_eqns_final() local
1734 eqn[i].lhs = newlhs[i]; in type_sort_eqns_final()
1738 tfree(newlhs); in type_sort_eqns_final()
1835 tfree(newlhs); in typelength_sort_eqns()
1860 gen **newlhs, **newrhs; in wd_sort_eqns() local
[all …]
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dcons_linear.c6645 SCIP_Real newlhs; in rangedRowPropagation() local
6752 SCIP_Real newlhs; in rangedRowPropagation() local
6758 newlhs = lhs - maxact; in rangedRowPropagation()
6760 assert(newlhs < newrhs); in rangedRowPropagation()
8935 SCIP_Real newlhs; in tightenSides() local
8954 newlhs = -SCIPinfinity(scip); in tightenSides()
9074 SCIP_Real newlhs; in consdataTightenCoefs() local
9611 assert(newlhs != NULL); in getNewSidesAfterAggregation()
9865 SCIP_Real newlhs; in convertLongEquality() local
9997 SCIP_Real newlhs; in convertLongEquality() local
[all …]
H A Dcons_pseudoboolean.c933 SCIP_Real newlhs; in checkConsConsistency() local
955 assert(!SCIPisInfinity(scip, newlhs)); in checkConsConsistency()
957 assert(SCIPisLE(scip, newlhs, newrhs)); in checkConsConsistency()
959 assert(SCIPisEQ(scip, newlhs, consdata->lhs) || SCIPisEQ(scip, newlhs, -consdata->rhs)); in checkConsConsistency()
4265 assert(!SCIPisInfinity(scip, newlhs)); in correctLocksAndCaptures()
4267 assert(SCIPisLE(scip, newlhs, newrhs)); in correctLocksAndCaptures()
4440 || (consdata->lhs < 0 && newlhs > 0) || (consdata->lhs > 0 && newlhs < 0); in correctLocksAndCaptures()
4543 consdata->lhs = newlhs; in correctLocksAndCaptures()
8432 SCIP_Real newlhs; in SCIP_DECL_CONSPRESOL() local
8456 assert(!SCIPisInfinity(scip, newlhs)); in SCIP_DECL_CONSPRESOL()
[all …]
H A Dscip_lp.h1625 SCIP_Real newlhs /**< new value for lhs */
H A Dcons_varbound.c3698 SCIP_Real newlhs; in tightenCoefs() local
3708 newlhs = consdata->lhs - consdata->vbdcoef + newcoef; in tightenCoefs()
3712newlhs, SCIPvarGetName(consdata->var), newcoef, SCIPvarGetName(consdata->vbdvar), consdata->rhs); in tightenCoefs()
3718 consdata->lhs = MIN(newlhs, consdata->rhs); in tightenCoefs()
3726 if( !SCIPisFeasIntegral(scip, oldlhs) && SCIPisFeasIntegral(scip, newlhs) ) in tightenCoefs()
H A Dscip_lp.c2465 SCIP_Real newlhs /**< new value for lhs */ in SCIPchgRowLhsDive() argument
2480 …SCIP_CALL( SCIProwChgLhs(row, scip->mem->probmem, scip->set, scip->eventqueue, scip->lp, newlhs) ); in SCIPchgRowLhsDive()
H A Dlp.c8564 SCIP_Real newlhs; in lpFlushChgRows() local
8567 newlhs = (SCIPsetIsInfinity(set, -row->lhs) ? -lpiinf : row->lhs - row->constant); in lpFlushChgRows()
8569 if( row->flushedlhs != newlhs || row->flushedrhs != newrhs ) /*lint !e777*/ in lpFlushChgRows()
8573 lhs[nchg] = newlhs; in lpFlushChgRows()
8576 row->flushedlhs = newlhs; in lpFlushChgRows()
10765 SCIP_Real* newlhs; in lpLexDualSimplex() local
10819 SCIP_CALL( SCIPsetAllocBufferArray(set, &newlhs, lp->nlpirows) ); in lpLexDualSimplex()
11015 newlhs[cntrow] = oldlhs[r]; in lpLexDualSimplex()
11021 newlhs[cntrow] = oldrhs[r]; in lpLexDualSimplex()
11051 SCIP_CALL( SCIPlpiChgSides(lp->lpi, cntrow, indrow, newlhs, newrhs) ); in lpLexDualSimplex()
[all …]
/dports/math/SCIP/scip-7.0.3/tests/src/lpi/
H A Dchange.c650 SCIP_Real newlhs[100]; in Test() local
676 …SCIP_CALL( SCIPlpiGetRows(lpi, nrowsbefore, nrowsbefore - 1 + nrows, newlhs, newrhs, &newnnonz, ne… in Test()
687 cr_assert_float_eq_inf(lhs[j], newlhs[j], 1e-16); in Test()
/dports/math/adol-c/ADOL-C-2.7.2/ADOL-C/src/
H A Dtaping_p.h646 int upd_resloc_inc_prod(locint temp, locint newlhs, unsigned char newop);
H A Dtaping.c2350 int upd_resloc_inc_prod(locint temp, locint newlhs, unsigned char newop) { in upd_resloc_inc_prod() argument
2358 newlhs != *(ADOLC_CURRENT_TAPE_INFOS.currLoc - 2) && in upd_resloc_inc_prod()
2359 newlhs != *(ADOLC_CURRENT_TAPE_INFOS.currLoc - 3) ) { in upd_resloc_inc_prod()
2360 *(ADOLC_CURRENT_TAPE_INFOS.currLoc - 1) = newlhs; in upd_resloc_inc_prod()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/
H A DREADME.md129 `model.chgLhs(cons, newlhs)` after the single-sided constraint has been
H A DPKG-INFO137 `model.chgLhs(cons, newlhs)` after the single-sided constraint has been
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/PySCIPOpt.egg-info/
H A DPKG-INFO137 `model.chgLhs(cons, newlhs)` after the single-sided constraint has been
/dports/math/libpgmath/flang-d07daf3/tools/flang1/flang1exe/
H A Dvsub.c1616 int forall, list, asn, lhs, sptrlhs, newlhs; in scalar_lhs_dependency() local
1622 newlhs = remove_scalar_lhs_dependency(lhs, list, sptrlhs, std); in scalar_lhs_dependency()
1623 A_DESTP(asn, newlhs); in scalar_lhs_dependency()
/dports/math/py-sympy/sympy-1.9/sympy/solvers/
H A Dsolveset.py1524 newlhs = powdenest(lhs)
1525 if lhs != newlhs:
1527 neweq = factor(newlhs - rhs)
/dports/math/cvc3/cvc3-2.4.1/src/theory_core/
H A Dtheory_core.cpp1149 const Expr& newlhs = thm1.getRHS(); in update() local
1151 if (newlhs == newrhs) { in update()
1161 if (newlhs < newrhs) { in update()
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/
H A Dtree-inline.c2203 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2206 PLUS_EXPR, newlhs, count); in copy_bb()
2207 gimple_call_set_lhs (stmt, newlhs); in copy_bb()
/dports/lang/gcc8/gcc-8.5.0/gcc/
H A Dtree-inline.c2091 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2094 PLUS_EXPR, newlhs, count); in copy_bb()
2095 gimple_call_set_lhs (stmt, newlhs); in copy_bb()
/dports/lang/gcc10/gcc-10.3.0/gcc/
H A Dtree-inline.c2171 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2174 PLUS_EXPR, newlhs, count); in copy_bb()
2175 gimple_call_set_lhs (stmt, newlhs); in copy_bb()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-inline.c2091 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2094 PLUS_EXPR, newlhs, count); in copy_bb()
2095 gimple_call_set_lhs (stmt, newlhs); in copy_bb()
/dports/lang/gcc11/gcc-11.2.0/gcc/
H A Dtree-inline.c2166 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2169 PLUS_EXPR, newlhs, count); in copy_bb()
2170 gimple_call_set_lhs (stmt, newlhs); in copy_bb()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/
H A Dtree-inline.c2091 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2094 PLUS_EXPR, newlhs, count); in copy_bb()
2095 gimple_call_set_lhs (stmt, newlhs); in copy_bb()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-inline.c2091 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2094 PLUS_EXPR, newlhs, count); in copy_bb()
2095 gimple_call_set_lhs (stmt, newlhs); in copy_bb()
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/
H A Dtree-inline.c2091 tree newlhs = create_tmp_reg_or_ssa_name (integer_type_node); in copy_bb() local
2094 PLUS_EXPR, newlhs, count); in copy_bb()
2095 gimple_call_set_lhs (stmt, newlhs); in copy_bb()

123