Skip to content

Commit

Permalink
Fix CVodeGetSensDky error message (#2644)
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl authored Feb 15, 2025
1 parent ff9e7af commit 66552d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver_cvodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ void CVodeSolver::getSensDky(realtype const t, int const k) const {
int status
= CVodeGetSensDky(solver_memory_.get(), t, k, sx_.getNVectorArray());
if (status != CV_SUCCESS)
throw CvodeException(status, "CVodeGetSens");
throw CvodeException(status, "CVodeGetSensDky");
}

void CVodeSolver::getDkyB(realtype const t, int const k, int const which)
Expand Down

0 comments on commit 66552d7

Please sign in to comment.