diff --git a/MathLib/LinAlg/PETSc/PETScMatrix.h b/MathLib/LinAlg/PETSc/PETScMatrix.h index 974fa2b931b6bc5bb8008c4085aca4d10ae46c96..2c3f19543ac232aa54d5fec4b15b2a1e0c8f5854 100644 --- a/MathLib/LinAlg/PETSc/PETScMatrix.h +++ b/MathLib/LinAlg/PETSc/PETScMatrix.h @@ -17,11 +17,10 @@ #include <string> #include <vector> +#include "MathLib/LinAlg/RowColumnIndices.h" #include "PETScMatrixOption.h" #include "PETScVector.h" -#include "MathLib/LinAlg/RowColumnIndices.h" - typedef Mat PETSc_Mat; namespace MathLib @@ -140,8 +139,8 @@ public: ghost rows of the global matrix are assembled and kept for linear solver. For the setting of Dirichlet boundary condition - in PETSc, please refer to - <a href="http://www.mcs.anl.gov/petsc/documentation/faq.html#redistribute">PETSc:Documentation:FAQ</a> + 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"). */ template <class T_DENSE_MATRIX> void add(RowColumnIndices<PetscInt> const& indices, diff --git a/NumLib/ODESolver/NonlinearSolver.cpp b/NumLib/ODESolver/NonlinearSolver.cpp index 5e07e66615c5a0c5169715203b6df1777cccf335..5e027c63ace9f877e3508142317f9e3112b56e4b 100644 --- a/NumLib/ODESolver/NonlinearSolver.cpp +++ b/NumLib/ODESolver/NonlinearSolver.cpp @@ -312,7 +312,7 @@ NonlinearSolverStatus NonlinearSolver<NonlinearSolverTag::Newton>::solve( { // TODO could be solved in a better way // cf. - // http://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Vec/VecWAXPY.html + // https://www.petsc.org/release/docs/manualpages/Vec/VecWAXPY.html // Copy pointers, replace the one for the given process id. std::vector<GlobalVector*> x_new{x};