The finite element method using deal.II - 2021/2022
main.cc
Go to the documentation of this file.
1 #include "poisson.h"
2 
3 int
4 main()
5 {
7  Poisson laplace_problem;
8  laplace_problem.run();
9  return 0;
10 }
Poisson::run
void run()
Definition: poisson.cc:133
deallog
LogStream deallog
LogStream::depth_console
unsigned int depth_console(const unsigned int n)
Poisson
Solve the Poisson problem, with Dirichlet or Neumann boundary conditions, on all geometries that can ...
Definition: poisson.h:55
main
int main()
Definition: main.cc:4