Skip to content
Snippets Groups Projects
Commit 5568a800 authored by Elias Pipping's avatar Elias Pipping Committed by pipping
Browse files

Use mv() instead of umv()

[[Imported from SVN: r6598]]
parent 8d8aae19
Branches
No related tags found
No related merge requests found
...@@ -74,8 +74,7 @@ ...@@ -74,8 +74,7 @@
: *matrix_; : *matrix_;
DiscFuncType tmp(f.size()); DiscFuncType tmp(f.size());
tmp = 0; A.mv(f, tmp);
A.umv(f, tmp);
double const ret = f*tmp; double const ret = f*tmp;
...@@ -100,8 +99,7 @@ ...@@ -100,8 +99,7 @@
const double tol=1e-10) const double tol=1e-10)
{ {
DiscFuncType tmp(u.size()); DiscFuncType tmp(u.size());
tmp = 0; A.mv(u, tmp);
A.umv(u, tmp);
double const ret = u*tmp; double const ret = u*tmp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment