Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
matekelemen committed Aug 5, 2024
1 parent 2fa35b7 commit e86c256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/mcgs/mcgs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ struct SolveSettings
///
/// @param pSolution Solution array @f$x_j@f$. Size must be at least equal to the number of @ref CSRAdaptor::columnCount "columns" in @p rMatrix.
/// @param rMatrix Left hand side square matrix in compressed sparse row format @f$a_{ij}@f$.
/// @param pRHS Right hand side vector @f$b_i@f$. Size must be at least equal to the number of @ref CSRAdaptor::rowCount "rowCount" in @p rMatrix.
/// @param pRHS Right hand side vector @f$b_i@f$. Size must be at least equal to the number of @ref CSRAdaptor::rowCount "rows" in @p rMatrix.
/// @param settings @ref SolveSettings "algorithmic parameters and other settings" to apply during relaxation.
///
/// @return @ref MCGS_SUCCESS if successful, otherwise @ref MCGS_FAILURE.
Expand Down Expand Up @@ -463,7 +463,7 @@ int solve(TValue* pSolution,
///
/// @param pSolution Solution array @f$x_j@f$. Size must be at least equal to the number of @ref CSRAdaptor::columnCount "columns" in @p rMatrix.
/// @param rMatrix Left hand side square matrix in compressed sparse row format @f$a_{ij}@f$.
/// @param pRHS Right hand side vector @f$b_i@f$. Size must be at least equal to the number of @ref CSRAdaptor::rowCount "rowCount" in @p rMatrix.
/// @param pRHS Right hand side vector @f$b_i@f$. Size must be at least equal to the number of @ref CSRAdaptor::rowCount "rows" in @p rMatrix.
/// @param pPartition Contiguous partition of the input matrix.
/// @param settings @ref SolveSettings "algorithmic parameters and other settings" to apply during relaxation.
///
Expand Down

0 comments on commit e86c256

Please sign in to comment.