DOLFIN-X
DOLFIN-X C++ interface
discreteoperators.h
1 // Copyright (C) 2015 Garth N. Wells
2 //
3 // This file is part of DOLFINX (https://www.fenicsproject.org)
4 //
5 // SPDX-License-Identifier: LGPL-3.0-or-later
6 
7 #pragma once
8 
9 #include <petscmat.h>
10 
11 namespace dolfinx::fem
12 {
13 class FunctionSpace;
14 
34 Mat create_discrete_gradient(const fem::FunctionSpace& V0,
35  const fem::FunctionSpace& V1);
36 } // namespace dolfinx::fem
Finite element method functionality.
Definition: assemble_matrix_impl.h:24
Mat create_discrete_gradient(const fem::FunctionSpace &V0, const fem::FunctionSpace &V1)
Definition: discreteoperators.cpp:21