goad-py 0.8.5__pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_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.
- goad_py/__init__.py +51 -0
- goad_py/_goad_py.pypy39-pp73-aarch64-linux-gnu.so +0 -0
- goad_py/convergence.py +835 -0
- goad_py/convergence_display.py +532 -0
- goad_py/goad_py.pyi +453 -0
- goad_py/phips_convergence.py +614 -0
- goad_py/unified_convergence.py +1337 -0
- goad_py-0.8.5.dist-info/METADATA +99 -0
- goad_py-0.8.5.dist-info/RECORD +10 -0
- goad_py-0.8.5.dist-info/WHEEL +5 -0
goad_py/__init__.py
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Re-export everything from the compiled Rust module
|
|
2
|
+
from goad_py._goad_py import *
|
|
3
|
+
|
|
4
|
+
# Import Python modules
|
|
5
|
+
from .convergence import (
|
|
6
|
+
Convergence,
|
|
7
|
+
Convergable,
|
|
8
|
+
ConvergenceResults,
|
|
9
|
+
EnsembleConvergence,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
from .phips_convergence import (
|
|
13
|
+
PHIPSConvergence,
|
|
14
|
+
PHIPSConvergable,
|
|
15
|
+
PHIPSEnsembleConvergence,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
# Import unified convergence API
|
|
19
|
+
from .unified_convergence import (
|
|
20
|
+
# Main entry points
|
|
21
|
+
run_convergence,
|
|
22
|
+
run_convergence_sweep,
|
|
23
|
+
# Classes
|
|
24
|
+
UnifiedConvergence,
|
|
25
|
+
UnifiedResults,
|
|
26
|
+
ConvergenceConfig,
|
|
27
|
+
# Modes
|
|
28
|
+
ConvergenceMode,
|
|
29
|
+
StandardMode,
|
|
30
|
+
PHIPSMode,
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
__all__ = [
|
|
34
|
+
# Legacy convergence API (still supported)
|
|
35
|
+
"Convergence",
|
|
36
|
+
"Convergable",
|
|
37
|
+
"ConvergenceResults",
|
|
38
|
+
"EnsembleConvergence",
|
|
39
|
+
"PHIPSConvergence",
|
|
40
|
+
"PHIPSConvergable",
|
|
41
|
+
"PHIPSEnsembleConvergence",
|
|
42
|
+
# Unified convergence API (recommended)
|
|
43
|
+
"run_convergence",
|
|
44
|
+
"run_convergence_sweep",
|
|
45
|
+
"UnifiedConvergence",
|
|
46
|
+
"UnifiedResults",
|
|
47
|
+
"ConvergenceConfig",
|
|
48
|
+
"ConvergenceMode",
|
|
49
|
+
"StandardMode",
|
|
50
|
+
"PHIPSMode",
|
|
51
|
+
]
|
|
Binary file
|