jijmodeling 1.13.0rc1__cp38-abi3-manylinux_2_28_aarch64.whl → 2.0.0a1__cp38-abi3-manylinux_2_28_aarch64.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 +694 -4788
- jijmodeling/_jijmodeling.abi3.so +0 -0
- jijmodeling/_jijmodeling.pyi +13 -0
- {jijmodeling-1.13.0rc1.dist-info → jijmodeling-2.0.0a1.dist-info}/METADATA +1 -1
- jijmodeling-2.0.0a1.dist-info/RECORD +9 -0
- jijmodeling/dataset.py +0 -5
- jijmodeling/dataset.pyi +0 -106
- jijmodeling/experimental.py +0 -13
- jijmodeling/experimental.pyi +0 -302
- jijmodeling/range/__init__.py +0 -14
- jijmodeling/range/__init__.pyi +0 -56
- jijmodeling/range/size.py +0 -14
- jijmodeling/range/size.pyi +0 -54
- jijmodeling/range/value.py +0 -14
- jijmodeling/range/value.pyi +0 -54
- jijmodeling-1.13.0rc1.dist-info/RECORD +0 -18
- {jijmodeling-1.13.0rc1.dist-info → jijmodeling-2.0.0a1.dist-info}/WHEEL +0 -0
- {jijmodeling-1.13.0rc1.dist-info → jijmodeling-2.0.0a1.dist-info}/licenses/LICENSE.txt +0 -0
jijmodeling/range/value.pyi
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
# This file is automatically generated by pyo3_stub_gen
|
|
2
|
-
# ruff: noqa: E501, F401
|
|
3
|
-
|
|
4
|
-
import builtins
|
|
5
|
-
import typing
|
|
6
|
-
|
|
7
|
-
def at_least(arg:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
8
|
-
r"""
|
|
9
|
-
`at_least(lb)` returns a closed interval $[\mathtt{lb}, \infty)$; that is, $x \in \mathtt{at\_least(lb)} \iff x \geq \mathtt{lb}$.
|
|
10
|
-
"""
|
|
11
|
-
...
|
|
12
|
-
|
|
13
|
-
def at_most(bd:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
14
|
-
r"""
|
|
15
|
-
`at_most(ub)` returns a closed interval $(-\infty, \mathtt{ub}]$; that is, $x \in \mathtt{at\_most(ub)} \iff x \leq \mathtt{ub}$.
|
|
16
|
-
"""
|
|
17
|
-
...
|
|
18
|
-
|
|
19
|
-
def closed(lb:builtins.float, ub:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
20
|
-
r"""
|
|
21
|
-
`closed(lb, ub)` returns a closed interval $[\mathtt{lb}, \mathtt{ub}]$; that is, $x \in \mathtt{closed(lb, ub)} \iff \mathtt{lb} \leq x \leq \mathtt{ub}$
|
|
22
|
-
"""
|
|
23
|
-
...
|
|
24
|
-
|
|
25
|
-
def closed_open(lb:builtins.float, ub:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
26
|
-
r"""
|
|
27
|
-
`closed_open(lb, ub)` returns a upper half-open interval $[\mathtt{lb}, \mathtt{ub})$; that is, $x \in \mathtt{closed\_open(lb, ub)} \iff \mathtt{lb} \leq x < \mathtt{ub}$. For size range, it is same as the python's standard `range(lb, ub)` function.
|
|
28
|
-
"""
|
|
29
|
-
...
|
|
30
|
-
|
|
31
|
-
def greater_than(arg:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
32
|
-
r"""
|
|
33
|
-
`greater_than(lb)` returns an open interval $(\mathtt{lb}, \infty)$; that is, $x \in \mathtt{greater\_than(lb)} \iff x > \mathtt{lb}$.
|
|
34
|
-
"""
|
|
35
|
-
...
|
|
36
|
-
|
|
37
|
-
def less_than(bd:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
38
|
-
r"""
|
|
39
|
-
`less_than(ub)` returns an open interval $(-\infty, \mathtt{ub})$; that is, $x \in \mathtt{less\_than(ub)} \iff x < \mathtt{ub}$. For size range, it is same as the python's standard `range(ub)` function.
|
|
40
|
-
"""
|
|
41
|
-
...
|
|
42
|
-
|
|
43
|
-
def open(lb:builtins.float, ub:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
44
|
-
r"""
|
|
45
|
-
`open(lb, ub)` returns an open interval $(\mathtt{lb}, \mathtt{ub})$; that is, $x \in \mathtt{open(lb, ub)} \iff \mathtt{lb} < x < \mathtt{ub}$
|
|
46
|
-
"""
|
|
47
|
-
...
|
|
48
|
-
|
|
49
|
-
def open_closed(lb:builtins.float, ub:builtins.float) -> builtins.dict[builtins.str, builtins.dict[builtins.str, builtins.float] | typing.Literal['Unbounded']]:
|
|
50
|
-
r"""
|
|
51
|
-
`open_closed(lb, ub)` returns a lower half-open interval $(\mathtt{lb}, \mathtt{ub}]$; that is, $x \in \mathtt{open\_closed(lb, ub)} \iff \mathtt{lb} < x \leq \mathtt{ub}$.
|
|
52
|
-
"""
|
|
53
|
-
...
|
|
54
|
-
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
jijmodeling-1.13.0rc1.dist-info/METADATA,sha256=-yqQQaT8LpufJimrfXd3r6NUU_8GfCYlmxDQOrBZP6Q,2484
|
|
2
|
-
jijmodeling-1.13.0rc1.dist-info/WHEEL,sha256=03AfVCh23SYURu4Eyj1otbGIFVKZfjdvSJSnOghd0-E,107
|
|
3
|
-
jijmodeling-1.13.0rc1.dist-info/licenses/LICENSE.txt,sha256=T5HdEbP5NWG8fZbvF9pofeteW3HrS30V3_LvtPUHFYM,3400
|
|
4
|
-
jijmodeling/__init__.py,sha256=43DV_WzDxS0n6FseNyfJZ6oQucO31T4qqbz3bx9JMtE,44
|
|
5
|
-
jijmodeling/__init__.pyi,sha256=blLp09Q9CrELuqF6j9xTJXnKzKb4ANI1eJGYI3ypEYg,155372
|
|
6
|
-
jijmodeling/_jijmodeling.abi3.so,sha256=240Na6q2hrS7j3sBinAPZtgB7IoUUDoHA9M0cCLUoHY,7897480
|
|
7
|
-
jijmodeling/dataset.py,sha256=S4piVIiUGJMi8MlG3kFV-8JIkzvnktAS0IdkbJ655hw,185
|
|
8
|
-
jijmodeling/dataset.pyi,sha256=3kKSch5XR16pEZA0c_Xr_J9Ai_IAv3aTqExR7iCd-pk,4083
|
|
9
|
-
jijmodeling/experimental.py,sha256=Of-tUY3kfpFHpjGbIcclbMenCP2BMW07me895YH7tG8,575
|
|
10
|
-
jijmodeling/experimental.pyi,sha256=lBo4LxYFm-C4m2oC6XVYkBON6EVbbZjWl2NmMziPhbw,11275
|
|
11
|
-
jijmodeling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
jijmodeling/range/__init__.py,sha256=4HqNNHBnK4H3EDl7nV7crz9EIEr85Uc3APnI6xvz4OQ,529
|
|
13
|
-
jijmodeling/range/__init__.pyi,sha256=VM36FPMICfAW54EAZKIrYFbams01fcCuaSn58MR54Qc,3911
|
|
14
|
-
jijmodeling/range/size.py,sha256=gBwFfLuO4GprRfjVWyCplEvFJri8cxPRtuEd5uXzo7Q,528
|
|
15
|
-
jijmodeling/range/size.pyi,sha256=qV7OxCU_sHBVrH7Vyf1tOpClQphMlPD3ZzBDLVacRWI,2830
|
|
16
|
-
jijmodeling/range/value.py,sha256=aRwQGzpH5MZgpgKvd8gxMkMRyloq0S5zv87Kv3PHSd4,532
|
|
17
|
-
jijmodeling/range/value.pyi,sha256=rm6hAOACwTUYPNlYOLAmqMKoT7c2XQUMH6HyzvhbVjc,2870
|
|
18
|
-
jijmodeling-1.13.0rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|