0
3
0
| ... | ... |
@@ -69,28 +69,36 @@ |
| 69 | 69 |
describe the arcs. The first two tokens of each line are |
| 70 | 70 |
the source and the target node of the arc, respectively, then come the map |
| 71 | 71 |
values. The source and target tokens must be node labels. |
| 72 | 72 |
|
| 73 | 73 |
\code |
| 74 | 74 |
@arcs |
| 75 | 75 |
capacity |
| 76 | 76 |
1 2 16 |
| 77 | 77 |
1 3 12 |
| 78 | 78 |
2 3 18 |
| 79 | 79 |
\endcode |
| 80 | 80 |
|
| 81 |
The \c \@edges is just a synonym of \c \@arcs. |
|
| 81 |
The \c \@edges is just a synonym of \c \@arcs. The @arcs section can |
|
| 82 |
also store the edge set of an undirected graph. In such case there is |
|
| 83 |
a conventional method for store arc maps in the file, if two columns |
|
| 84 |
has the same caption with \c '+' and \c '-' prefix, then these columns |
|
| 85 |
can be regarded as the values of an arc map. |
|
| 82 | 86 |
|
| 83 | 87 |
The \c \@attributes section contains key-value pairs, each line |
| 84 |
consists of two tokens, an attribute name, and then an attribute |
|
| 88 |
consists of two tokens, an attribute name, and then an attribute |
|
| 89 |
value. The value of the attribute could be also a label value of a |
|
| 90 |
node or an edge, or even an edge label prefixed with \c '+' or \c '-', |
|
| 91 |
which regards to the forward or backward directed arc of the |
|
| 92 |
corresponding edge. |
|
| 85 | 93 |
|
| 86 | 94 |
\code |
| 87 | 95 |
@attributes |
| 88 | 96 |
source 1 |
| 89 | 97 |
target 3 |
| 90 | 98 |
caption "LEMON test digraph" |
| 91 | 99 |
\endcode |
| 92 | 100 |
|
| 93 | 101 |
The \e LGF can contain extra sections, but there is no restriction on |
| 94 | 102 |
the format of such sections. |
| 95 | 103 |
|
| 96 | 104 |
*/ |
| ... | ... |
@@ -1217,24 +1217,30 @@ |
| 1217 | 1217 |
template <typename Graph> |
| 1218 | 1218 |
GraphReader<Graph> graphReader(const char *fn, Graph& graph); |
| 1219 | 1219 |
|
| 1220 | 1220 |
/// \ingroup lemon_io |
| 1221 | 1221 |
/// |
| 1222 | 1222 |
/// \brief \ref lgf-format "LGF" reader for undirected graphs |
| 1223 | 1223 |
/// |
| 1224 | 1224 |
/// This utility reads an \ref lgf-format "LGF" file. |
| 1225 | 1225 |
/// |
| 1226 | 1226 |
/// It can be used almost the same way as \c DigraphReader. |
| 1227 | 1227 |
/// The only difference is that this class can handle edges and |
| 1228 | 1228 |
/// edge maps as well as arcs and arc maps. |
| 1229 |
/// |
|
| 1230 |
/// The columns in the \c \@edges (or \c \@arcs) section are the |
|
| 1231 |
/// edge maps. However, if there are two maps with the same name |
|
| 1232 |
/// prefixed with \c '+' and \c '-', then these can be read into an |
|
| 1233 |
/// arc map. Similarly, an attribute can be read into an arc, if |
|
| 1234 |
/// it's value is an edge label prefixed with \c '+' or \c '-'. |
|
| 1229 | 1235 |
template <typename _Graph> |
| 1230 | 1236 |
class GraphReader {
|
| 1231 | 1237 |
public: |
| 1232 | 1238 |
|
| 1233 | 1239 |
typedef _Graph Graph; |
| 1234 | 1240 |
TEMPLATE_GRAPH_TYPEDEFS(Graph); |
| 1235 | 1241 |
|
| 1236 | 1242 |
private: |
| 1237 | 1243 |
|
| 1238 | 1244 |
std::istream* _is; |
| 1239 | 1245 |
bool local_is; |
| 1240 | 1246 |
| ... | ... |
@@ -905,24 +905,30 @@ |
| 905 | 905 |
template <typename Graph> |
| 906 | 906 |
GraphWriter<Graph> graphWriter(const char *fn, const Graph& graph); |
| 907 | 907 |
|
| 908 | 908 |
/// \ingroup lemon_io |
| 909 | 909 |
/// |
| 910 | 910 |
/// \brief \ref lgf-format "LGF" writer for directed graphs |
| 911 | 911 |
/// |
| 912 | 912 |
/// This utility writes an \ref lgf-format "LGF" file. |
| 913 | 913 |
/// |
| 914 | 914 |
/// It can be used almost the same way as \c DigraphWriter. |
| 915 | 915 |
/// The only difference is that this class can handle edges and |
| 916 | 916 |
/// edge maps as well as arcs and arc maps. |
| 917 |
/// |
|
| 918 |
/// The arc maps are written into the file as two columns, the |
|
| 919 |
/// caption of the columns are the name of the map prefixed with \c |
|
| 920 |
/// '+' and \c '-'. The arcs are written into the \c \@attributes |
|
| 921 |
/// section as a \c '+' or a \c '-' prefix (depends on the direction |
|
| 922 |
/// of the arc) and the label of corresponding edge. |
|
| 917 | 923 |
template <typename _Graph> |
| 918 | 924 |
class GraphWriter {
|
| 919 | 925 |
public: |
| 920 | 926 |
|
| 921 | 927 |
typedef _Graph Graph; |
| 922 | 928 |
TEMPLATE_GRAPH_TYPEDEFS(Graph); |
| 923 | 929 |
|
| 924 | 930 |
private: |
| 925 | 931 |
|
| 926 | 932 |
|
| 927 | 933 |
std::ostream* _os; |
| 928 | 934 |
bool local_os; |
0 comments (0 inline)