All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
List of all members | Public Member Functions
BpGraph::InArcIt Class Reference

Detailed Description

This iterator goes trough the incoming directed arcs of a certain node of a graph. Its usage is quite simple, for example, you can count the number of incoming arcs of a node n in a graph g of type BpGraph as follows.

int count=0;
for (Digraph::InArcIt a(g, n); a!=INVALID; ++a) ++count;

#include <lemon/concepts/bpgraph.h>

+ Inheritance diagram for BpGraph::InArcIt:

Public Member Functions

 InArcIt ()
 Default constructor.
 
 InArcIt (const InArcIt &e)
 
 InArcIt (Invalid)
 Invalid constructor & conversion.
 
 InArcIt (const BpGraph &g, const Node &n)
 Sets the iterator to the first incoming arc.
 
 InArcIt (const BpGraph &, const Arc &)
 Sets the iterator to the given arc.
 
InArcItoperator++ ()
 Next incoming arc.
 
- Public Member Functions inherited from BpGraph::Arc
 Arc ()
 Default constructor.
 
 Arc (const Arc &)
 
 Arc (Invalid)
 Invalid constructor & conversion.
 
bool operator== (Arc) const
 Equality operator.
 
bool operator!= (Arc) const
 
bool operator< (Arc) const
 Artificial ordering operator.
 
 operator Edge () const
 

Constructor & Destructor Documentation

InArcIt ( )
inline

Default constructor.

Warning
It sets the iterator to an undefined value.
InArcIt ( const InArcIt e)
inline

Copy constructor.

InArcIt ( Invalid  )
inline

Initializes the iterator to be invalid.

See Also
Invalid for more details.
InArcIt ( const BpGraph g,
const Node n 
)
inline

Sets the iterator to the first incoming arc of the given node.

InArcIt ( const BpGraph ,
const Arc  
)
inline

Sets the iterator to the given arc of the given graph.

Member Function Documentation

InArcIt& operator++ ( )
inline

Assign the iterator to the next incoming arc of the corresponding node.