Log Message: |
Remove the "const from the alpha argument of
Paso_SystemMatrix_MatrixVector_CSR_OFFSET0()
in order to match it's declaration.
This is C, and the double is passed by value, so alpha is
by nature const. This is C code, not C++. The const keyword has no place in C.
|