Skip to content

Commit

Permalink
rust: Fix py callback signature
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Jul 17, 2024
1 parent 12bb7fe commit 31f5d88
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/eko/evolution_operator/quad_ker.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@ def select_singlet_element(ker, mode0, mode1):
nb.types.double, # im_n
nb.types.double, # re_jac
nb.types.double, # im_jac
nb.types.uint, # order_qcd
nb.types.uintc, # order_qcd
nb.types.bool_, # is_singlet
nb.types.uint, # mode0
nb.types.uint, # mode1
nb.types.uint, # nf
nb.types.uintc, # mode0
nb.types.uintc, # mode1
nb.types.uintc, # nf
nb.types.bool_, # is_log
nb.types.double, # logx
nb.types.CPointer(nb.types.double), # areas_raw
nb.types.uint, # areas_x
nb.types.uint, # areas_y
nb.types.uintc, # areas_x
nb.types.uintc, # areas_y
nb.types.double, # L
nb.types.uint, # method_num
nb.types.uintc, # method_num
nb.types.double, # as1
nb.types.double, # as0
nb.types.uint, # ev_op_iterations
nb.types.uint, # ev_op_max_order_qcd
nb.types.uint, # sv_mode_num
nb.types.uintc, # ev_op_iterations
nb.types.uintc, # ev_op_max_order_qcd
nb.types.uintc, # sv_mode_num
nb.types.bool_, # is_threshold
nb.types.double, # Lsv
)
Expand Down

0 comments on commit 31f5d88

Please sign in to comment.