Basix
e-bubble.h
1// Copyright (c) 2020 Matthew Scroggs
2// FEniCS Project
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
7#include "cell.h"
8#include "finite-element.h"
9
10namespace basix::element
11{
18FiniteElement create_bubble(cell::type celltype, int degree,
19 bool discontinuous);
20} // namespace basix::element
type
Cell type.
Definition: cell.h:20
Interfaces for creating finite elements.
Definition: e-brezzi-douglas-marini.h:12
FiniteElement create_bubble(cell::type celltype, int degree, bool discontinuous)
Definition: e-bubble.cpp:18