jijmodeling 2.0.0a12__cp38-abi3-manylinux_2_28_x86_64.whl → 2.0.0b0__cp38-abi3-manylinux_2_28_x86_64.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 +15 -12
- jijmodeling/_jijmodeling.abi3.so +0 -0
- {jijmodeling-2.0.0a12.dist-info → jijmodeling-2.0.0b0.dist-info}/METADATA +2 -4
- jijmodeling-2.0.0b0.dist-info/RECORD +9 -0
- {jijmodeling-2.0.0a12.dist-info → jijmodeling-2.0.0b0.dist-info}/WHEEL +1 -1
- jijmodeling-2.0.0a12.dist-info/RECORD +0 -9
- {jijmodeling-2.0.0a12.dist-info → jijmodeling-2.0.0b0.dist-info}/licenses/LICENSE.txt +0 -0
jijmodeling/__init__.pyi
CHANGED
|
@@ -10,6 +10,9 @@ from . import _jijmodeling
|
|
|
10
10
|
from enum import Enum
|
|
11
11
|
|
|
12
12
|
__version__: builtins.str
|
|
13
|
+
class CompileError(builtins.Exception):
|
|
14
|
+
...
|
|
15
|
+
|
|
13
16
|
class Compiler:
|
|
14
17
|
def get_constraint_id_by_name(self, name:builtins.str) -> dict:
|
|
15
18
|
r"""
|
|
@@ -216,8 +219,8 @@ class DecisionVar:
|
|
|
216
219
|
def __getitem__(self, subscripts:typing.Any) -> Expression: ...
|
|
217
220
|
def sum(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression: ...
|
|
218
221
|
def prod(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression: ...
|
|
219
|
-
def __eq__(self, other:typing.Any) -> Expression: ...
|
|
220
|
-
def __ne__(self, other:typing.Any) -> Expression: ...
|
|
222
|
+
def __eq__(self, other:typing.Any) -> Expression: ... # type: ignore[reportIncompatibleMethodOverride]
|
|
223
|
+
def __ne__(self, other:typing.Any) -> Expression: ... # type: ignore[reportIncompatibleMethodOverride]
|
|
221
224
|
def __lt__(self, other:typing.Any) -> Expression: ...
|
|
222
225
|
def __le__(self, other:typing.Any) -> Expression: ...
|
|
223
226
|
def __gt__(self, other:typing.Any) -> Expression: ...
|
|
@@ -680,13 +683,16 @@ class Expression:
|
|
|
680
683
|
def __rxor__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any]) -> Expression: ...
|
|
681
684
|
def diff(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any]) -> Expression: ...
|
|
682
685
|
def bnot(self) -> Expression: ...
|
|
683
|
-
def __eq__(self, other:typing.Any) -> Expression: ...
|
|
684
|
-
def __ne__(self, other:typing.Any) -> Expression: ...
|
|
686
|
+
def __eq__(self, other:typing.Any) -> Expression: ... # type: ignore[reportIncompatibleMethodOverride]
|
|
687
|
+
def __ne__(self, other:typing.Any) -> Expression: ... # type: ignore[reportIncompatibleMethodOverride]
|
|
685
688
|
def __lt__(self, other:typing.Any) -> Expression: ...
|
|
686
689
|
def __le__(self, other:typing.Any) -> Expression: ...
|
|
687
690
|
def __gt__(self, other:typing.Any) -> Expression: ...
|
|
688
691
|
def __ge__(self, other:typing.Any) -> Expression: ...
|
|
689
692
|
|
|
693
|
+
class ModelingError(builtins.Exception):
|
|
694
|
+
...
|
|
695
|
+
|
|
690
696
|
class Namespace:
|
|
691
697
|
def __new__(cls) -> Namespace: ...
|
|
692
698
|
@staticmethod
|
|
@@ -830,8 +836,8 @@ class Placeholder:
|
|
|
830
836
|
def __rxor__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any]) -> Expression: ...
|
|
831
837
|
def diff(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any]) -> Expression: ...
|
|
832
838
|
def bnot(self) -> Expression: ...
|
|
833
|
-
def __eq__(self, other:typing.Any) -> Expression: ...
|
|
834
|
-
def __ne__(self, other:typing.Any) -> Expression: ...
|
|
839
|
+
def __eq__(self, other:typing.Any) -> Expression: ... # type: ignore[reportIncompatibleMethodOverride]
|
|
840
|
+
def __ne__(self, other:typing.Any) -> Expression: ... # type: ignore[reportIncompatibleMethodOverride]
|
|
835
841
|
def __lt__(self, other:typing.Any) -> Expression: ...
|
|
836
842
|
def __le__(self, other:typing.Any) -> Expression: ...
|
|
837
843
|
def __gt__(self, other:typing.Any) -> Expression: ...
|
|
@@ -1289,6 +1295,9 @@ class Problem:
|
|
|
1289
1295
|
def __new__(cls, name:builtins.str, *, sense:ProblemSense=ProblemSense.MINIMIZE) -> Problem: ...
|
|
1290
1296
|
|
|
1291
1297
|
class Type:
|
|
1298
|
+
def __eq__(self, other:builtins.object) -> builtins.bool: ...
|
|
1299
|
+
|
|
1300
|
+
class TypeError(builtins.Exception):
|
|
1292
1301
|
...
|
|
1293
1302
|
|
|
1294
1303
|
class ConstraintSense(Enum):
|
|
@@ -1478,9 +1487,3 @@ def tanh(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeho
|
|
|
1478
1487
|
|
|
1479
1488
|
def xor(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any], rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | typing.Callable[[Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression], typing.Any] | typing.Callable[[Expression, Expression, Expression, Expression, Expression], typing.Any]) -> Expression: ...
|
|
1480
1489
|
|
|
1481
|
-
class CompileError(Exception): ...
|
|
1482
|
-
|
|
1483
|
-
class ModelingError(Exception): ...
|
|
1484
|
-
|
|
1485
|
-
class TypeError(Exception): ...
|
|
1486
|
-
|
jijmodeling/_jijmodeling.abi3.so
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jijmodeling
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0b0
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Operating System :: POSIX :: Linux
|
|
6
6
|
Classifier: Operating System :: MacOS
|
|
@@ -9,8 +9,6 @@ Classifier: Programming Language :: Rust
|
|
|
9
9
|
Classifier: Programming Language :: Python
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
@@ -26,7 +24,7 @@ License-File: LICENSE.txt
|
|
|
26
24
|
Summary: Mathematical modeling tool for optimization problem
|
|
27
25
|
Author: Jij Inc.
|
|
28
26
|
Author-email: info@j-ij.com
|
|
29
|
-
Requires-Python: >=3.
|
|
27
|
+
Requires-Python: >=3.11, <3.14
|
|
30
28
|
Description-Content-Type: text/markdown
|
|
31
29
|
Project-URL: Homepage, https://www.jijzept.com
|
|
32
30
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
jijmodeling-2.0.0b0.dist-info/METADATA,sha256=KflhmpHXC-M7Bv2aJZ7l7ZRFztE0VO1Jt9WSzHjGkKg,2412
|
|
2
|
+
jijmodeling-2.0.0b0.dist-info/WHEEL,sha256=8HfWFtUX1crLIvENIbyMxwTLg1RyruYkPifTl8tLwsE,106
|
|
3
|
+
jijmodeling-2.0.0b0.dist-info/licenses/LICENSE.txt,sha256=UDoDtHuEfRayMGh1HKVD3OR4lXFmXC4ifF2hQvwwj3w,3449
|
|
4
|
+
jijmodeling/__init__.py,sha256=43DV_WzDxS0n6FseNyfJZ6oQucO31T4qqbz3bx9JMtE,44
|
|
5
|
+
jijmodeling/__init__.pyi,sha256=AfdYBcHuGshYc16O648NSxQFAEkaxl0ahpskQXE87rM,155415
|
|
6
|
+
jijmodeling/_jijmodeling.abi3.so,sha256=ByKhreb0AKar7FfFTM8qFa7imnLtGDRS2sASAJVpErc,21038216
|
|
7
|
+
jijmodeling/_jijmodeling.pyi,sha256=9towCfPT8yTmJxvncDdME7ZCeFSSntPxAd_TT_spuXQ,162
|
|
8
|
+
jijmodeling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
jijmodeling-2.0.0b0.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
jijmodeling-2.0.0a12.dist-info/METADATA,sha256=qXirvc3LgvfhLABhhHH6odIDEAu0GwrUF6Kh6SL03Ic,2513
|
|
2
|
-
jijmodeling-2.0.0a12.dist-info/WHEEL,sha256=YwvVuJlPAZ3S_4miQ7mSttK4noWXPxmhD2UEDaU0sIc,106
|
|
3
|
-
jijmodeling-2.0.0a12.dist-info/licenses/LICENSE.txt,sha256=UDoDtHuEfRayMGh1HKVD3OR4lXFmXC4ifF2hQvwwj3w,3449
|
|
4
|
-
jijmodeling/__init__.py,sha256=43DV_WzDxS0n6FseNyfJZ6oQucO31T4qqbz3bx9JMtE,44
|
|
5
|
-
jijmodeling/__init__.pyi,sha256=JNsQQVyX1FfLtI4LiKlybmiFSYYV8SeU1q7sI7pe0to,155018
|
|
6
|
-
jijmodeling/_jijmodeling.abi3.so,sha256=8_PXDeYjhLvm8lvaDRJCQhyjv1IpBqa3_NNnvwXrLvs,21050504
|
|
7
|
-
jijmodeling/_jijmodeling.pyi,sha256=9towCfPT8yTmJxvncDdME7ZCeFSSntPxAd_TT_spuXQ,162
|
|
8
|
-
jijmodeling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
jijmodeling-2.0.0a12.dist-info/RECORD,,
|
|
File without changes
|