Skip to content

Commit

Permalink
address issue #322
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomomagni committed Nov 7, 2023
1 parent 10f0733 commit 9e65037
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/eko/runner/legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ def __init__(
couplings=cs,
interpol_dispatcher=bfd,
n3lo_ad_variation=new_theory.n3lo_ad_variation,
matching_order=new_theory.matching_order
if new_theory.matching_order is not None
else new_theory.order,
matching_order=new_theory.matching_order,
)

with EKO.create(path) as builder:
Expand Down
2 changes: 1 addition & 1 deletion src/eko/runner/parts.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def evolve_configs(eko: EKO) -> dict:
n3lo_ad_variation=tcard.n3lo_ad_variation,
matching_order=tcard.matching_order
if tcard.matching_order is not None
else tcard.order,
else (tcard.order[0] - 1, tcard.order[1]),
)


Expand Down

0 comments on commit 9e65037

Please sign in to comment.