MFEM  v4.0
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
pfespace.hpp
Go to the documentation of this file.
1 // Copyright (c) 2010, Lawrence Livermore National Security, LLC. Produced at
2 // the Lawrence Livermore National Laboratory. LLNL-CODE-443211. All Rights
3 // reserved. See file COPYRIGHT for details.
4 //
5 // This file is part of the MFEM library. For more information and source code
6 // availability see http://mfem.org.
7 //
8 // MFEM is free software; you can redistribute it and/or modify it under the
9 // terms of the GNU Lesser General Public License (as published by the Free
10 // Software Foundation) version 2.1 dated February 1999.
11 
12 #ifndef MFEM_PFESPACE
13 #define MFEM_PFESPACE
14 
15 #include "../config/config.hpp"
16 
17 #ifdef MFEM_USE_MPI
18 
19 #include "../linalg/hypre.hpp"
20 #include "../mesh/pmesh.hpp"
21 #include "../mesh/nurbs.hpp"
22 #include "fespace.hpp"
23 
24 namespace mfem
25 {
26 
27 /// Abstract parallel finite element space.
29 {
30 private:
31  /// MPI data.
32  MPI_Comm MyComm;
33  int NRanks, MyRank;
34 
35  /// Parallel mesh; #mesh points to this object as well. Not owned.
36  ParMesh *pmesh;
37  /** Parallel non-conforming mesh extension object; same as pmesh->pncmesh.
38  Not owned. */
39  ParNCMesh *pncmesh;
40 
41  /// GroupCommunicator on the local VDofs. Owned.
42  GroupCommunicator *gcomm;
43 
44  /// Number of true dofs in this processor (local true dofs).
45  mutable int ltdof_size;
46 
47  /// Number of vertex/edge/face/total ghost DOFs (nonconforming case).
48  int ngvdofs, ngedofs, ngfdofs, ngdofs;
49 
50  /// The group of each local dof.
51  Array<int> ldof_group;
52 
53  /// For a local dof: the local true dof number in the master of its group.
54  mutable Array<int> ldof_ltdof;
55 
56  /// Offsets for the dofs in each processor in global numbering.
57  mutable Array<HYPRE_Int> dof_offsets;
58 
59  /// Offsets for the true dofs in each processor in global numbering.
60  mutable Array<HYPRE_Int> tdof_offsets;
61 
62  /// Offsets for the true dofs in neighbor processor in global numbering.
63  mutable Array<HYPRE_Int> tdof_nb_offsets;
64 
65  /// Previous 'dof_offsets' (before Update()), column partition of T.
66  Array<HYPRE_Int> old_dof_offsets;
67 
68  /// The sign of the basis functions at the scalar local dofs.
69  Array<int> ldof_sign;
70 
71  /// The matrix P (interpolation from true dof to dof). Owned.
72  mutable HypreParMatrix *P;
73  /// Optimized action-only prolongation operator for conforming meshes. Owned.
74  mutable class ConformingProlongationOperator *Pconf;
75 
76  /// The (block-diagonal) matrix R (restriction of dof to true dof). Owned.
77  mutable SparseMatrix *R;
78 
79  ParNURBSExtension *pNURBSext() const
80  { return dynamic_cast<ParNURBSExtension *>(NURBSext); }
81 
82  static ParNURBSExtension *MakeLocalNURBSext(
83  const NURBSExtension *globNURBSext, const NURBSExtension *parNURBSext);
84 
85  GroupTopology &GetGroupTopo() const
86  { return (NURBSext) ? pNURBSext()->gtopo : pmesh->gtopo; }
87 
88  // Auxiliary method used in constructors
89  void ParInit(ParMesh *pm);
90 
91  void Construct();
92  void Destroy();
93 
94  // ldof_type = 0 : DOFs communicator, otherwise VDOFs communicator
95  void GetGroupComm(GroupCommunicator &gcomm, int ldof_type,
96  Array<int> *ldof_sign = NULL);
97 
98  /// Construct dof_offsets and tdof_offsets using global communication.
99  void GenerateGlobalOffsets() const;
100 
101  /// Construct ldof_group and ldof_ltdof.
102  void ConstructTrueDofs();
103  void ConstructTrueNURBSDofs();
104 
105  void ApplyLDofSigns(Array<int> &dofs) const;
106  void ApplyLDofSigns(Table &el_dof) const;
107 
108  typedef NCMesh::MeshId MeshId;
109  typedef ParNCMesh::GroupId GroupId;
110 
111  void GetGhostVertexDofs(const MeshId &id, Array<int> &dofs) const;
112  void GetGhostEdgeDofs(const MeshId &edge_id, Array<int> &dofs) const;
113  void GetGhostFaceDofs(const MeshId &face_id, Array<int> &dofs) const;
114 
115  void GetGhostDofs(int entity, const MeshId &id, Array<int> &dofs) const;
116  // Return the dofs associated with the interior of the given mesh entity.
117  void GetBareDofs(int entity, int index, Array<int> &dofs) const;
118 
119  int PackDof(int entity, int index, int edof) const;
120  void UnpackDof(int dof, int &entity, int &index, int &edof) const;
121 
122 #ifdef MFEM_PMATRIX_STATS
123  mutable int n_msgs_sent, n_msgs_recv;
124  mutable int n_rows_sent, n_rows_recv, n_rows_fwd;
125 #endif
126 
127  void ScheduleSendRow(const struct PMatrixRow &row, int dof, GroupId group_id,
128  std::map<int, class NeighborRowMessage> &send_msg) const;
129 
130  void ForwardRow(const struct PMatrixRow &row, int dof,
131  GroupId group_sent_id, GroupId group_id,
132  std::map<int, class NeighborRowMessage> &send_msg) const;
133 
134 #ifdef MFEM_DEBUG_PMATRIX
135  void DebugDumpDOFs(std::ostream &os,
136  const SparseMatrix &deps,
137  const Array<GroupId> &dof_group,
138  const Array<GroupId> &dof_owner,
139  const Array<bool> &finalized) const;
140 #endif
141 
142  /// Helper: create a HypreParMatrix from a list of PMatrixRows.
144  MakeVDimHypreMatrix(const std::vector<struct PMatrixRow> &rows,
145  int local_rows, int local_cols,
146  Array<HYPRE_Int> &row_starts,
147  Array<HYPRE_Int> &col_starts) const;
148 
149  /// Build the P and R matrices.
150  void Build_Dof_TrueDof_Matrix() const;
151 
152  /** Used when the ParMesh is non-conforming, i.e. pmesh->pncmesh != NULL.
153  Constructs the matrices P and R, the DOF and true DOF offset arrays,
154  and the DOF -> true DOF map ('dof_tdof'). Returns the number of
155  vector true DOFs. All pointer arguments are optional and can be NULL. */
156  int BuildParallelConformingInterpolation(HypreParMatrix **P, SparseMatrix **R,
157  Array<HYPRE_Int> &dof_offs,
158  Array<HYPRE_Int> &tdof_offs,
159  Array<int> *dof_tdof,
160  bool partial = false) const;
161 
162  /** Calculate a GridFunction migration matrix after mesh load balancing.
163  The result is a parallel permutation matrix that can be used to update
164  all grid functions defined on this space. */
165  HypreParMatrix* RebalanceMatrix(int old_ndofs,
166  const Table* old_elem_dof);
167 
168  /** Calculate a GridFunction restriction matrix after mesh derefinement.
169  The matrix is constructed so that the new grid function interpolates
170  the original function, i.e., the original function is evaluated at the
171  nodes of the coarse function. */
172  HypreParMatrix* ParallelDerefinementMatrix(int old_ndofs,
173  const Table *old_elem_dof);
174 
175 public:
176  // Face-neighbor data
177  // Number of face-neighbor dofs
179  // Face-neighbor-element to face-neighbor dof
181  // Face-neighbor to ldof in the face-neighbor numbering
183  // The global ldof indices of the face-neighbor dofs
185  // Local face-neighbor data: face-neighbor to ldof
187 
188  /** @brief Copy constructor: deep copy all data from @a orig except the
189  ParMesh, the FiniteElementCollection, and some derived data. */
190  /** If the @a pmesh or @a fec pointers are NULL (default), then the new
191  ParFiniteElementSpace will reuse the respective pointers from @a orig. If
192  any of these pointers is not NULL, the given pointer will be used instead
193  of the one used by @a orig.
194 
195  @note The objects pointed to by the @a pmesh and @a fec parameters must
196  be either the same objects as the ones used by @a orig, or copies of
197  them. Otherwise, the behavior is undefined.
198 
199  @note Derived data objects, such as the parallel prolongation and
200  restriction operators, the update operator, and any of the face-neighbor
201  data, will not be copied, even if they are created in the @a orig object.
202  */
204  ParMesh *pmesh = NULL,
205  const FiniteElementCollection *fec = NULL);
206 
207  /** @brief Convert/copy the *local* (Par)FiniteElementSpace @a orig to
208  ParFiniteElementSpace: deep copy all data from @a orig except the Mesh,
209  the FiniteElementCollection, and some derived data. */
211  const FiniteElementCollection *fec = NULL);
212 
213  /** @brief Construct the *local* ParFiniteElementSpace corresponding to the
214  global FE space, @a global_fes. */
215  /** The parameter @a pm is the *local* ParMesh obtained by decomposing the
216  global Mesh used by @a global_fes. The array @a partitioning represents
217  the parallel decomposition - it maps global element ids to MPI ranks.
218  If the FiniteElementCollection, @a f, is NULL (default), the FE
219  collection used by @a global_fes will be reused. If @a f is not NULL, it
220  must be the same as, or a copy of, the FE collection used by
221  @a global_fes. */
222  ParFiniteElementSpace(ParMesh *pm, const FiniteElementSpace *global_fes,
223  const int *partitioning,
224  const FiniteElementCollection *f = NULL);
225 
227  int dim = 1, int ordering = Ordering::byNODES);
228 
229  /// Construct a NURBS FE space based on the given NURBSExtension, @a ext.
230  /** The parameter @a ext will be deleted by this constructor, replaced by a
231  ParNURBSExtension owned by the ParFiniteElementSpace.
232  @note If the pointer @a ext is NULL, this constructor is equivalent to
233  the standard constructor with the same arguments minus the
234  NURBSExtension, @a ext. */
236  const FiniteElementCollection *f,
237  int dim = 1, int ordering = Ordering::byNODES);
238 
239  MPI_Comm GetComm() const { return MyComm; }
240  int GetNRanks() const { return NRanks; }
241  int GetMyRank() const { return MyRank; }
242 
243  inline ParMesh *GetParMesh() { return pmesh; }
244 
245  int GetDofSign(int i)
246  { return NURBSext || Nonconforming() ? 1 : ldof_sign[VDofToDof(i)]; }
247  HYPRE_Int *GetDofOffsets() const { return dof_offsets; }
248  HYPRE_Int *GetTrueDofOffsets() const { return tdof_offsets; }
249  HYPRE_Int GlobalVSize() const
250  { return Dof_TrueDof_Matrix()->GetGlobalNumRows(); }
251  HYPRE_Int GlobalTrueVSize() const
252  { return Dof_TrueDof_Matrix()->GetGlobalNumCols(); }
253 
254  /// Return the number of local vector true dofs.
255  virtual int GetTrueVSize() const { return ltdof_size; }
256 
257  /// Returns indexes of degrees of freedom in array dofs for i'th element.
258  virtual void GetElementDofs(int i, Array<int> &dofs) const;
259 
260  /// Returns indexes of degrees of freedom for i'th boundary element.
261  virtual void GetBdrElementDofs(int i, Array<int> &dofs) const;
262 
263  /** Returns the indexes of the degrees of freedom for i'th face
264  including the dofs for the edges and the vertices of the face. */
265  virtual void GetFaceDofs(int i, Array<int> &dofs) const;
266 
267  void GetSharedEdgeDofs(int group, int ei, Array<int> &dofs) const;
268  void GetSharedTriangleDofs(int group, int fi, Array<int> &dofs) const;
269  void GetSharedQuadrilateralDofs(int group, int fi, Array<int> &dofs) const;
270 
271  /// The true dof-to-dof interpolation matrix
273  { if (!P) { Build_Dof_TrueDof_Matrix(); } return P; }
274 
275  /** @brief For a non-conforming mesh, construct and return the interpolation
276  matrix from the partially conforming true dofs to the local dofs. */
277  /** @note The returned pointer must be deleted by the caller. */
279 
280  /** Create and return a new HypreParVector on the true dofs, which is
281  owned by (i.e. it must be destroyed by) the calling function. */
283  { return (new HypreParVector(MyComm,GlobalTrueVSize(),GetTrueDofOffsets()));}
284 
285  /// Scale a vector of true dofs
286  void DivideByGroupSize(double *vec);
287 
288  /// Return a reference to the internal GroupCommunicator (on VDofs)
289  GroupCommunicator &GroupComm() { return *gcomm; }
290 
291  /// Return a const reference to the internal GroupCommunicator (on VDofs)
292  const GroupCommunicator &GroupComm() const { return *gcomm; }
293 
294  /// Return a new GroupCommunicator on scalar dofs, i.e. for VDim = 1.
295  /** @note The returned pointer must be deleted by the caller. */
297 
298  /** @brief Given an integer array on the local degrees of freedom, perform
299  a bitwise OR between the shared dofs. */
300  /** For non-conforming mesh, synchronization is performed on the cut (aka
301  "partially conforming") space. */
302  void Synchronize(Array<int> &ldof_marker) const;
303 
304  /// Determine the boundary degrees of freedom
305  virtual void GetEssentialVDofs(const Array<int> &bdr_attr_is_ess,
306  Array<int> &ess_dofs,
307  int component = -1) const;
308 
309  /** Get a list of essential true dofs, ess_tdof_list, corresponding to the
310  boundary attributes marked in the array bdr_attr_is_ess. */
311  virtual void GetEssentialTrueDofs(const Array<int> &bdr_attr_is_ess,
312  Array<int> &ess_tdof_list,
313  int component = -1);
314 
315  /** If the given ldof is owned by the current processor, return its local
316  tdof number, otherwise return -1 */
317  int GetLocalTDofNumber(int ldof) const;
318  /// Returns the global tdof number of the given local degree of freedom
319  HYPRE_Int GetGlobalTDofNumber(int ldof) const;
320  /** Returns the global tdof number of the given local degree of freedom in
321  the scalar version of the current finite element space. The input should
322  be a scalar local dof. */
323  HYPRE_Int GetGlobalScalarTDofNumber(int sldof);
324 
325  HYPRE_Int GetMyDofOffset() const;
326  HYPRE_Int GetMyTDofOffset() const;
327 
328  virtual const Operator *GetProlongationMatrix() const;
329  /// Get the R matrix which restricts a local dof vector to true dof vector.
330  virtual const SparseMatrix *GetRestrictionMatrix() const
331  { Dof_TrueDof_Matrix(); return R; }
332 
333  // Face-neighbor functions
334  void ExchangeFaceNbrData();
335  int GetFaceNbrVSize() const { return num_face_nbr_dofs; }
336  void GetFaceNbrElementVDofs(int i, Array<int> &vdofs) const;
337  void GetFaceNbrFaceVDofs(int i, Array<int> &vdofs) const;
338  const FiniteElement *GetFaceNbrFE(int i) const;
339  const FiniteElement *GetFaceNbrFaceFE(int i) const;
340  const HYPRE_Int *GetFaceNbrGlobalDofMap() { return face_nbr_glob_dof_map; }
341 
343  void LoseDofOffsets() { dof_offsets.LoseData(); }
344  void LoseTrueDofOffsets() { tdof_offsets.LoseData(); }
345 
346  bool Conforming() const { return pmesh->pncmesh == NULL; }
347  bool Nonconforming() const { return pmesh->pncmesh != NULL; }
348 
349  // Transfer parallel true-dof data from coarse_fes, defined on a coarse mesh,
350  // to this FE space, defined on a refined mesh. See full documentation in the
351  // base class, FiniteElementSpace::GetTrueTransferOperator.
352  virtual void GetTrueTransferOperator(const FiniteElementSpace &coarse_fes,
353  OperatorHandle &T) const;
354 
355  /** Reflect changes in the mesh. Calculate one of the refinement/derefinement
356  /rebalance matrices, unless want_transform is false. */
357  virtual void Update(bool want_transform = true);
358 
359  /// Free ParGridFunction transformation matrix (if any), to save memory.
360  virtual void UpdatesFinished()
361  {
363  old_dof_offsets.DeleteAll();
364  }
365 
366  virtual ~ParFiniteElementSpace() { Destroy(); }
367 
368  void PrintPartitionStats();
369 
370  // Obsolete, kept for backward compatibility
371  int TrueVSize() const { return ltdof_size; }
372 };
373 
374 
375 /// Auxiliary class used by ParFiniteElementSpace.
377 {
378 protected:
381 
382 public:
384 
385  virtual void Mult(const Vector &x, Vector &y) const;
386 
387  virtual void MultTranspose(const Vector &x, Vector &y) const;
388 };
389 
390 }
391 
392 #endif // MFEM_USE_MPI
393 
394 #endif
Abstract class for Finite Elements.
Definition: fe.hpp:229
virtual void GetEssentialTrueDofs(const Array< int > &bdr_attr_is_ess, Array< int > &ess_tdof_list, int component=-1)
Definition: pfespace.cpp:737
HYPRE_Int GetGlobalTDofNumber(int ldof) const
Returns the global tdof number of the given local degree of freedom.
Definition: pfespace.cpp:785
HypreParVector * NewTrueDofVector()
Definition: pfespace.hpp:282
virtual void GetEssentialVDofs(const Array< int > &bdr_attr_is_ess, Array< int > &ess_dofs, int component=-1) const
Determine the boundary degrees of freedom.
Definition: pfespace.cpp:723
ConformingProlongationOperator(const ParFiniteElementSpace &pfes)
Definition: pfespace.cpp:2842
HYPRE_Int * GetDofOffsets() const
Definition: pfespace.hpp:247
virtual const Operator * GetProlongationMatrix() const
The returned Operator is owned by the FiniteElementSpace.
Definition: pfespace.cpp:855
Auxiliary class used by ParFiniteElementSpace.
Definition: pfespace.hpp:376
Ordering::Type ordering
Definition: fespace.hpp:102
virtual void Update(bool want_transform=true)
Definition: pfespace.cpp:2754
Pointer to an Operator of a specified type.
Definition: handle.hpp:33
int VDofToDof(int vdof) const
Definition: fespace.hpp:445
const GroupCommunicator & GroupComm() const
Return a const reference to the internal GroupCommunicator (on VDofs)
Definition: pfespace.hpp:292
virtual void GetTrueTransferOperator(const FiniteElementSpace &coarse_fes, OperatorHandle &T) const
Construct and return an Operator that can be used to transfer true-dof data from coarse_fes, defined on a coarse mesh, to this FE space, defined on a refined mesh.
Definition: pfespace.cpp:2727
void DivideByGroupSize(double *vec)
Scale a vector of true dofs.
Definition: pfespace.cpp:677
Abstract parallel finite element space.
Definition: pfespace.hpp:28
void Synchronize(Array< int > &ldof_marker) const
Given an integer array on the local degrees of freedom, perform a bitwise OR between the shared dofs...
Definition: pfespace.cpp:711
int GetLocalTDofNumber(int ldof) const
Definition: pfespace.cpp:764
HypreParMatrix * GetPartialConformingInterpolation()
For a non-conforming mesh, construct and return the interpolation matrix from the partially conformin...
Definition: pfespace.cpp:666
const FiniteElementCollection * fec
Associated FE collection (not owned).
Definition: fespace.hpp:94
const HYPRE_Int * GetFaceNbrGlobalDofMap()
Definition: pfespace.hpp:340
HYPRE_Int GetMyDofOffset() const
Definition: pfespace.cpp:845
void DeleteAll()
Delete whole array.
Definition: array.hpp:785
A parallel extension of the NCMesh class.
Definition: pncmesh.hpp:64
void GetSharedEdgeDofs(int group, int ei, Array< int > &dofs) const
Definition: pfespace.cpp:493
ParNCMesh * pncmesh
Definition: pmesh.hpp:240
virtual int GetTrueVSize() const
Return the number of local vector true dofs.
Definition: pfespace.hpp:255
virtual void GetBdrElementDofs(int i, Array< int > &dofs) const
Returns indexes of degrees of freedom for i&#39;th boundary element.
Definition: pfespace.cpp:470
void GetFaceNbrElementVDofs(int i, Array< int > &vdofs) const
Definition: pfespace.cpp:1109
HYPRE_Int GetGlobalNumRows() const
Return the global number of rows.
Definition: hypre.hpp:417
Communicator performing operations within groups defined by a GroupTopology with arbitrary-size data ...
const FiniteElement * GetFaceNbrFE(int i) const
Definition: pfespace.cpp:1143
int dim
Definition: ex3.cpp:48
MPI_Comm GetComm() const
Definition: pfespace.hpp:239
HYPRE_Int GetGlobalNumCols() const
Return the global number of columns.
Definition: hypre.hpp:421
Data type sparse matrix.
Definition: sparsemat.hpp:40
const GroupCommunicator & gc
Definition: pfespace.hpp:380
void LoseData()
NULL-ifies the data.
Definition: array.hpp:112
HypreParMatrix * Dof_TrueDof_Matrix() const
The true dof-to-dof interpolation matrix.
Definition: pfespace.hpp:272
HYPRE_Int GlobalTrueVSize() const
Definition: pfespace.hpp:251
HYPRE_Int GetMyTDofOffset() const
Definition: pfespace.cpp:850
void GetSharedQuadrilateralDofs(int group, int fi, Array< int > &dofs) const
Definition: pfespace.cpp:540
Identifies a vertex/edge/face in both Mesh and NCMesh.
Definition: ncmesh.hpp:151
void GetSharedTriangleDofs(int group, int fi, Array< int > &dofs) const
Definition: pfespace.cpp:516
virtual void GetFaceDofs(int i, Array< int > &dofs) const
Definition: pfespace.cpp:484
HYPRE_Int GlobalVSize() const
Definition: pfespace.hpp:249
Wrapper for hypre&#39;s parallel vector class.
Definition: hypre.hpp:73
Class FiniteElementSpace - responsible for providing FEM view of the mesh, mainly managing the set of...
Definition: fespace.hpp:85
virtual void MultTranspose(const Vector &x, Vector &y) const
Action of the transpose operator: y=A^t(x). The default behavior in class Operator is to generate an ...
Definition: pfespace.cpp:2910
GroupCommunicator & GroupComm()
Return a reference to the internal GroupCommunicator (on VDofs)
Definition: pfespace.hpp:289
ParFiniteElementSpace(const ParFiniteElementSpace &orig, ParMesh *pmesh=NULL, const FiniteElementCollection *fec=NULL)
Copy constructor: deep copy all data from orig except the ParMesh, the FiniteElementCollection, and some derived data.
Definition: pfespace.cpp:28
HYPRE_Int GetGlobalScalarTDofNumber(int sldof)
Definition: pfespace.cpp:808
bool Nonconforming() const
Definition: pfespace.hpp:347
virtual void GetElementDofs(int i, Array< int > &dofs) const
Returns indexes of degrees of freedom in array dofs for i&#39;th element.
Definition: pfespace.cpp:456
virtual const SparseMatrix * GetRestrictionMatrix() const
Get the R matrix which restricts a local dof vector to true dof vector.
Definition: pfespace.hpp:330
virtual void Mult(const Vector &x, Vector &y) const
Operator application: y=A(x).
Definition: pfespace.cpp:2885
const FiniteElement * GetFaceNbrFaceFE(int i) const
Definition: pfespace.cpp:1157
int GetFaceNbrVSize() const
Definition: pfespace.hpp:335
HYPRE_Int * GetTrueDofOffsets() const
Definition: pfespace.hpp:248
void GetFaceNbrFaceVDofs(int i, Array< int > &vdofs) const
Definition: pfespace.cpp:1115
Vector data type.
Definition: vector.hpp:48
virtual void UpdatesFinished()
Free the GridFunction update operator (if any), to save memory.
Definition: fespace.hpp:611
NURBSExtension * NURBSext
Definition: fespace.hpp:115
GroupTopology gtopo
Definition: pmesh.hpp:227
Abstract operator.
Definition: operator.hpp:21
Wrapper for hypre&#39;s ParCSR matrix class.
Definition: hypre.hpp:187
virtual void UpdatesFinished()
Free ParGridFunction transformation matrix (if any), to save memory.
Definition: pfespace.hpp:360
GroupCommunicator * ScalarGroupComm()
Return a new GroupCommunicator on scalar dofs, i.e. for VDim = 1.
Definition: pfespace.cpp:697
Class for parallel meshes.
Definition: pmesh.hpp:32
GroupTopology gtopo
Definition: nurbs.hpp:409
Array< HYPRE_Int > face_nbr_glob_dof_map
Definition: pfespace.hpp:184