Skip to content

Commit

Permalink
fix fl02 factor
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomomagni committed Apr 17, 2024
1 parent 58ae2fd commit b0a0607
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/yadism/coefficient_functions/light/f3_cc.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def N3LO(self):
n3lo.xc3ns3p.c3np3a,
n3lo.xc3ns3p.c3ns3b,
n3lo.xc3ns3p.c3np3c,
[self.nf, True],
[self.nf],
)


Expand Down
2 changes: 1 addition & 1 deletion src/yadism/coefficient_functions/light/f3_nc.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def N3LO(self):
n3lo.xc3ns3p.c3nm3a,
n3lo.xc3ns3p.c3ns3b,
n3lo.xc3ns3p.c3nm3c,
[self.nf, False],
[self.nf, True],
)


Expand Down
3 changes: 2 additions & 1 deletion src/yadism/coefficient_functions/light/n3lo/xc3ns3p.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ def c3nm3c(y, args):

@nb.njit("f8(f8,f8[:])", cache=True)
def c3np3a(y, args):
return c3nm3a(y, args) + c3q3dfp(y, args)
# Here we need to remove the fl02 diagrams
return c3nm3a(y, [args[0], False]) + c3q3dfp(y, args)


@nb.njit("f8(f8,f8[:])", cache=True)
Expand Down

0 comments on commit b0a0607

Please sign in to comment.