Skip to content

Commit

Permalink
rust: Avoid variable alias
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Aug 9, 2024
1 parent 25a3cdd commit 44afd2b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/eko/evolution_operator/quad_ker.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def cb_quad_ker_qcd(
areas_x,
areas_y,
_L,
method_num,
ev_method,
as1,
as0,
ev_op_iterations,
Expand All @@ -105,7 +105,6 @@ def cb_quad_ker_qcd(
# combute basis functions
areas = nb.carray(areas_raw, (areas_x, areas_y))
pj = interpolation.evaluate_grid(n, is_log, logx, areas)
method = method_num
order = (order_qcd, 0)
ev_op_max_order = (ev_op_max_order_qcd, 0)
if is_singlet:
Expand All @@ -120,7 +119,7 @@ def cb_quad_ker_qcd(
# construct eko
ker = s.dispatcher(
order,
method,
ev_method,
gamma_singlet,
as1,
as0,
Expand All @@ -144,7 +143,7 @@ def cb_quad_ker_qcd(
# construct eko
ker = ns.dispatcher(
order,
method,
ev_method,
gamma_ns,
as1,
as0,
Expand Down Expand Up @@ -234,7 +233,7 @@ def cb_quad_ker_ome(
areas_x,
areas_y,
L,
method_num,
backward_method,
as1,
_as0,
_ev_op_iterations,
Expand All @@ -250,7 +249,6 @@ def cb_quad_ker_ome(
# compute basis functions
areas = nb.carray(areas_raw, (areas_x, areas_y))
pj = interpolation.evaluate_grid(n, is_log, logx, areas)
backward_method = method_num
order = (order_qcd, 0)
if is_singlet:
indices = {21: 0, 100: 1, 90: 2}
Expand Down

0 comments on commit 44afd2b

Please sign in to comment.