aboutsummaryrefslogtreecommitdiff
path: root/doc/examples/matrixfree_cg.cpp
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-02-26 04:02:30 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-02-26 04:02:30 +0000
commit6ed47ba57d52fe5179586e410db9cb893be711cd (patch)
treefb979fb4cf4f8052c8cc66b1ec9516d91fcd859b /doc/examples/matrixfree_cg.cpp
parent02f44805248634694d5fa911c91aaba375279d32 (diff)
parentbc0f5df265caa21a2120c22453655a7fcc941991 (diff)
downloadeigen-6ed47ba57d52fe5179586e410db9cb893be711cd.tar.gz
Change-Id: Icbf1e7e38b968ba0f18b25855d89d57751f3f1ee
Diffstat (limited to 'doc/examples/matrixfree_cg.cpp')
-rw-r--r--doc/examples/matrixfree_cg.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/matrixfree_cg.cpp b/doc/examples/matrixfree_cg.cpp
index 6a205aea3..74699381c 100644
--- a/doc/examples/matrixfree_cg.cpp
+++ b/doc/examples/matrixfree_cg.cpp
@@ -67,6 +67,7 @@ namespace internal {
// This method should implement "dst += alpha * lhs * rhs" inplace,
// however, for iterative solvers, alpha is always equal to 1, so let's not bother about it.
assert(alpha==Scalar(1) && "scaling is not implemented");
+ EIGEN_ONLY_USED_FOR_DEBUG(alpha);
// Here we could simply call dst.noalias() += lhs.my_matrix() * rhs,
// but let's do something fancier (and less efficient):