#include <Face.h>
Definition at line 155 of file Face.h.
std::size_t Nektar::NekMeshUtils::FaceHash::operator() |
( |
FaceSharedPtr const & |
p | ) |
const |
|
inline |
Definition at line 157 of file Face.h.
159 unsigned int nVert =
p->m_vertexList.size();
160 std::size_t seed = 0;
161 std::vector<unsigned int> ids(nVert);
163 for (
int i = 0; i < nVert; ++i)
165 ids[i] =
p->m_vertexList[i]->m_id;
168 std::sort(ids.begin(), ids.end());
169 boost::hash_range(seed, ids.begin(), ids.end());