Skip to content

Commit

Permalink
fixing factor of 4 normalization bug introduced during merge at commit
Browse files Browse the repository at this point in the history
…5e9742e. still need to confirm if other bugs were introduced.
  • Loading branch information
jablazek committed Dec 27, 2019
1 parent a09a996 commit c5251ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastpt/FASTPT.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def IA_mix(self, P, P_window=None, C_window=None):
if (self.extrap):
_, P_DBB = self.EK.PK_original(P_DBB)

return 2 * P_A, P_Btype2, 2 * P_DEE, 2 * P_DBB
return 2 * P_A, 4 * P_Btype2, 2 * P_DEE, 2 * P_DBB

## eq 18; eq 19; eq 27 EE; eq 27 BB

Expand Down

0 comments on commit c5251ad

Please sign in to comment.