fixed wrong argument order in force_ufunc

This commit is contained in:
Daniel Knüttel 2019-07-08 16:05:04 +02:00
parent ab6c0b3d14
commit 0de1c3e14e
1 changed files with 4 additions and 4 deletions

View File

@ -30,12 +30,12 @@ interaction_ufunc_force
, void * data)
{
char * in = args[0]
, * out = args[1]
, * raw_coefficients = args[2];
, * raw_coefficients = args[1]
, * out = args[2];
npy_intp n = dimensions[0];
npy_intp in_step = steps[0]
, out_step = steps[1]
, raw_coefficients_steps = steps[2];
, raw_coefficients_steps = steps[1]
, out_step = steps[2];
npy_intp i;