From 90ed4ab97a7d9d93decc08450c1a2d0bb392f53c Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Fri, 16 Sep 2022 22:21:14 +0200 Subject: [PATCH] [ci] Fixed link checker. --- MathLib/LinAlg/PETSc/PETScMatrix.h | 6 +++--- scripts/ci/jobs/web.yml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MathLib/LinAlg/PETSc/PETScMatrix.h b/MathLib/LinAlg/PETSc/PETScMatrix.h index 04ec1cc9025..f72ea253fcb 100644 --- a/MathLib/LinAlg/PETSc/PETScMatrix.h +++ b/MathLib/LinAlg/PETSc/PETScMatrix.h @@ -61,7 +61,7 @@ public: /*! \brief Perform MPI collection of assembled entries in buffer - \param asm_type Assmebly type, either MAT_FLUSH_ASSEMBLY + \param asm_type Assembly type, either MAT_FLUSH_ASSEMBLY or MAT_FINAL_ASSEMBLY */ void finalizeAssembly(const MatAssemblyType asm_type = MAT_FINAL_ASSEMBLY) @@ -140,7 +140,7 @@ public: For the setting of Dirichlet boundary condition in PETSc, please refer to the - [PETSc:Documentation:FAQ](https://www.petsc.org/release/faq/#when-solving-a-system-with-dirichlet-boundary-conditions-i-can-use-matzerorows-to-eliminate-the-dirichlet-rows-but-this-results-in-a-non-symmetric-system-how-can-i-apply-dirichlet-boundary-conditions-but-keep-the-matrix-symmetric"). + [PETSc:Documentation:FAQ](https://petsc.org/release/faq/#when-solving-a-system-with-dirichlet-boundary-conditions-i-can-use-matzerorows-to-eliminate-the-dirichlet-rows-but-this-results-in-a-non-symmetric-system-how-can-i-apply-dirichlet-boundary-conditions-but-keep-the-matrix-symmetric). */ template <class T_DENSE_MATRIX> void add(RowColumnIndices<PetscInt> const& indices, @@ -272,7 +272,7 @@ void PETScMatrix::add(std::vector<PetscInt> const& row_pos, /*! \brief General interface for the matrix assembly. \param mat The matrix to be finalized. - \param asm_type Assmebly type, either MAT_FLUSH_ASSEMBLY + \param asm_type Assembly type, either MAT_FLUSH_ASSEMBLY or MAT_FINAL_ASSEMBLY. */ bool finalizeMatrixAssembly( diff --git a/scripts/ci/jobs/web.yml b/scripts/ci/jobs/web.yml index 57b4821a711..e6b7b20642e 100644 --- a/scripts/ci/jobs/web.yml +++ b/scripts/ci/jobs/web.yml @@ -22,6 +22,7 @@ check web links: --ignore-url='https://gitlab.opengeosys.org/ogs/ogs/-/merge_requests/new' --ignore-url='https://ogsstorage.blob.core.windows.net/binaries/ogs6' --ignore-url='/css/all.css' + --ignore-url='www.grs.de' http://localhost:1313 - kill $! -- GitLab