jijmodeling 1.12.2__cp38-abi3-win_amd64.whl → 1.12.4__cp38-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of jijmodeling might be problematic. Click here for more details.
- jijmodeling/__init__.pyi +9 -0
- jijmodeling/_jijmodeling.pyd +0 -0
- {jijmodeling-1.12.2.dist-info → jijmodeling-1.12.4.dist-info}/METADATA +1 -1
- {jijmodeling-1.12.2.dist-info → jijmodeling-1.12.4.dist-info}/RECORD +6 -6
- {jijmodeling-1.12.2.dist-info → jijmodeling-1.12.4.dist-info}/WHEEL +0 -0
- {jijmodeling-1.12.2.dist-info → jijmodeling-1.12.4.dist-info}/licenses/LICENSE.txt +0 -0
jijmodeling/__init__.pyi
CHANGED
|
@@ -1676,6 +1676,15 @@ class Interpreter:
|
|
|
1676
1676
|
>>> interpreter.get_instance_data("f") # doctest: +ELLIPSIS
|
|
1677
1677
|
<jijmodeling.JaggedArray object at 0x...>
|
|
1678
1678
|
|
|
1679
|
+
Update instance data and re-evaluate expressions
|
|
1680
|
+
>>> a = jm.Placeholder("a")
|
|
1681
|
+
>>> x = jm.BinaryVar("x")
|
|
1682
|
+
>>> interpreter.eval_expr(a * x) # Original evaluation with a = 1
|
|
1683
|
+
Function(x0)
|
|
1684
|
+
>>> interpreter.insert_instance_data("a", 3) # Update value of 'a'
|
|
1685
|
+
>>> interpreter.eval_expr(a * x) # Re-evaluate with updated value
|
|
1686
|
+
Function(3*x0)
|
|
1687
|
+
|
|
1679
1688
|
```
|
|
1680
1689
|
"""
|
|
1681
1690
|
num_decision_variables: builtins.int
|
jijmodeling/_jijmodeling.pyd
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
jijmodeling-1.12.
|
|
2
|
-
jijmodeling-1.12.
|
|
3
|
-
jijmodeling-1.12.
|
|
1
|
+
jijmodeling-1.12.4.dist-info/METADATA,sha256=zCKedPaDQyTZ0pN7QSOmj-8WjO_PlFIWq7bMU2WQmoE,2494
|
|
2
|
+
jijmodeling-1.12.4.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
|
|
3
|
+
jijmodeling-1.12.4.dist-info/licenses/LICENSE.txt,sha256=llUjgcEN5bUeFlj1RqxJxDMxUnlYvowLsldCF6Lwq8c,3445
|
|
4
4
|
jijmodeling/dataset.py,sha256=L8yUjKp81m6_CoSfdPJMoJmlCQ_gf7n8okURTKRMXaw,190
|
|
5
5
|
jijmodeling/dataset.pyi,sha256=lUu23EjUbmU6AKiQkWWkN_c0Yw_r_C-5FrD1ZzQZEm4,4189
|
|
6
6
|
jijmodeling/experimental.py,sha256=WWmxJzkyx_EYac1zmxflmFND191-xbVVXEdqot2VrM4,588
|
|
@@ -13,6 +13,6 @@ jijmodeling/range/value.pyi,sha256=TKdEWQz9DHttbW2WXVKeEYPzyZe9InF7ZQuLQrGsosc,2
|
|
|
13
13
|
jijmodeling/range/__init__.py,sha256=Dh-hTX2LMtTaM-Aps6Z4KfV28EoLI3vfkiRr4lQu13s,543
|
|
14
14
|
jijmodeling/range/__init__.pyi,sha256=aZCIz2ZjSBDDo3rhhluu_mzpuIIJYbclqTEt5JYu-Vc,3967
|
|
15
15
|
jijmodeling/__init__.py,sha256=jJ6o5wp3MPAP1uR3dqSvjaXG57t1IwcS8ojqPpZL-gU,45
|
|
16
|
-
jijmodeling/__init__.pyi,sha256=
|
|
17
|
-
jijmodeling/_jijmodeling.pyd,sha256=
|
|
18
|
-
jijmodeling-1.12.
|
|
16
|
+
jijmodeling/__init__.pyi,sha256=gb4YXS17Q7QwrfqKGGdwP8GpzVmArQ40iOxjGfhRK88,160533
|
|
17
|
+
jijmodeling/_jijmodeling.pyd,sha256=ywtS9vfoSXJ4FEZf3Qt3nUv0Q_RKTt7spXYzc1GzLGo,10648576
|
|
18
|
+
jijmodeling-1.12.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|