Skip to content
Snippets Groups Projects
Commit afeb6029 authored by mattijs's avatar mattijs
Browse files

revert to normal HashTable

parent 5882afad
Branches
Tags
No related merge requests found
......@@ -26,9 +26,6 @@ License
#include "edgeMesh.H"
#include "mergePoints.H"
#include "StaticHashTable.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
......@@ -204,7 +201,7 @@ void Foam::edgeMesh::mergePoints(const scalar mergeDist)
}
// Compact using a hashtable and commutative hash of edge.
StaticHashTable<label, edge, Hash<edge> > edgeToLabel
HashTable<label, edge, Hash<edge> > edgeToLabel
(
2*edges_.size()
);
......@@ -228,7 +225,7 @@ void Foam::edgeMesh::mergePoints(const scalar mergeDist)
for
(
StaticHashTable<label, edge, Hash<edge> >::const_iterator iter =
HashTable<label, edge, Hash<edge> >::const_iterator iter =
edgeToLabel.begin();
iter != edgeToLabel.end();
++iter
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment