| 292 | |
| 293 | |
| 294 | void 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 | |
| 309 | void N_VDiv(N_Vector x, N_Vector y, N_Vector z) |
no outgoing calls
no test coverage detected