Init_Mat.hpp
Go to the documentation of this file.
1 #ifndef INIT_MAT_H
2 #define INIT_MAT_H
3 #include <petscksp.h>
4 namespace SPE{
9  int Init_Mat(
10  Mat &A,
11  const PetscInt &n
12  );
17  int Init_Mat(
18  Mat &A,
19  const PetscInt &m,
20  const PetscInt &n
21  );
22 }
23 
24 #endif
Namespace containing all functions and data classes for this solver.
Definition: Ax_b.hpp:5
int Init_Mat(Mat &A, const PetscInt &n)
Initialize a Matrix A to be of size nxn.
Definition: Init_Mat.cpp:3