]> git.lyx.org Git - lyx.git/blob - src/Graph.h
46cbaf062e234ac1a397e09e837a34017d9f3b0a
[lyx.git] / src / Graph.h
1 // -*- C++ -*-
2 /**
3  * \file Graph.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Dekel Tsur
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GRAPH_H
13 #define GRAPH_H
14
15 #include <queue>
16 #include <vector>
17
18
19 namespace lyx {
20
21
22 /// Represents a directed graph, possibly with multiple edges
23 /// connecting the vertices.
24 class Graph {
25 public:
26         Graph() : numedges_(0) {}
27         ///
28         typedef std::vector<int> EdgePath;
29         /// \return a vector of the vertices from which "to" can be reached
30         std::vector<int> const getReachableTo(int to, bool clear_visited);
31         /// \return a vector of the vertices that can be reached from "from"
32         std::vector<int> const
33                 getReachable(int from, bool only_viewable, bool clear_visited);
34         /// Can "from" be reached from "to"?
35         bool isReachable(int from, int to);
36         /// Find a path from "from" to "to".
37         EdgePath const getPath(int from, int to);
38         /// Called repeatedly to build the graph.
39         void addEdge(int from, int to);
40         /// Reset the internal data structures.
41         void init(int size);
42
43 private:
44         ///
45         bool bfs_init(int, bool clear_visited = true);
46
47         ///
48         class Vertex {
49         public:
50                 /// vertices that point at this one
51                 std::vector<int> in_vertices;
52                 /// vertices immediately accessible from this one
53                 std::vector<int> out_vertices;
54                 /// a set of indices corresponding to the out_vertices
55                 std::vector<int> out_edges;
56         };
57         ///
58         static std::vector<Vertex> vertices_;
59         /// used to keep track of which vertices we have seen
60         std::vector<bool> visited_;
61         ///
62         std::queue<int> Q_;
63
64         int numedges_;
65
66 };
67
68
69
70 } // namespace lyx
71
72 #endif //GRAPH_H