00001
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef _DIRECTEDGRAPH_H
00030 #define _DIRECTEDGRAPH_H
00031
00032 #include "graph.h"
00033 #include <vector>
00034
00035 namespace libgexf {
00036
00040 class DirectedGraph: public Graph {
00041 public:
00042 DirectedGraph();
00043
00047 DirectedGraph(const DirectedGraph& orig);
00048
00049 virtual ~DirectedGraph();
00050
00056 void removeInEdges(const libgexf::t_id target_id);
00057
00063 void removeOutEdges(const libgexf::t_id source_id);
00064
00071 std::vector<libgexf::t_id> getInEdges(const libgexf::t_id node_id) const;
00072
00079 std::vector<libgexf::t_id> getOutEdges(const libgexf::t_id node_id) const;
00080
00087 std::vector<libgexf::t_id> getSuccessors(const libgexf::t_id node_id) const;
00088
00095 std::vector<libgexf::t_id> getPredecessors(const libgexf::t_id node_id) const;
00096
00097
00104 unsigned int getInDegree(const libgexf::t_id node_id) const;
00105
00112 unsigned int getOutDegree(const libgexf::t_id node_id) const;
00113
00114
00124 bool isSuccessor(const libgexf::t_id node_id, const libgexf::t_id successor_id) const;
00125
00135 bool isPredecessor(const libgexf::t_id node_id, const libgexf::t_id predecessor_id) const;
00136 private:
00137 DirectedGraph& operator=(const DirectedGraph& orig);
00138 };
00139
00140 }
00141
00142 #endif
00143