Skip to content

Commit

Permalink
+ a -1
Browse files Browse the repository at this point in the history
  • Loading branch information
t7phy authored Feb 7, 2024
1 parent 6833e50 commit 229a4be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def gamma_nsv(N, nf, cache):
S11 = S1 + N1I
S12 = S11 + N2I
B1 = -S1 * NI
if abs(N.imag) < 0.00001 and abs(N.real) < 0.00001:
if abs(N.imag) < 0.00001 and abs(N.real - 1) < 0.00001:
B1M = -zeta2
else:
B1M = -S1M * NMI
Expand Down

0 comments on commit 229a4be

Please sign in to comment.