# HG changeset patch
# User Nathann Cohen <nathann.cohen@gmail.com>
# Date 1283794498 -7200
# Node ID c69445891b5df21b115eb7d137a88c7b7cd3efc8
# Parent bf1a3fa845ce5a0983cc9dc7fdd0c814cd8b906d
trac #9861 - Improving the Graph Theory table of contents
diff -r bf1a3fa845ce -r c69445891b5d doc/en/reference/graphs.rst
a
|
b
|
|
1 | 1 | Graph Theory |
2 | 2 | ============ |
3 | 3 | |
| 4 | Graph objects and methods |
| 5 | ------------------------- |
| 6 | |
4 | 7 | .. toctree:: |
5 | | :maxdepth: 2 |
| 8 | :maxdepth: 1 |
6 | 9 | |
7 | 10 | sage/graphs/generic_graph |
8 | 11 | sage/graphs/graph |
9 | 12 | sage/graphs/digraph |
10 | 13 | sage/graphs/bipartite_graph |
11 | 14 | |
12 | | sage/graphs/cliquer |
13 | | sage/graphs/graph_coloring |
| 15 | |
| 16 | Constructors and databases |
| 17 | -------------------------- |
| 18 | |
| 19 | .. toctree:: |
| 20 | :maxdepth: 1 |
| 21 | |
| 22 | sage/graphs/graph_generators |
14 | 23 | sage/graphs/graph_database |
15 | | sage/graphs/graph_generators |
16 | | sage/graphs/graph_latex |
17 | | sage/graphs/graph_list |
| 24 | |
| 25 | Low-level implementation |
| 26 | ------------------------ |
| 27 | |
| 28 | .. toctree:: |
| 29 | :maxdepth: 1 |
18 | 30 | |
19 | 31 | sage/graphs/base/c_graph |
20 | 32 | sage/graphs/base/sparse_graph |
21 | 33 | sage/graphs/base/dense_graph |
22 | 34 | |
| 35 | Libraries of algorithms |
| 36 | -------------------- |
| 37 | |
| 38 | .. toctree:: |
| 39 | :maxdepth: 1 |
| 40 | |
| 41 | sage/graphs/graph_coloring |
| 42 | sage/graphs/cliquer |
23 | 43 | sage/graphs/pq_trees |
| 44 | sage/graphs/graph_latex |
| 45 | sage/graphs/graph_list |
| 46 | |
diff -r bf1a3fa845ce -r c69445891b5d sage/graphs/generic_graph.py
a
|
b
|
|
1 | 1 | r""" |
2 | 2 | Generic graphs |
3 | 3 | |
4 | | This module implements the base class for graphs and digraphs. |
| 4 | This module implements the base class for graphs and digraphs, and |
| 5 | methods that can be applied on both. |
5 | 6 | |
6 | 7 | Class and methods |
7 | 8 | ----------------- |
diff -r bf1a3fa845ce -r c69445891b5d sage/graphs/graph.py
a
|
b
|
|
1 | 1 | r""" |
2 | | Graph Theory |
3 | | |
4 | | This module implements many graph theoretic operations and |
5 | | concepts. |
| 2 | Undirected Graphs |
| 3 | |
| 4 | This module implements functions and operations involving undirected |
| 5 | graphs. |
6 | 6 | |
7 | 7 | AUTHORS: |
8 | 8 | |
diff -r bf1a3fa845ce -r c69445891b5d sage/graphs/graph_database.py
a
|
b
|
|
1 | 1 | """ |
2 | | Graph Database Module |
| 2 | Graph Database |
3 | 3 | |
4 | 4 | INFO: |
5 | 5 | |
diff -r bf1a3fa845ce -r c69445891b5d sage/graphs/graph_generators.py
a
|
b
|
|
1 | 1 | r""" |
2 | | A Collection of Constructors of Common Graphs |
| 2 | Common Graphs |
3 | 3 | |
4 | 4 | Usage |
5 | 5 | ===== |
diff -r bf1a3fa845ce -r c69445891b5d sage/graphs/graph_list.py
a
|
b
|
|
1 | 1 | r""" |
2 | | A module for dealing with lists of graphs. |
| 2 | Lists of graphs. |
3 | 3 | |
4 | 4 | AUTHORS: |
5 | 5 | |