Skip to content

Commit

Permalink
rust: Fix typo, add explicit nopython
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed May 29, 2024
1 parent 6cba59b commit c11f6c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/eko/evolution_operator/quad_ker.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def select_singlet_element(ker, mode0, mode1):
nb.types.bool_, # is_threshold
),
cache=True,
nopython=True,
)
def cb_quad_ker_qcd(
re_gamma_raw,
Expand Down Expand Up @@ -103,7 +104,7 @@ def cb_quad_ker_qcd(
areas = nb.carray(areas_raw, (areas_x, areas_y))
pj = interpolation.evaluate_grid(n, is_log, logx, areas)
# TODO recover parameters
method = "iterate-expanded"
method = "iterate-exact"
sv_mode = sv.Modes.exponentiated
order = (order_qcd, 0)
ev_op_max_order = (ev_op_max_order_qcd, 0)
Expand Down

0 comments on commit c11f6c4

Please sign in to comment.