diff -r 94387da47f79 -r c5fd2d996909 lemon/connectivity.h --- a/lemon/connectivity.h Thu Mar 05 10:13:20 2009 +0000 +++ b/lemon/connectivity.h Sun Mar 29 23:08:20 2009 +0200 @@ -46,7 +46,7 @@ /// /// Check whether the given undirected graph is connected. /// \param graph The undirected graph. - /// \return %True when there is path between any two nodes in the graph. + /// \return \c true when there is path between any two nodes in the graph. /// \note By definition, the empty graph is connected. template bool connected(const Graph& graph) { @@ -234,7 +234,7 @@ /// Check whether the given directed graph is strongly connected. The /// graph is strongly connected when any two nodes of the graph are /// connected with directed paths in both direction. - /// \return %False when the graph is not strongly connected. + /// \return \c false when the graph is not strongly connected. /// \see connected /// /// \note By definition, the empty graph is strongly connected. @@ -709,7 +709,7 @@ /// on same circle. /// /// \param graph The graph. - /// \return %True when the graph bi-node-connected. + /// \return \c true when the graph bi-node-connected. template bool biNodeConnected(const Graph& graph) { return countBiNodeConnectedComponents(graph) <= 1; @@ -1230,7 +1230,7 @@ /// from 0 to the number of the nodes in the graph minus one. Each values /// of the map will be set exactly once, the values will be set descending /// order. - /// \return %False when the graph is not DAG. + /// \return \c false when the graph is not DAG. /// /// \see topologicalSort /// \see dag @@ -1279,7 +1279,7 @@ /// /// Check that the given directed graph is a DAG. The DAG is /// an Directed Acyclic Digraph. - /// \return %False when the graph is not DAG. + /// \return \c false when the graph is not DAG. /// \see acyclic template bool dag(const Digraph& digraph) { @@ -1321,7 +1321,7 @@ /// /// Check that the given undirected graph acyclic. /// \param graph The undirected graph. - /// \return %True when there is no circle in the graph. + /// \return \c true when there is no circle in the graph. /// \see dag template bool acyclic(const Graph& graph) { @@ -1355,7 +1355,7 @@ /// /// Check that the given undirected graph is tree. /// \param graph The undirected graph. - /// \return %True when the graph is acyclic and connected. + /// \return \c true when the graph is acyclic and connected. template bool tree(const Graph& graph) { checkConcept(); @@ -1448,7 +1448,7 @@ /// The function checks if the given undirected \c graph graph is bipartite /// or not. The \ref Bfs algorithm is used to calculate the result. /// \param graph The undirected graph. - /// \return %True if \c graph is bipartite, %false otherwise. + /// \return \c true if \c graph is bipartite, \c false otherwise. /// \sa bipartitePartitions template inline bool bipartite(const Graph &graph){ @@ -1489,7 +1489,7 @@ /// \param graph The undirected graph. /// \retval partMap A writable bool map of nodes. It will be set as the /// two partitions of the graph. - /// \return %True if \c graph is bipartite, %false otherwise. + /// \return \c true if \c graph is bipartite, \c false otherwise. template inline bool bipartitePartitions(const Graph &graph, NodeMap &partMap){ using namespace _connectivity_bits;