Basix 0.9.0.0

Home     Installation     Demos     C++ docs     Python docs

e-crouzeix-raviart.h
1 // Copyright (c) 2020 Chris Richardson
2 // FEniCS Project
3 // SPDX-License-Identifier: MIT
4 
5 #pragma once
6 
7 #include "cell.h"
8 #include "finite-element.h"
9 #include <concepts>
10 
11 namespace basix::element
12 {
13 
21 template <std::floating_point T>
22 FiniteElement<T> create_cr(cell::type celltype, int degree, bool discontinuous);
23 
24 } // namespace basix::element
type
Cell type.
Definition: cell.h:21
Interfaces for creating finite elements.
Definition: e-brezzi-douglas-marini.h:13
FiniteElement< T > create_cr(cell::type celltype, int degree, bool discontinuous)
Definition: e-crouzeix-raviart.cpp:19