Skip to content
Snippets Groups Projects
Commit 796edf7c authored by Carsten Gräser's avatar Carsten Gräser
Browse files

Added tests for operators += and -= and axpy.

[[Imported from SVN: r5571]]
parent 29b056b0
No related branches found
No related tags found
No related merge requests found
......@@ -220,7 +220,27 @@ void test_matrix()
// print vector
std::cout << f << std::endl;
A.axpy( K( 1 ), A );
{
FieldMatrix<K,n,m> A2 = A;
A2 *= 2;
FieldMatrix<K,n,m> B = A;
B += A;
B -= A2;
if (std::abs(B.infinity_norm()) > 1e-12)
DUNE_THROW(FMatrixError,"Operator +=/-= test failed!");
}
{
FieldMatrix<K,n,m> A3 = A;
A3 *= 3;
FieldMatrix<K,n,m> B = A;
B.axpy( K( 2 ), B );
B -= A3;
if (std::abs(B.infinity_norm()) > 1e-12)
DUNE_THROW(FMatrixError,"Axpy test failed!");
}
}
int test_determinant()
......
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