MOAB: Mesh Oriented datABase  (version 5.4.1)
MBMesquite::VertexIdLessFunc Struct Reference

#include <ParallelHelper.hpp>

Public Member Functions

bool operator() (const VertexIdMapKey &that1, const VertexIdMapKey &that2) const

Detailed Description

Definition at line 53 of file ParallelHelper.hpp.


Member Function Documentation

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 ) ) );
    }

List of all members.


The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines