HavoqGT
havoqgt::mpi::sssp_queue< Visitor > Class Template Reference

#include <single_source_shortest_path.hpp>

Public Member Functions

 sssp_queue ()
 
bool push (Visitor const &task)
 
void pop ()
 
Visitor const & top ()
 
size_t size () const
 
bool empty () const
 
void clear ()
 

Protected Attributes

std::priority_queue< Visitor, std::vector< Visitor >, std::greater< Visitor > > m_data
 

Detailed Description

template<typename Visitor>
class havoqgt::mpi::sssp_queue< Visitor >

Definition at line 64 of file single_source_shortest_path.hpp.

Constructor & Destructor Documentation

template<typename Visitor >
havoqgt::mpi::sssp_queue< Visitor >::sssp_queue ( )
inline

Definition at line 71 of file single_source_shortest_path.hpp.

71 { }

Member Function Documentation

template<typename Visitor >
void havoqgt::mpi::sssp_queue< Visitor >::clear ( )
inline

Definition at line 99 of file single_source_shortest_path.hpp.

100  {
101  m_data.clear();
102  }
std::priority_queue< Visitor, std::vector< Visitor >, std::greater< Visitor > > m_data
template<typename Visitor >
bool havoqgt::mpi::sssp_queue< Visitor >::empty ( ) const
inline

Definition at line 94 of file single_source_shortest_path.hpp.

95  {
96  return m_data.empty();
97  }
std::priority_queue< Visitor, std::vector< Visitor >, std::greater< Visitor > > m_data
template<typename Visitor >
void havoqgt::mpi::sssp_queue< Visitor >::pop ( )
inline

Definition at line 79 of file single_source_shortest_path.hpp.

80  {
81  m_data.pop();
82  }
std::priority_queue< Visitor, std::vector< Visitor >, std::greater< Visitor > > m_data
template<typename Visitor >
bool havoqgt::mpi::sssp_queue< Visitor >::push ( Visitor const &  task)
inline

Definition at line 73 of file single_source_shortest_path.hpp.

74  {
75  m_data.push(task);
76  return true;
77  }
std::priority_queue< Visitor, std::vector< Visitor >, std::greater< Visitor > > m_data
template<typename Visitor >
size_t havoqgt::mpi::sssp_queue< Visitor >::size ( ) const
inline

Definition at line 89 of file single_source_shortest_path.hpp.

90  {
91  return m_data.size();;
92  }
std::priority_queue< Visitor, std::vector< Visitor >, std::greater< Visitor > > m_data
template<typename Visitor >
Visitor const& havoqgt::mpi::sssp_queue< Visitor >::top ( )
inline

Definition at line 84 of file single_source_shortest_path.hpp.

85  {
86  return m_data.top();
87  }
std::priority_queue< Visitor, std::vector< Visitor >, std::greater< Visitor > > m_data

Member Data Documentation

template<typename Visitor >
std::priority_queue< Visitor, std::vector<Visitor>, std::greater<Visitor> > havoqgt::mpi::sssp_queue< Visitor >::m_data
protected

Definition at line 69 of file single_source_shortest_path.hpp.


The documentation for this class was generated from the following file: