All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
List of all members | Public Member Functions
BfsWizardBase< GR > Class Template Reference

Detailed Description

template<class GR>
class lemon::BfsWizardBase< GR >

To make it easier to use Bfs algorithm we have created a wizard class. This BfsWizard class needs default traits, as well as the Bfs class. The BfsWizardBase is a class to be the default traits of the BfsWizard class.

#include <lemon/bfs.h>

+ Inheritance diagram for BfsWizardBase< GR >:

Public Member Functions

 BfsWizardBase ()
 Constructor.
 
 BfsWizardBase (const GR &g)
 Constructor.
 

Additional Inherited Members

- Public Types inherited from BfsWizardDefaultTraits< GR >
typedef GR Digraph
 The type of the digraph the algorithm runs on.
 
typedef Digraph::template
NodeMap< typename Digraph::Arc > 
PredMap
 The type of the map that stores the predecessor arcs of the shortest paths.
 
typedef NullMap< typename
Digraph::Node, bool > 
ProcessedMap
 The type of the map that indicates which nodes are processed.
 
typedef Digraph::template
NodeMap< bool > 
ReachedMap
 The type of the map that indicates which nodes are reached.
 
typedef Digraph::template
NodeMap< int > 
DistMap
 The type of the map that stores the distances of the nodes.
 
typedef lemon::Path< DigraphPath
 The type of the shortest paths.
 
- Static Public Member Functions inherited from BfsWizardDefaultTraits< GR >
static PredMapcreatePredMap (const Digraph &g)
 Instantiates a PredMap.
 
static ProcessedMapcreateProcessedMap (const Digraph &g)
 Instantiates a ProcessedMap.
 
static ReachedMapcreateReachedMap (const Digraph &g)
 Instantiates a ReachedMap.
 
static DistMapcreateDistMap (const Digraph &g)
 Instantiates a DistMap.
 

Constructor & Destructor Documentation

BfsWizardBase ( )
inline

This constructor does not require parameters, therefore it initiates all of the attributes to 0.

BfsWizardBase ( const GR &  g)
inline

This constructor requires one parameter, others are initiated to 0.

Parameters
gThe digraph the algorithm runs on.