[Lemon-commits] Balazs Dezso: Doc fix in BpGraphs (#69)
Lemon HG
hg at lemon.cs.elte.hu
Fri Mar 1 17:49:48 CET 2013
details: http://lemon.cs.elte.hu/hg/lemon/rev/4441b066368c
changeset: 1196:4441b066368c
user: Balazs Dezso <deba [at] inf.elte.hu>
date: Wed Jan 11 22:58:05 2012 +0100
description:
Doc fix in BpGraphs (#69)
diffstat:
lemon/concepts/bpgraph.h | 8 ++++----
lemon/concepts/graph_components.h | 12 ++++++------
2 files changed, 10 insertions(+), 10 deletions(-)
diffs (90 lines):
diff --git a/lemon/concepts/bpgraph.h b/lemon/concepts/bpgraph.h
--- a/lemon/concepts/bpgraph.h
+++ b/lemon/concepts/bpgraph.h
@@ -774,28 +774,28 @@
/// \brief Converts the node to red node object.
///
- /// This class is converts unsafely the node to red node
+ /// This function converts unsafely the node to red node
/// object. It should be called only if the node is from the red
/// partition or INVALID.
RedNode asRedNodeUnsafe(const Node&) const { return RedNode(); }
/// \brief Converts the node to blue node object.
///
- /// This class is converts unsafely the node to blue node
+ /// This function converts unsafely the node to blue node
/// object. It should be called only if the node is from the red
/// partition or INVALID.
BlueNode asBlueNodeUnsafe(const Node&) const { return BlueNode(); }
/// \brief Converts the node to red node object.
///
- /// This class is converts safely the node to red node
+ /// This function converts safely the node to red node
/// object. If the node is not from the red partition, then it
/// returns INVALID.
RedNode asRedNode(const Node&) const { return RedNode(); }
/// \brief Converts the node to blue node object.
///
- /// This class is converts unsafely the node to blue node
+ /// This function converts unsafely the node to blue node
/// object. If the node is not from the blue partition, then it
/// returns INVALID.
BlueNode asBlueNode(const Node&) const { return BlueNode(); }
diff --git a/lemon/concepts/graph_components.h b/lemon/concepts/graph_components.h
--- a/lemon/concepts/graph_components.h
+++ b/lemon/concepts/graph_components.h
@@ -318,7 +318,7 @@
/// \brief Class to represent red nodes.
///
/// This class represents the red nodes of the graph. The red
- /// nodes can be used also as normal nodes.
+ /// nodes can also be used as normal nodes.
class RedNode : public Node {
typedef Node Parent;
@@ -347,7 +347,7 @@
/// \brief Class to represent blue nodes.
///
/// This class represents the blue nodes of the graph. The blue
- /// nodes can be used also as normal nodes.
+ /// nodes can also be used as normal nodes.
class BlueNode : public Node {
typedef Node Parent;
@@ -402,28 +402,28 @@
/// \brief Converts the node to red node object.
///
- /// This class is converts unsafely the node to red node
+ /// This function converts unsafely the node to red node
/// object. It should be called only if the node is from the red
/// partition or INVALID.
RedNode asRedNodeUnsafe(const Node&) const { return RedNode(); }
/// \brief Converts the node to blue node object.
///
- /// This class is converts unsafely the node to blue node
+ /// This function converts unsafely the node to blue node
/// object. It should be called only if the node is from the red
/// partition or INVALID.
BlueNode asBlueNodeUnsafe(const Node&) const { return BlueNode(); }
/// \brief Converts the node to red node object.
///
- /// This class is converts safely the node to red node
+ /// This function converts safely the node to red node
/// object. If the node is not from the red partition, then it
/// returns INVALID.
RedNode asRedNode(const Node&) const { return RedNode(); }
/// \brief Converts the node to blue node object.
///
- /// This class is converts unsafely the node to blue node
+ /// This function converts unsafely the node to blue node
/// object. If the node is not from the blue partition, then it
/// returns INVALID.
BlueNode asBlueNode(const Node&) const { return BlueNode(); }
More information about the Lemon-commits
mailing list