graph_traversal.h

Back to Graph traversal

pastel/sys/graph/

// Description: An aggregate file for graph traversal

#ifndef PASTELSYS_GRAPH_TRAVERSAL_H
#define PASTELSYS_GRAPH_TRAVERSAL_H

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

#endif