We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e96d4e commit e3dac8aCopy full SHA for e3dac8a
1 file changed
include/base/ghosting_functor.h
@@ -25,6 +25,7 @@
25
#include "libmesh/id_types.h"
26
#include "libmesh/mesh_base.h"
27
#include "libmesh/reference_counted_object.h"
28
+#include "libmesh/dof_object.h"
29
30
// C++ Includes
31
#include <unordered_map>
@@ -228,7 +229,7 @@ class GhostingFunctor : public ReferenceCountedObject<GhostingFunctor>
228
229
* What elements do we care about and what variables do we care
230
* about on each element?
231
*/
- typedef std::unordered_map<const Elem*, const CouplingMatrix*> map_type;
232
+ typedef std::map<const Elem*, const CouplingMatrix*, CompareDofObjectsByID> map_type;
233
234
/**
235
* For the specified range of active elements, what other elements
0 commit comments