Skip to content
Snippets Groups Projects
Commit edbd587a authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

fix compiling error

parent be8830fe
No related branches found
No related tags found
No related merge requests found
...@@ -161,7 +161,7 @@ void checkGlobalRectangularMatrixInterfaceMPI(T_MATRIX &m, T_VECTOR &v) ...@@ -161,7 +161,7 @@ void checkGlobalRectangularMatrixInterfaceMPI(T_MATRIX &m, T_VECTOR &v)
// Multiply by a vector // Multiply by a vector
set(v, 1); set(v, 1);
T_VECTOR y(m.getNRows()); T_VECTOR y(m.getNumberOfRows());
matMult(m, v, y); matMult(m, v, y);
ASSERT_NEAR(6.*sqrt(6.), norm2(y), 1.e-10); ASSERT_NEAR(6.*sqrt(6.), norm2(y), 1.e-10);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment