MCPcopy Create free account
hub / github.com/boutproject/BOUT-dev / PVBBDPSol

Function PVBBDPSol

externalpackages/PVODE/precon/pvbbdpre.cpp:274–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272 ******************************************************************/
273
274int 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

Callers

nothing calls this directly

Calls 2

N_VScaleFunction · 0.85
BandBacksolveFunction · 0.85

Tested by

no test coverage detected