Basix
polyset.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 <Eigen/Dense>
9 #include <vector>
10 
17 namespace basix::polyset
18 {
43 std::vector<Eigen::ArrayXXd> tabulate(cell::type celltype, int d, int n,
44  const Eigen::ArrayXXd& x);
45 
51 int dim(cell::type cell, int d);
52 
53 } // namespace basix::polyset
type
Cell type.
Definition: cell.h:21
Definition: polyset.h:18
std::vector< Eigen::ArrayXXd > tabulate(cell::type celltype, int d, int n, const Eigen::ArrayXXd &x)
Definition: polyset.cpp:700
int dim(cell::type cell, int d)
Definition: polyset.cpp:724