12 lines
302 B
C
12 lines
302 B
C
|
|
||
|
/* Include Guard */
|
||
|
#ifndef CVE_INCLUDE_GUARD_SWEEP_
|
||
|
#define CVE_INCLUDE_GUARD_SWEEP_
|
||
|
|
||
|
void rowSweep(const double *A, const int nrow, const int ncol,
|
||
|
const char* op,
|
||
|
const double *v, // vector of length nrow
|
||
|
double *C);
|
||
|
|
||
|
#endif /* CVE_INCLUDE_GUARD_SWEEP_ */
|