Skip to content
Snippets Groups Projects
Commit a10c3595 authored by Jonathan Youett's avatar Jonathan Youett
Browse files

make compile: x_ is a pointer not an object

parent b867201a
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ public: ...@@ -48,7 +48,7 @@ public:
//! Perform one iteration //! Perform one iteration
virtual void iterate() { virtual void iterate() {
VectorType negativeGradient=*rhs_; VectorType negativeGradient=*rhs_;
mat_->mmv(this->x_,negativeGradient); mat_->mmv(*this->x_,negativeGradient);
computeGeneralizedCP(negativeGradient); computeGeneralizedCP(negativeGradient);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment