diff --git a/doc/adjacency_list.html b/doc/adjacency_list.html index 10cc75f1..9e55403a 100644 --- a/doc/adjacency_list.html +++ b/doc/adjacency_list.html @@ -1,7 +1,7 @@ - - -
+ + +
+
+
Computes an edge coloring for the vertices in the graph, using
-an algorithm proposed by Mista et al. []. Given edges ordered
+an algorithm proposed by Misra et al. []. Given edges ordered
e1, e2, ..., en it assignes a
colors c1, c2, ..., cn in a way
that no vertex connects with 2 edges of the same color. Furthermore
@@ -95,4 +95,4 @@ Maciej Piechotka (uzytkownik2@gmail.com
-
+
diff --git a/doc/subgraph.html b/doc/subgraph.html
index 90c6019c..c624c410 100644
--- a/doc/subgraph.html
+++ b/doc/subgraph.html
@@ -1,17 +1,17 @@
+
+
@@ -187,7 +187,7 @@ the underlying Graph type.
graph_traits<subgraph>::vertex_descriptor
- The type for the vertex descriptors.
+ The type for the vertex descriptors.
(Required by Graph.)
graph_traits<subgraph>::edge_descriptor- The type for the edge descriptors. + The type for the edge descriptors. (Required by Graph.)
graph_traits<subgraph>::vertex_iterator- The type for the iterators returned by vertices. + The type for the iterators returned by vertices. (Required by VertexListGraph.)
graph_traits<subgraph>::edge_iterator- The type for the iterators returned by edges. + The type for the iterators returned by edges. (Required by EdgeListGraph.)
graph_traits<subgraph>::out_edge_iterator- The type for the iterators returned by out_edges. + The type for the iterators returned by out_edges. (Required by IncidenceGraph.)
graph_traits<subgraph>::adjacency_iterator- The type for the iterators returned by adjacent_vertices. + The type for the iterators returned by adjacent_vertices. (Required by AdjacencyGraph.)
std::pair<children_iterator, children_iterator> children() const-Return an iterator pair for accessing the children subgraphs. +Return an iterator pair for accessing the children subgraphs. @@ -441,7 +441,7 @@ out_edges(vertex_descriptor u_local, const subgraph& g) Returns an iterator range providing access to the out-edges of vertex u in subgraph g. If the graph is undirected, this iterator range provides access to all edge incident on - vertex u. + vertex u. (Required by IncidenceGraph.)
degree_size_type in_degree(vertex_descriptor u_local, const subgraph& g)- Returns the number of edges entering vertex u in subgraph g. + Returns the number of edges entering vertex u in subgraph g. (Required by BidirectionalGraph.)