DOC: Update documentation for 3.4.x

This commit is contained in:
Rohit Goswami
2023-04-06 19:20:41 +00:00
committed by Rasmus Munk Larsen
parent b0f877f8e0
commit b0eded878d
4 changed files with 5 additions and 3 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,