| 272 | ******************************************************************/ |
| 273 | |
| 274 | int PVBBDPSol(integer N, real t, N_Vector y, N_Vector fy, |
| 275 | N_Vector vtemp, real gamma, N_Vector ewt, |
| 276 | real delta, long int *nfePtr, N_Vector r, |
| 277 | int lr, void *P_data, N_Vector z) |
| 278 | { |
| 279 | PVBBDData pdata; |
| 280 | |
| 281 | pdata = (PVBBDData)P_data; |
| 282 | |
| 283 | /* Copy r to z, then do backsolve and return */ |
| 284 | N_VScale(ONE, r, z); |
| 285 | BandBacksolve(savedP, pivots, z); |
| 286 | |
| 287 | return(0); |
| 288 | } |
| 289 | |
| 290 | #undef f_data |
| 291 | #undef mudq |
nothing calls this directly
no test coverage detected