Tabulation Project basix
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 #include <string>
10 
11 namespace basix
12 {
18 FiniteElement create_lagrange(cell::type celltype, int degree,
19  const std::string& name = std::string());
20 
26 FiniteElement create_dlagrange(cell::type celltype, int degree,
27  const std::string& name = std::string());
28 } // namespace basix
type
Cell type.
Definition: cell.h:21
basix
Definition: basix.h:7
FiniteElement create_dlagrange(cell::type celltype, int degree, const std::string &name=std::string())
Definition: lagrange.cpp:186
int degree(int handle)
Degree.
Definition: basix.cpp:50
FiniteElement create_lagrange(cell::type celltype, int degree, const std::string &name=std::string())
Definition: lagrange.cpp:16