From 49504cbb7f214b4135c19e7dde6357167c10de95 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 17 Jan 2018 21:04:04 -0700 Subject: [PATCH] Wrap comments. --- source/lac/petsc_vector_base.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/lac/petsc_vector_base.cc b/source/lac/petsc_vector_base.cc index 763e6adf7e..0b567561f0 100644 --- a/source/lac/petsc_vector_base.cc +++ b/source/lac/petsc_vector_base.cc @@ -334,10 +334,13 @@ namespace PETScWrappers PetscScalar result; - //For complex vectors, VecDot() computes + // For complex vectors, VecDot() computes // val = (x,y) = y^H x, - //where y^H denotes the conjugate transpose of y. - //Note that this corresponds to the usual "mathematicians" complex inner product where the SECOND argument gets the complex conjugate. + // where y^H denotes the conjugate transpose of y. + // Note that this corresponds to the usual "mathematicians'" + // complex inner product where the SECOND argument gets the + // complex conjugate, which is also how we document this + // operation. const PetscErrorCode ierr = VecDot (vec.vector, vector, &result); AssertThrow (ierr == 0, ExcPETScError(ierr)); -- 2.39.5