breadth_first.h

Back to Breadth-first traversal

pastel/sys/graph/breadth_first/

// Description: Breadth-first traversal of a graph

#ifndef PASTELSYS_BREADTH_FIRST_H
#define PASTELSYS_BREADTH_FIRST_H

#include "pastel/sys/graph/graph_traversal_concepts.h"

#include "pastel/sys/graph/generic_traversal.h"

namespace Pastel
{

    //! A graph-traversal algorithm for breadth-first traversal.
    class BreadthFirst_GraphTraversal;

}

#include "pastel/sys/graph/breadth_first/breadth_first.hpp"

#endif