piegy 1.1.0__py3-none-any.whl → 1.1.1__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.
- piegy/__version__.py +1 -0
- piegy/model.py +2 -5
- {piegy-1.1.0.dist-info → piegy-1.1.1.dist-info}/METADATA +1 -1
- {piegy-1.1.0.dist-info → piegy-1.1.1.dist-info}/RECORD +7 -7
- {piegy-1.1.0.dist-info → piegy-1.1.1.dist-info}/WHEEL +0 -0
- {piegy-1.1.0.dist-info → piegy-1.1.1.dist-info}/licenses/LICENSE.txt +0 -0
- {piegy-1.1.0.dist-info → piegy-1.1.1.dist-info}/top_level.txt +0 -0
piegy/__version__.py
CHANGED
piegy/model.py
CHANGED
@@ -41,9 +41,6 @@ PI_DTYPE = 'float64'
|
|
41
41
|
# data type for storing rates in single_test an single_init
|
42
42
|
RATES_DTYPE = 'float64'
|
43
43
|
|
44
|
-
# store e locally, slightly increases speed
|
45
|
-
MATH_E = math.e
|
46
|
-
|
47
44
|
|
48
45
|
class patch:
|
49
46
|
'''
|
@@ -176,8 +173,8 @@ class patch:
|
|
176
173
|
|
177
174
|
for i in range(4):
|
178
175
|
if self.nb[i] != None:
|
179
|
-
U_weight[i] = 1 + pow(
|
180
|
-
V_weight[i] = 1 + pow(
|
176
|
+
U_weight[i] = 1 + pow(math.e, self.w1 * self.nb[i].U_pi)
|
177
|
+
V_weight[i] = 1 + pow(math.e, self.w2 * self.nb[i].V_pi)
|
181
178
|
|
182
179
|
mu1_U = self.mu1 * self.U
|
183
180
|
mu2_V = self.mu2 * self.V
|
@@ -1,16 +1,16 @@
|
|
1
1
|
piegy/__init__.py,sha256=Lrh6NegSvo6LOCXg_tBTu804eicnHpQY2zmE0FchjKE,3241
|
2
|
-
piegy/__version__.py,sha256=
|
2
|
+
piegy/__version__.py,sha256=8IfclnXlmVE5p-odcoFI_9v7RIOmz2Cxd8Dvx1dMjNc,526
|
3
3
|
piegy/analysis.py,sha256=1cF06igQMGJGVjLiyhtgepGk8fYhzvL0orI48tOK1qY,8713
|
4
4
|
piegy/data_tools.py,sha256=lNFOX4H0o_WfRSNQoC9QGCK66-IdrZ0zCnz12N-Ael4,3599
|
5
5
|
piegy/figures.py,sha256=xR4NKuHc-7E3ld6NjyAAVcJG8CtIoKoM4mqd8qPOXsg,19063
|
6
|
-
piegy/model.py,sha256=
|
6
|
+
piegy/model.py,sha256=NkP_Apnun3MhATSihR4_irnA-8p4FW879xQjCXVEPMA,45502
|
7
7
|
piegy/test_var.py,sha256=PDtCCou-kFXumEe2EdAQNKJohwHH58ifLSsp5xQraVI,23532
|
8
8
|
piegy/videos.py,sha256=vPl1aTIOaWxIUsxX5yL3JPiuf-Um0bPo7qYIHZP0bo0,10143
|
9
9
|
piegy/tools/__init__.py,sha256=eYOl_HJHDonYexfrmKh3koOlxvtSo46vH6jHvCEEB4k,300
|
10
10
|
piegy/tools/figure_tools.py,sha256=tAI5sBMsxN_1BN5_G_3UoMcDeYTj2DXr8l4HpPl9FSs,6961
|
11
11
|
piegy/tools/file_tools.py,sha256=ncxFWeHfIE-GYLQlOrahFlhBgqPyuY3R5_93fpQeCEs,630
|
12
|
-
piegy-1.1.
|
13
|
-
piegy-1.1.
|
14
|
-
piegy-1.1.
|
15
|
-
piegy-1.1.
|
16
|
-
piegy-1.1.
|
12
|
+
piegy-1.1.1.dist-info/licenses/LICENSE.txt,sha256=wfzEht_CxOcfGGmg3f3at4mWJb9rTBjA51mXLl_3O3g,1498
|
13
|
+
piegy-1.1.1.dist-info/METADATA,sha256=qawzMEDrKZITzujlqMf_9WJoEklAGFYcOw3I2u8plbQ,5097
|
14
|
+
piegy-1.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
15
|
+
piegy-1.1.1.dist-info/top_level.txt,sha256=k4QLYL8PqdqDuy95-4NZD_FVLqJDsmq67tpKkBn4vMw,6
|
16
|
+
piegy-1.1.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|