Commit b7123928 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixing documentation for SparseMatrix[,View]::forRows.

parent 4351c45f
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -793,7 +793,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator >
      /**
       * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end).
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrix::forElements where more than one thread can be mapped to each row.
       *
       * \tparam Function is type of the lambda function.
       *
@@ -818,7 +819,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator >
      /**
       * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end) for constant instances.
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrix::forElements where more than one thread can be mapped to each row.
       *
       * \tparam Function is type of the lambda function.
       *
@@ -843,7 +845,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator >
      /**
       * \brief Method for parallel iteration over all matrix rows.
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrix::forAllElements where more than one thread can be mapped to each row.
       *
       * \tparam Function is type of the lambda function.
       *
@@ -866,7 +869,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator >
      /**
       * \brief Method for parallel iteration over all matrix rows for constant instances.
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrix::forAllElements where more than one thread can be mapped to each row.
       *
       * \tparam Function is type of the lambda function.
       *
+9 −4
Original line number Diff line number Diff line
@@ -573,7 +573,9 @@ class SparseMatrixView : public MatrixView< Real, Device, Index >
      /**
       * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end).
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrixView::forElements where more than one thread can be mapped to each row.

       *
       * \tparam Function is type of the lambda function.
       *
@@ -598,7 +600,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index >
      /**
       * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end) for constant instances.
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrixView::forElements where more than one thread can be mapped to each row.
       *
       * \tparam Function is type of the lambda function.
       *
@@ -623,7 +626,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index >
      /**
       * \brief Method for parallel iteration over all matrix rows.
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrixView::forAllElements where more than one thread can be mapped to each row.
       *
       * \tparam Function is type of the lambda function.
       *
@@ -646,7 +650,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index >
      /**
       * \brief Method for parallel iteration over all matrix rows for constant instances.
       *
       * In each row, given lambda function is performed.
       * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method
       * \ref SparseMatrixView::forAllElements where more than one thread can be mapped to each row.
       *
       * \tparam Function is type of the lambda function.
       *