21 #ifndef bempp_types_hpp
22 #define bempp_types_hpp
25 #include "../fiber/types.hpp"
26 #include "../grid/geometry_type.hpp"
27 #include "../grid/index_set.hpp"
32 using Fiber::CallVariant;
33 using Fiber::TEST_TRIAL;
34 using Fiber::TRIAL_TEST;
36 using Fiber::ALL_DOFS;
38 typedef int ElementVariant;
39 typedef int EntityIndex;
40 typedef int GlobalDofIndex;
41 typedef int FlatLocalDofIndex;
42 typedef Fiber::LocalDofIndex LocalDofIndex;
49 LocalDof(EntityIndex ei, LocalDofIndex ldi) :
50 entityIndex(ei), dofIndex(ldi) {
53 EntityIndex entityIndex;
54 LocalDofIndex dofIndex;
59 template <
typename ValueType>
Local degree of freedom.
Definition: types.hpp:46
Point in a three-dimensional space.
Definition: types.hpp:60