1 #ifndef GRAPH_EXTRACTOR_H_
2 #define GRAPH_EXTRACTOR_H_
7 #include "AdjacencyList.h"
11 const int UNUSED_TREENODE_ID = -1;
22 std::vector<tree_node*> children;
23 unsigned int num_tree_nodes;
30 id = UNUSED_TREENODE_ID;
58 std::vector<tree_node*>* make_trees(
AdjacencyList& g,
unsigned int start);
75 void get_positions(
tree_node* tn, std::vector<std::pair<int, int> >& pos);
83 void move_positions(
tree_node* tn,
int x_offset,
int y_offset);
Definition: AdjacencyList.h:9
Definition: graph_extractor.h:18