fixed wrong argument order in force_ufunc
This commit is contained in:
parent
ab6c0b3d14
commit
0de1c3e14e
|
@ -30,12 +30,12 @@ interaction_ufunc_force
|
||||||
, void * data)
|
, void * data)
|
||||||
{
|
{
|
||||||
char * in = args[0]
|
char * in = args[0]
|
||||||
, * out = args[1]
|
, * raw_coefficients = args[1]
|
||||||
, * raw_coefficients = args[2];
|
, * out = args[2];
|
||||||
npy_intp n = dimensions[0];
|
npy_intp n = dimensions[0];
|
||||||
npy_intp in_step = steps[0]
|
npy_intp in_step = steps[0]
|
||||||
, out_step = steps[1]
|
, raw_coefficients_steps = steps[1]
|
||||||
, raw_coefficients_steps = steps[2];
|
, out_step = steps[2];
|
||||||
|
|
||||||
npy_intp i;
|
npy_intp i;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user