LLNL/sundials

Documentation for CVodeCreateB() is missing pointer

tepperly opened this issue · 3 comments

Looking here: https://sundials.readthedocs.io/en/latest/cvodes/Usage/ADJ.html#c.CVodeCreateB

The signature is missing the * before which. It should be:

int CVodeCreateB(void *cvode_mem, int lmmB, int *which)

Similarly, https://sundials.readthedocs.io/en/latest/cvodes/Usage/ADJ.html#c.CVodeGetB , CVodeGetB is missing a pointer in front of tret. It should be:

int CVodeGetB(void *cvode_mem, int which, realtype *tret, N_Vector yB);

Similarly, https://sundials.readthedocs.io/en/latest/cvodes/Usage/ADJ.html#c.CVodeF , CVodeF is missing the pointer in front of ncheck. It should be:

int CVodeF(void *cvode_mem, realtype tout, N_Vector yret, realtype *tret, int itask, int *ncheck)

Fixed in #325.