Skip to content

Commit

Permalink
try to fix compiler error for CV_JCallback
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@22334 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
niklwors committed Sep 17, 2014
1 parent 3db3d33 commit 4a4b649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimulationRuntime/cpp/Solver/CVode/CVode.h
Expand Up @@ -146,7 +146,7 @@ class Cvode
static int CV_ZerofCallback(double t, N_Vector y, double *zeroval, void *user_data);

// Functions for Coloured Jacobian
static int CV_JCallback(long int N, double t, N_Vector y, N_Vector fy, DlsMat Jac,void *user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3);
static int CV_JCallback(long int N, realtype t, N_Vector y, N_Vector fy, DlsMat Jac,void *user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3);
int calcJacobian(double t, long int N, N_Vector fHelp, N_Vector errorWeight, N_Vector jthcol, double* y, N_Vector fy, DlsMat Jac);
void initializeColoredJac();

Expand Down

0 comments on commit 4a4b649

Please sign in to comment.