PGROUTING  3.2
Pgr_transitiveClosure< G > Class Template Reference

#include "pgr_transitiveClosure.hpp"

Public Types

typedef G::V V
 

Public Member Functions

boost::adjacency_list< boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS > transitiveClosure (G &graph)
 

Private Member Functions

boost::adjacency_list< boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS > generatetransitiveClosure (G &graph)
 

Detailed Description

template<class G>
class Pgr_transitiveClosure< G >

Definition at line 43 of file pgr_transitiveClosure.hpp.

Member Typedef Documentation

◆ V

template<class G >
typedef G::V Pgr_transitiveClosure< G >::V

Definition at line 50 of file pgr_transitiveClosure.hpp.

Member Function Documentation

◆ generatetransitiveClosure()

template<class G >
boost::adjacency_list<boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS> Pgr_transitiveClosure< G >::generatetransitiveClosure ( G &  graph)
inlineprivate

Definition at line 56 of file pgr_transitiveClosure.hpp.

56  {
57  boost::adjacency_list <boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property,
58  boost::no_property, boost::listS> TC;
59  transitive_closure(graph.graph, TC);
60  return TC;
61  }

◆ transitiveClosure()

template<class G >
boost::adjacency_list< boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS > Pgr_transitiveClosure< G >::transitiveClosure ( G &  graph)

Definition at line 67 of file pgr_transitiveClosure.hpp.

68  {
70  graph);
71 }

Referenced by pgr_transitiveClosure().


The documentation for this class was generated from the following file:
Pgr_transitiveClosure::generatetransitiveClosure
boost::adjacency_list< boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS > generatetransitiveClosure(G &graph)
Definition: pgr_transitiveClosure.hpp:56