MOAB: Mesh Oriented datABase
(version 5.4.1)
|
#include <ParallelHelper.hpp>
Public Member Functions | |
bool | operator() (const VertexIdMapKey &that1, const VertexIdMapKey &that2) const |
Definition at line 53 of file ParallelHelper.hpp.
bool MBMesquite::VertexIdLessFunc::operator() | ( | const VertexIdMapKey & | that1, |
const VertexIdMapKey & | that2 | ||
) | const [inline] |
Definition at line 55 of file ParallelHelper.hpp.
References MBMesquite::VertexIdMapKey::glob_id, and MBMesquite::VertexIdMapKey::proc_id.
{
return ( ( that1.proc_id < that2.proc_id ) ||
( ( that1.proc_id == that2.proc_id ) && ( that1.glob_id < that2.glob_id ) ) );
}