Note: this is documentation for an old release. View the latest documentation at docs.fenicsproject.org/v0.2.0/v0.9.0/cpp
Home Installation C++ docs Python docs
lagrange.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 
10 namespace basix
11 {
17 FiniteElement create_lagrange(cell::type celltype, int degree);
18 
24 FiniteElement create_dlagrange(cell::type celltype, int degree);
25 
30 FiniteElement create_dpc(cell::type celltype, int degree);
31 } // namespace basix
basix::create_dlagrange
FiniteElement create_dlagrange(cell::type celltype, int degree)
Definition: lagrange.cpp:158
basix::cell::type
type
Cell type.
Definition: cell.h:16
basix::create_lagrange
FiniteElement create_lagrange(cell::type celltype, int degree)
Definition: lagrange.cpp:21
basix::create_dpc
FiniteElement create_dpc(cell::type celltype, int degree)
Definition: lagrange.cpp:203
basix
Placeholder.
Definition: brezzi-douglas-marini.h:9