16 #ifndef dealii_mesh_worker_assemble_flags_h 17 #define dealii_mesh_worker_assemble_flags_h 20 #include <deal.II/base/config.h> 25 DEAL_II_NAMESPACE_OPEN
114 template <
class StreamType>
118 s <<
" AssembleFlags";
122 s <<
"|own_faces_once";
124 s <<
"|own_faces_both";
128 s <<
"|ghost_faces_once";
130 s <<
"|ghost_faces_both";
132 s <<
"|boundary_faces";
149 return static_cast<AssembleFlags>(
static_cast<unsigned int>(f1) |
150 static_cast<unsigned int>(f2));
180 return static_cast<AssembleFlags>(
static_cast<unsigned int>(f1) &
181 static_cast<unsigned int>(f2));
201 DEAL_II_NAMESPACE_CLOSE
AssembleFlags operator|(AssembleFlags f1, AssembleFlags f2)
AssembleFlags & operator|=(AssembleFlags &f1, AssembleFlags f2)
AssembleFlags operator &(AssembleFlags f1, AssembleFlags f2)
StreamType & operator<<(StreamType &s, AssembleFlags u)
AssembleFlags & operator &=(AssembleFlags &f1, AssembleFlags f2)