DOC: Update documentation for 3.4.x

(cherry picked from commit b0eded878d)
This commit is contained in:
Rohit Goswami
2023-04-06 19:20:41 +00:00
committed by Antonio Sanchez
parent d4c24eca96
commit 6f9bffe8dd
4 changed files with 6 additions and 4 deletions

View File

@@ -66,7 +66,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_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,