Skip to content

Commit

Permalink
Remove nf definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Apr 10, 2024
1 parent 82de5f7 commit c4cd667
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/yadism/coefficient_functions/asy/fl_nc.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def N3LO(self):
def cg_NLL_N3LO(z, args):
L = -args[0]
# this term does not depend on nf so setting it to zero
nf = 0
return self.hs3.NLL(z, nf=0) * L**2

return RSL(cg_NLL_N3LO, args=[self.L])
Expand Down Expand Up @@ -83,8 +82,7 @@ def N3LO(self):
def cps_NLL_N3LO(z, args):
L = -args[0]
# this term does not depend on nf so setting it to zero
nf = 0
return self.hs3.NLL(z, nf) * L**2
return self.hs3.NLL(z, nf=0) * L**2

return RSL(cps_NLL_N3LO, args=[self.L])

Expand All @@ -100,8 +98,7 @@ def N3LO(self):
def cps_NNLL_N3LO(z, args):
L = -args[0]
# this term does not depend on nf so setting it to zero
nf = 0
return self.hs3.N2LL(z, nf) * L
return self.hs3.N2LL(z, nf=0) * L

return RSL(cps_NNLL_N3LO, args=[self.L])

Expand Down

0 comments on commit c4cd667

Please sign in to comment.