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

Function N_VProd

externalpackages/PVODE/source/nvector.cpp:294–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

292
293
294void N_VProd(N_Vector x, N_Vector y, N_Vector z)
295{
296 integer i, N;
297 real *xd, *yd, *zd;
298
299 N = x->length;
300 xd = x->data;
301 yd = y->data;
302 zd = z->data;
303
304 for (i=0; i < N; i++)
305 *zd++ = (*xd++) * (*yd++);
306}
307
308
309void N_VDiv(N_Vector x, N_Vector y, N_Vector z)

Callers 4

SpgmrSolveFunction · 0.85
CVDiagSetupFunction · 0.85
CVDiagSolveFunction · 0.85
CVHandleFailureFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected