STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
List of all members | Public Member Functions
stapl::visitor_predecessors_base< GRAPH > Class Template Reference

A base class to be inherited by every visitor predecessors class. More...

Public Member Functions

 visitor_predecessors_base (GRAPH &g)
 All the visitors will be related with a graph. This constructor can be used when you need to store the Graph associated with the current traversal/visitor. More...
 
virtual visitor_return discover_vertex (vertex_iterator)
 Will be called by the traversal when a vertex is reached for the first time. More...
 
virtual visitor_return examine_vertex (vertex_iterator)
 Will be called when a vertex is reached and needs to be examined. More...
 
virtual visitor_return examine_edge (vertex_iterator, vertex_descriptor)
 Will be called when an edge is reached and needs to be examined. More...
 
virtual visitor_return tree_edge (vertex_iterator, vertex_descriptor)
 Will be called when an edge whose destination is unvisited is reached. More...
 
virtual visitor_return non_tree_edge (vertex_iterator, vertex_descriptor)
 Will be called when an edge whose destination is already visited is reached. More...
 
virtual visitor_return gray_target (vertex_iterator, vertex_descriptor)
 Will be called when an edge is reached whose destination is visited but not finished. More...
 
virtual visitor_return black_target (vertex_iterator, vertex_descriptor)
 Will be called when an edge is reached whose destination is visited and finished. More...
 
virtual visitor_return finish_vertex (vertex_iterator, int=-1)
 Will be called by traversal when a vertex becomes finished. More...
 
virtual ~visitor_predecessors_base ()
 Destructor for the visitor_predecessors_base class.
 

Detailed Description

template<class GRAPH>
class stapl::visitor_predecessors_base< GRAPH >

A base class to be inherited by every visitor predecessors class.

Constructor & Destructor Documentation

◆ visitor_predecessors_base()

template<class GRAPH>
stapl::visitor_predecessors_base< GRAPH >::visitor_predecessors_base ( GRAPH &  g)

All the visitors will be related with a graph. This constructor can be used when you need to store the Graph associated with the current traversal/visitor.

Member Function Documentation

◆ discover_vertex()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::discover_vertex ( vertex_iterator  )
virtual

Will be called by the traversal when a vertex is reached for the first time.

Parameters
vIterator to the vertex.

◆ examine_vertex()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::examine_vertex ( vertex_iterator  )
virtual

Will be called when a vertex is reached and needs to be examined.

Parameters
vIterator to the vertex.

◆ examine_edge()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::examine_edge ( vertex_iterator  ,
vertex_descriptor   
)
virtual

Will be called when an edge is reached and needs to be examined.

Parameters
vIterator to the starting vertex of the edge.
eDescriptor of the target vertex of the edge.

◆ tree_edge()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::tree_edge ( vertex_iterator  ,
vertex_descriptor   
)
virtual

Will be called when an edge whose destination is unvisited is reached.

Parameters
vIterator to the starting vertex of the edge.
eDescriptor of the target vertex of the edge.

◆ non_tree_edge()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::non_tree_edge ( vertex_iterator  ,
vertex_descriptor   
)
virtual

Will be called when an edge whose destination is already visited is reached.

Parameters
vIterator to the starting vertex of the edge.
eDescriptor of the target vertex of the edge.

◆ gray_target()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::gray_target ( vertex_iterator  ,
vertex_descriptor   
)
virtual

Will be called when an edge is reached whose destination is visited but not finished.

Parameters
vIterator to the starting vertex of the edge.
eDescriptor of the target vertex of the edge.

◆ black_target()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::black_target ( vertex_iterator  ,
vertex_descriptor   
)
virtual

Will be called when an edge is reached whose destination is visited and finished.

Parameters
vIterator to the starting vertex of the edge.
eDescriptor of the target vertex of the edge.

◆ finish_vertex()

template<class GRAPH>
virtual visitor_return stapl::visitor_predecessors_base< GRAPH >::finish_vertex ( vertex_iterator  ,
int  = -1 
)
virtual

Will be called by traversal when a vertex becomes finished.

Parameters
vIterator to the vertex.

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