Skip to content

Commit

Permalink
Fix matching renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Jul 22, 2024
1 parent d4a3f71 commit 7f079bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eko/evolution_operator/operator_matrix_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def matching_method(s: InversionMethod) -> MatchingMethods:
"""
if s is not None:
return MatchingMethods[s.value.upper()]
return MatchingMethods["BACKWARD_" + s.value.upper()]
return MatchingMethods.FORWARD


Expand Down

0 comments on commit 7f079bc

Please sign in to comment.