@@ -57,7 +57,7 @@ extern void dxdotdp_explicit_rowvals_model_events_py(SUNMatrixWrapper &rowvals);
5757extern void dxdotdx_explicit_model_events_py (realtype *dxdotdx_explicit, const realtype t, const realtype *x, const realtype *p, const realtype *k, const realtype *h, const realtype *w);
5858extern void dxdotdx_explicit_colptrs_model_events_py (SUNMatrixWrapper &colptrs);
5959extern void dxdotdx_explicit_rowvals_model_events_py (SUNMatrixWrapper &rowvals);
60- extern void dydx_model_events_py (realtype *dydx, const realtype t, const realtype *x, const realtype *p, const realtype *k, const realtype *h, const realtype *w, const realtype *dwdx );
60+ extern void dydx_model_events_py (realtype *dydx, const realtype t, const realtype *x, const realtype *p, const realtype *k, const realtype *h, const realtype *w);
6161extern void dydp_model_events_py (realtype *dydp, const realtype t, const realtype *x, const realtype *p, const realtype *k, const realtype *h, const int ip, const realtype *w, const realtype *tcl, const realtype *dtcldp, const realtype *spl, const realtype *sspl);
6262extern void dzdx_model_events_py (realtype *dzdx, const int ie, const realtype t, const realtype *x, const realtype *p, const realtype *k, const realtype *h);
6363
@@ -319,8 +319,8 @@ class Model_model_events_py : public amici::Model_ODE {
319319 }
320320
321321
322- void fdydx (realtype *dydx, const realtype t, const realtype *x, const realtype *p, const realtype *k, const realtype *h, const realtype *w, const realtype *dwdx ) override {
323- dydx_model_events_py (dydx, t, x, p, k, h, w, dwdx );
322+ void fdydx (realtype *dydx, const realtype t, const realtype *x, const realtype *p, const realtype *k, const realtype *h, const realtype *w) override {
323+ dydx_model_events_py (dydx, t, x, p, k, h, w);
324324 }
325325
326326
0 commit comments