File: table_of_contents.html

package info (click to toggle)
boost 1.32.0-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 93,952 kB
  • ctags: 128,458
  • sloc: cpp: 492,477; xml: 52,125; python: 13,519; ansic: 13,013; sh: 1,773; yacc: 853; makefile: 526; perl: 418; lex: 110; csh: 6
file content (248 lines) | stat: -rw-r--r-- 12,719 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<HTML>
<!--
  -- Copyright (c) Jeremy Siek, Lie-Quan Lee, and Andrew Lumsdaine 2000
  --
  -- Permission to use, copy, modify, distribute and sell this software
  -- and its documentation for any purpose is hereby granted without fee,
  -- provided that the above copyright notice appears in all copies and
  -- that both that copyright notice and this permission notice appear
  -- in supporting documentation.  We make no
  -- representations about the suitability of this software for any
  -- purpose.  It is provided "as is" without express or implied warranty.
  -->
<Head>
<Title>Table of Contents: Boost Graph Library</Title>
<BODY BGCOLOR="#ffffff" LINK="#0000ee" TEXT="#000000" VLINK="#551a8b" 
        ALINK="#ff0000"> 
<IMG SRC="../../../boost.png" 
     ALT="C++ Boost" width="277" height="86"> 

<BR Clear>

<h1>Table of Contents: the Boost Graph Library
<a href="http://www.awprofessional.com/catalog/product.asp?product_id={B7B10FCE-2354-4A3E-8792-FCFCECDB355D}">
<img src="bgl-cover.jpg" ALT="BGL Book" ALIGN="RIGHT"></a>
</h1>

      <OL>
        <LI><A Href="./index.html">Introduction to the BGL</A>
        <LI><A Href="./history.html">History</A>
        <LI><A Href="./users.html">List of BGL Users</A>
        <LI><A Href="./publications.html">Publications</A>
        <LI><A Href="./acknowledgements.html">Acknowledgements</A>
        <LI><A href="./quick_tour.html">A Quick Tour of the Boost Graph Library.</a>
        <LI><A Href="graph_theory_review.html">Review of Elementary Graph Theory</A>
        <LI>Boost Graph Library Tutorial
           <OL>
            <LI><a
            href="./using_property_maps.html">Property Maps</a>
            <LI><a
            href="./using_adjacency_list.html">The <tt>adjacency_list</tt> class</a>
           </OL>
        <LI>Examples
           <OL>
            <LI><a href="./file_dependency_example.html">File
            Dependency Example</a>
            <LI><a href="./kevin_bacon.html">Six Degrees of Kevin Bacon</a>
            <LI><a href="./graph_coloring.html">Graph Coloring</a>
            <LI><a href="./sparse_matrix_ordering.html">Sparse Matrix
            Ordering</a>
           </OL>
        <LI>Extending the Boost Graph Library
         <OL>
           <LI><a href="./constructing_algorithms.html">Constructing graph algorithms with BGL</a>
           <LI><a href="./leda_conversion.html">Converting Existing Graphs to BGL</a>
         </OL>
        <LI><A href="./graph_concepts.html">The Boost Graph Interface</A>
         <OL>
           <LI><A href="./Graph.html">Graph</A>
           <LI><A href="./IncidenceGraph.html">Incidence Graph</A>
           <LI><A href="./BidirectionalGraph.html">Bidirectional Graph</A>
           <LI><A href="./AdjacencyGraph.html">Adjacency Graph</A>
           <LI><A href="./VertexListGraph.html">Vertex List Graph</A>
           <LI><A href="./EdgeListGraph.html">Edge List Graph</A>
           <LI><A href="./VertexAndEdgeListGraph.html">Vertex and Edge List Graph</A>
           <LI><A href="./MutableGraph.html">Mutable Graph</A>
           <LI><A href="./PropertyGraph.html">Property Graph</A>
           <LI><A href="./MutablePropertyGraph.html">Mutable Property Graph</A>
         </OL>
        <li><a href="../../property_map/property_map.html">The Property Map Library</a> (technically not part of the graph library, but used a lot here)
        <li><a href="./visitor_concepts.html">Visitor Concepts</a>
          <OL>
            <LI><a href="./BFSVisitor.html">BFS Visitor</a>
            <LI><a href="./DFSVisitor.html">DFS Visitor</a>
            <LI><a href="./DijkstraVisitor.html">Dijkstra Visitor</a>
            <LI><a href="./BellmanFordVisitor.html">Bellman Ford Visitor</a>
            <LI><a href="./EventVisitor.html">Event Visitor</a>
          </OL>
        <li>EventVisitorList Adaptors
          <OL>
            <LI><a href="./EventVisitorList.html">Event Visitor List</a>
            <LI><a href="./bfs_visitor.html"><tt>bfs_visitor</tt></a>
            <LI><a href="./dfs_visitor.html"><tt>dfs_visitor</tt></a>
            <LI><a href="./dijkstra_visitor.html"><tt>dijkstra_visitor</tt></a>
            <LI><a href="./bellman_visitor.html"><tt>bellman_visitor</tt></a>
          </OL>
        <li>Event Visitors
          <OL>
            <LI><a href="./predecessor_recorder.html"><tt>predecessor_recorder</tt></a>
            <LI><a href="./distance_recorder.html"><tt>distance_recorder</tt></a>
            <LI><a href="./time_stamper.html"><tt>time_stamper</tt></a>
            <LI><a href="./property_writer.html"><tt>property_writer</tt></a>
          </OL>
        <LI>Graph classes
          <OL>
            <LI><A href="./adjacency_list.html"><tt>adjacency_list</tt></A>
            <LI><A href="./adjacency_matrix.html"><tt>adjacency_matrix</tt></A>
          </OL>
        <LI>Graph Adaptors
          <OL>
            <LI><A href="./subgraph.html"><tt>subgraph</tt></A>
            <LI><A href="./edge_list.html"><tt>edge_list</tt></A>
            <LI><A href="./reverse_graph.html"><tt>reverse_graph</tt></A>
            <LI><A href="./filtered_graph.html"><tt>filtered_graph</tt></A>
            <LI><A href="../../../boost/graph/vector_as_graph.hpp">Vector as Graph </A><a href="#*">*</a>
            <LI><A href="../../../boost/graph/matrix_as_graph.hpp">Matrix as Graph</A><a href="#*">*</a>
            <LI><A href="../../../boost/graph/leda_graph.hpp">Leda Graph </A><a href="#*">*</a>
            <LI><A href="./stanford_graph.html">Stanford GraphBase</A>
           </OL>
        <LI>Iterator Adaptors
          <OL>
            <LI><a
            href="./adjacency_iterator.html"><tt>adjacency_iterator</tt></a>
            <LI><a
            href="./inv_adjacency_iterator.html"><tt>inv_adjacency_iterator</tt></a>
          </OL>
        <LI>Traits classes
          <OL>
            <LI><a href="./graph_traits.html"><tt>graph_traits</tt></a>
            <LI><a href="./adjacency_list_traits.html"><tt>adjacency_list_traits</tt></a>
            <LI><a href="./property_map.html"><tt>property_map</tt></a>
          </OL>
        <LI>Algorithms
          <OL>
            <LI><a href="./bgl_named_params.html"><tt>bgl_named_params</tt></a>
            <LI>Core Algorithm Patterns
              <OL>
                <LI><A href="./breadth_first_search.html"><tt>breadth_first_search</tt></A>
                <LI><A href="./breadth_first_visit.html"><tt>breadth_first_visit</tt></A>
                <LI><A
                href="./depth_first_search.html"><tt>depth_first_search</tt></A>
                <LI><A href="./depth_first_visit.html"><tt>depth_first_visit</tt></A>
                <LI><A
                href="./undirected_dfs.html"><tt>undirected_dfs</tt></A>
                <LI><tt>uniform_cost_search</tt> (deprecated, use Dijkstra's instead)
              </OL>
            <LI>Graph Algorithms
              <OL>
                <LI>Shortest Paths Algorithms
                  <OL>
                    <LI><A href="./dijkstra_shortest_paths.html"><tt>dijkstra_shortest_paths</tt></A>
                    <LI><A href="./bellman_ford_shortest.html"><tt>bellman_ford_shortest_paths</tt></A>
                    <LI><A href="./dag_shortest_paths.html"><tt>dag_shortest_paths</tt></A>
                    <LI><A
                    href="./johnson_all_pairs_shortest.html"><tt>johnson_all_pairs_shortest_paths</tt></A>
                  </OL>
                <LI>Minimum Spanning Tree Algorithms
                  <OL>
                    <LI><A
                    href="./kruskal_min_spanning_tree.html"><tt>kruskal_minimum_spanning_tree</tt></A>
                    <LI><A
                    href="./prim_minimum_spanning_tree.html"><tt>prim_minimum_spanning_tree</tt></A>
                  </OL>
                <LI><A href="./connected_components.html"><tt>connected_components</tt></A>
                <LI><A href="./strong_components.html"><tt>strong_components</tt></A>

                <LI><a href="./incremental_components.html">Incremental Connected Components</a>
                  <OL>
                    <LI><A href="./incremental_components.html#sec:initialize-incremental-components"><tt>initialize_incremental_components</tt></A>
                    <LI><A href="./incremental_components.html#sec:incremental-components"><tt>incremental_components</tt></A>
                    <LI><A
                    href="./incremental_components.html#sec:same-component"><tt>same_component</tt></A>
                    <LI><A href="./incremental_components.html#sec:component-index"><tt>component_index</tt></A>
                  </OL>
                <LI>Maximum Flow Algorithms
                  <OL>
                    <LI><A href="./edmunds_karp_max_flow.html"><tt>edmunds_karp_max_flow</tt></A>
                    <LI><A href="./push_relabel_max_flow.html"><tt>push_relabel_max_flow</tt></A>

                  </OL>

                <LI><A href="./topological_sort.html"><tt>topological_sort</tt></A>
                <li><a href="./transitive_closure.html"><tt>transitive_closure</tt></a>
                <LI><A href="./copy_graph.html"><tt>copy_graph</tt></A>
                <LI><A href="./transpose_graph.html"><tt>transpose_graph</tt></A>
                <LI><A href="./isomorphism.html"><tt>isomorphism</tt></A>
                <LI><A
                href="./cuthill_mckee_ordering.html"><tt>cuthill_mckee_ordering</tt></a>
                <LI><A
                href="../../../boost/graph/sequential_vertex_coloring.hpp"><tt>sequential_vertex_coloring</tt></A><a
                href="#*">*</a>
                <LI><a href="./minimum_degree_ordering.html"><tt>minimum_degree_ordering</tt></a>
                <li><a href="./sloan_ordering.htm"><tt>sloan_ordering</tt></a></li>
                <LI><A href="./wavefront.htm"><tt>ith_wavefront</tt>, <tt>max_wavefront</tt>, <tt>aver_wavefront</tt>, and <tt>rms_wavefront</tt></A></LI>
                <LI><A href="betweenness_centrality.html"><tt>brandes_betweenness_centrality</tt></A></LI>
                <li>Layout algorithms
                  <ol>
                    <li><a href="circle_layout.html"><tt>circle_layout</tt></a></li>
                    <li><a href="kamada_kawai_spring_layout.html"><tt>kamada_kawai_spring_layout</tt></a></li>
                  </ol>
                  </li>
                <li>Clustering algorithms
                  <ol>
                    <li><a href="bc_clustering.html"><tt>betweenness_centrality_clustering</tt></li>
                  </ol>
                </li>
            </OL>
         </OL>

      <LI>AT&amp;T Graphviz Read/Write Utilities
        <OL>
          <LI><a href="./write-graphviz.html">write_graphviz</a>
          <LI><a href="./read-graphviz.html">read_graphviz</a>
        </OL>

      <LI>Auxiliary Concepts, Classes, and Functions
        <OL>
          <LI><a href="./property.html"><tt>property</tt></a>
          <LI><a href="./ColorValue.html">ColorValue</a>
          <LI><a href="./Buffer.html">Buffer</a>
          <LI><a href="./BasicMatrix.html">BasicMatrix</a>
          <LI><a href="./incident.html"><tt>incident</tt></a>
          <LI><a href="./opposite.html"><tt>opposite</tt></a>
               <LI><a href="./bandwidth.html#sec:bandwidth"><tt>bandwidth</tt></a>
             <LI><a href="./bandwidth.html#sec:ith-bandwidth"><tt>ith_bandwidth</tt></a>
          <LI><a href="./random.html">Tools for random graphs</a>
          <OL>
          <LI><a href="./random.html#random_vertex">random_vertex</a>
          <LI><a href="./random.html#random_edge">random_edge</a>
          <LI><a href="./random.html#generate_random_graph">generate_random_graph</a>
          <LI><a href="./random.html#randomize_property">randomize_property</a>
          </OL>
        </OL>
      <LI><a href="./challenge.html">Challenge and To-Do List</a>
      <LI><a href="./trouble_shooting.html">Trouble Shooting</a>
      <LI><a href="./known_problems.html">Known Problems</a>
      <LI><a href="./faq.html">FAQ</a>
      <LI><a href="http://siek.info/bgl.html">BGL Book Errata</a>
      </OL>
<p>

<a name="*">*</a> Items marked have not yet been documented.

<br>
<HR>
<TABLE>
<TR valign=top>
<TD nowrap>Copyright &copy 2000-2001</TD><TD>
<A HREF="../../../people/jeremy_siek.htm">Jeremy Siek</A>,
Indiana University (<A
HREF="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</A>)<br>
<A HREF="../../../people/liequan_lee.htm">Lie-Quan Lee</A>, Indiana University (<A HREF="mailto:llee@cs.indiana.edu">llee@cs.indiana.edu</A>)<br>
<A HREF=http://www.osl.iu.edu/~lums>Andrew Lumsdaine</A>,
Indiana University (<A
HREF="mailto:lums@osl.iu.edu">lums@osl.iu.edu</A>)
</TD></TR></TABLE>

</BODY>
</HTML>