get_D_Coeffs.hpp
Go to the documentation of this file.
1 #ifndef GET_D_COEFFS_H
2 #define GET_D_COEFFS_H
3 #include <petscksp.h>
4 
5 namespace SPE
6 {
16  PetscInt get_D_Coeffs(
17  const PetscScalar s[],
18  const PetscInt &n,
19  Vec &output,
20  const PetscInt &d=2
21  );
22 }
23 #endif
Namespace containing all functions and data classes for this solver.
Definition: Ax_b.hpp:5
PetscInt get_D_Coeffs(const PetscScalar s[], const PetscInt &n, Vec &output, const PetscInt &d=2)
Solve arbitrary stencil points s of length N with order of derivatives d<N can be obtained from equat...
Definition: get_D_Coeffs.cpp:11