Skip to content
Snippets Groups Projects
Commit 9de18242 authored by Oliver Sander's avatar Oliver Sander
Browse files

test _all_ norms provided by FieldVector. Please merge to release branch

[[Imported from SVN: r5859]]
parent 805b1292
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,13 @@ protected:
FieldVector<ct,d> w(2);
bool b;
// Test whether the norm methods compile
(w+v).two_norm();
(w+v).two_norm2();
(w+v).one_norm();
(w+v).one_norm_real();
(w+v).infinity_norm();
(w+v).infinity_norm_real();
b = (w != v);
b = (w == 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