pyerualjetwork 4.2.0b0__py3-none-any.whl → 4.2.0b1__py3-none-any.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.
- pyerualjetwork/__init__.py +1 -1
- pyerualjetwork/plan.py +2 -1
- pyerualjetwork/plan_cuda.py +2 -1
- pyerualjetwork/planeat.py +290 -238
- pyerualjetwork/planeat_cuda.py +417 -342
- {pyerualjetwork-4.2.0b0.dist-info → pyerualjetwork-4.2.0b1.dist-info}/METADATA +1 -1
- {pyerualjetwork-4.2.0b0.dist-info → pyerualjetwork-4.2.0b1.dist-info}/RECORD +9 -9
- {pyerualjetwork-4.2.0b0.dist-info → pyerualjetwork-4.2.0b1.dist-info}/WHEEL +0 -0
- {pyerualjetwork-4.2.0b0.dist-info → pyerualjetwork-4.2.0b1.dist-info}/top_level.txt +0 -0
pyerualjetwork/__init__.py
CHANGED
@@ -48,7 +48,7 @@ for package_name in package_names:
|
|
48
48
|
|
49
49
|
print(f"PyerualJetwork is ready to use with {err} errors")
|
50
50
|
|
51
|
-
__version__ = "4.2.
|
51
|
+
__version__ = "4.2.0b1"
|
52
52
|
__update__ = "* Changes: https://github.com/HCB06/PyerualJetwork/blob/main/CHANGES\n* PyerualJetwork document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf\n* YouTube tutorials: https://www.youtube.com/@HasanCanBeydili"
|
53
53
|
|
54
54
|
def print_version(__version__):
|
pyerualjetwork/plan.py
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
|
4
4
|
MAIN MODULE FOR PLAN
|
5
5
|
|
6
|
+
Examples: https://github.com/HCB06/PyerualJetwork/tree/main/Welcome_to_PyerualJetwork/ExampleCodes
|
7
|
+
|
6
8
|
PLAN document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PLAN/PLAN.pdf
|
7
9
|
PYERUALJETWORK document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf
|
8
10
|
|
@@ -16,7 +18,6 @@ PYERUALJETWORK document: https://github.com/HCB06/PyerualJetwork/blob/main/Welco
|
|
16
18
|
import numpy as np
|
17
19
|
from colorama import Fore
|
18
20
|
import math
|
19
|
-
import random
|
20
21
|
|
21
22
|
### LIBRARY IMPORTS ###
|
22
23
|
from .ui import loading_bars, initialize_loading_bar
|
pyerualjetwork/plan_cuda.py
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
|
4
4
|
MAIN MODULE FOR PLAN_CUDA
|
5
5
|
|
6
|
+
Examples: https://github.com/HCB06/PyerualJetwork/tree/main/Welcome_to_PyerualJetwork/ExampleCodes
|
7
|
+
|
6
8
|
PLAN document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PLAN/PLAN.pdf
|
7
9
|
PYERUALJETWORK document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf
|
8
10
|
|
@@ -14,7 +16,6 @@ PYERUALJETWORK document: https://github.com/HCB06/PyerualJetwork/blob/main/Welco
|
|
14
16
|
"""
|
15
17
|
|
16
18
|
import cupy as cp
|
17
|
-
import numpy as np
|
18
19
|
from colorama import Fore
|
19
20
|
import math
|
20
21
|
|