| 1138 | ***********************************************************************/ |
| 1139 | |
| 1140 | static boole CVEwtSet(CVodeMem cv_mem, real *rtol, void *atol, int tol_type, |
| 1141 | N_Vector ycur, N_Vector ewtvec, integer neq) |
| 1142 | { |
| 1143 | switch(tol_type) { |
| 1144 | case SS: return(CVEwtSetSS(cv_mem, rtol, (real *)atol, ycur, ewtvec, neq)); |
| 1145 | case SV: return(CVEwtSetSV(cv_mem, rtol, (N_Vector)atol, ycur, ewtvec, neq)); |
| 1146 | } |
| 1147 | return TRUE; |
| 1148 | } |
| 1149 | |
| 1150 | /*********************** CVEwtSetSS ********************************* |
| 1151 |
no test coverage detected