Skip to content
Snippets Groups Projects
Commit f7460248 authored by Christian Engwer's avatar Christian Engwer
Browse files

[test]

also test assignment of fieldmatrix from densematrix
parent d3115036
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,9 @@ void test_matrix()
// assign to FieldMatrix
DUNE_UNUSED FieldMatrix<K,n,n> AFM = FieldMatrix<K,n,n>(A);
DUNE_UNUSED FieldMatrix<K,n,n> AFM2 = A;
DUNE_UNUSED FieldMatrix<K,n,n> AFM3;
AFM3 = A;
}
template<class K, int n>
......
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