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

[cleanup][release] Calm down implicit conversion warnigs


(cherry picked from commit 6121bbd9)
Signed-off-by: default avatarCarsten Gräser <graeser@dune-project.org>
parent 3bfc0b0a
No related branches found
No related tags found
No related merge requests found
......@@ -161,9 +161,10 @@ void test_mult(FieldMatrix<K, n, m>& A,
A.mmv(v,f);
A.mmtv(f,v);
A.mmhv(f,v);
A.usmv(0.5,v,f);
A.usmtv(0.5,f,v);
A.usmhv(0.5,f,v);
K scalar = (K)(0.5);
A.usmv(scalar,v,f);
A.usmtv(scalar,f,v);
A.usmhv(scalar,f,v);
}
......
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