SheafSystem  0.0.0.0
standard_dof_tuple_index.h
1 
2 //
3 // Copyright (c) 2014 Limit Point Systems, Inc.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 
18 // Declarations for standard_dof_tuple_index facet of namespace sheaf.
19 
20 #ifndef STANDARD_DOF_TUPLE_INDEX_H
21 #define STANDARD_DOF_TUPLE_INDEX_H
22 
23 #ifndef SHEAF_DLL_SPEC_H
24 #include "SheafSystem/sheaf_dll_spec.h"
25 #endif
26 
27 #ifndef STD_CLIMITS_H
28 #include "SheafSystem/std_climits.h"
29 #endif
30 
31 #ifndef POD_TYPES_H
32 #include "SheafSystem/pod_types.h"
33 #endif
34 
35 namespace sheaf
36 {
37 
38 //
39 // EMPTY_DOF_TUPLE_INDEX is the index of the (unique) empty dof map,
40 // i.e. the dof map with dof_ct() == 0.
41 //
42 // Note on restriction to BOTTOM:
43 // If the schema is restricted to BOTTOM, then the
44 // dof tuple is empty. As with the empty set and the null
45 // vector, we treat the empty dof tuple as unique. So all
46 // members of a poset on the BOTTOM schema share the same
47 // dof tuple, which contains no dofs. The dof tuple id for
48 // the empty dof tuple is 0. This structure is the same for
49 // both internal and external posets.
50 //
51 
56 {
57  STANDARD_DOF_TUPLE_INDEX_BEGIN = 0, // Must be same a first std id.
58  EMPTY_DOF_TUPLE_INDEX = 0,
59  STANDARD_DOF_TUPLE_INDEX_END, // Must be one more than last std id.
60  NOT_A_STANDARD_DOF_TUPLE_INDEX = INT_MAX
61 };
62 
67 
71 SHEAF_DLL_SPEC const std::string& standard_dof_tuple_index_to_name(standard_dof_tuple_index xpt);
72 
76 SHEAF_DLL_SPEC standard_dof_tuple_index standard_dof_tuple_index_from_name(const std::string& xname);
77 
82 
86 SHEAF_DLL_SPEC bool is_standard_dof_tuple_index(pod_index_type xindex);
87 
88 } // namespace sheaf
89 
90 #endif // ifndef STANDARD_DOF_TUPLE_INDEX_H
91 
92 
93 
94 
95 
96 
SHEAF_DLL_SPEC standard_dof_tuple_index standard_dof_tuple_index_from_index(pod_index_type xindex)
The enumerator corresponding to primitive index xindex.
standard_dof_tuple_index
Ids for standard dof tuples.
SHEAF_DLL_SPEC standard_dof_tuple_index standard_dof_tuple_index_from_name(const std::string &xname)
The enumerator with name xname.
SHEAF_DLL_SPEC bool is_standard_dof_tuple_index(pod_index_type xindex)
True if xindex is a valid primitive index.
int_type pod_index_type
The plain old data index type.
Definition: pod_types.h:49
Namespace for the sheaves component of the sheaf system.
SHEAF_DLL_SPEC const std::string & standard_dof_tuple_index_to_name(standard_dof_tuple_index xpt)
The name of the enumerator xpt.
SHEAF_DLL_SPEC namespace_member_index & operator++(namespace_member_index &x)
Prefix increment operator for namespace_member_index.