Turn off 32 bit only tests, cont'd.
3 \page read_write_bg Background of Reading and Writing
5 To read a map (on the nodes or edges)
6 the \ref lemon::GraphReader "GraphReader"
7 should know how to read a Value from the given map.
8 By the default implementation the input operator reads a value from
9 the stream and the type of the read value is the value type of the given map.
10 When the reader should skip a value in the stream, because you do not
11 want to store it in a map, the reader skips a character sequence without
14 If you want to change the functionality of the reader, you can use
15 template parameters to specialize it. When you give a reading
16 command for a map you can give a Reader type as template parameter.
17 With this template parameter you can control how the Reader reads
18 a value from the stream.
20 The reader has the next structure:
23 typedef TypeName Value;
25 void read(std::istream& is, Value& value);
29 For example, the \c "strings" nodemap contains strings and you do not need
30 the value of the string just the length. Then you can implement an own Reader
37 void read(std::istream& is, Value& value) {
44 reader.readNodeMap<LengthReader>("strings", lengthMap);
47 The global functionality of the reader class can be changed by giving a
48 special template parameter to the GraphReader class. By default, the
49 template parameter is \c DefaultReaderTraits. A reader traits class
50 should provide a nested template class Reader for each type, and a
51 DefaultReader for skipping a value.
53 The specialization of writing is very similar to that of reading.
55 \section u Undirected graphs
57 In a file describing an undirected graph (ugraph, for short) you find an
58 \c uedgeset section instead of the \c edgeset section. The first line of
59 the section describes the names of the maps on the undirected egdes and all
60 next lines describe one undirected edge with the the incident nodes and the
63 The format handles directed edge maps as a syntactical sugar???, if there
64 are two maps with names being the same with a \c '+' and a \c '-' prefix
65 then this will be read as a directed map.
69 label capacity +flow -flow
75 The \c edges section is changed to \c uedges section. This section
76 describes labeled edges and undirected edges. The directed edge label
77 should start with a \c '+' or a \c '-' prefix to decide the direction
87 There are similar classes to the \ref lemon::GraphReader "GraphReader" and
88 \ref lemon::GraphWriter "GraphWriter" which
89 handle the undirected graphs. These classes are
90 the \ref lemon::UGraphReader "UGraphReader"
91 and \ref lemon::UGraphWriter "UGraphWriter".
93 The \ref lemon::UGraphReader::readUEdgeMap() "readUEdgeMap()"
94 function reads an undirected map and the
95 \ref lemon::UGraphReader::readUEdge() "readUEdge()"
96 reads an undirected edge from the file,
99 reader.readUEdgeMap("capacity", capacityMap);
100 reader.readEdgeMap("flow", flowMap);
102 reader.readUEdge("u_edge", u_edge);
103 reader.readEdge("edge", edge);
106 \section advanced Advanced features
108 The graph reader and writer classes give an easy way to read and write
109 graphs. But sometimes we want more advanced features. In this case we can
110 use the more general <tt>lemon reader and writer</tt> interface.
112 The LEMON file format is a section oriented file format. It contains one or
113 more sections, each starting with a line identifying its type
114 (the word starting with the \c \@ character).
115 The content of the section this way cannot contain line with \c \@ first
116 character. The file may contains comment lines with \c # first character.
118 The \ref lemon::LemonReader "LemonReader"
119 and \ref lemon::LemonWriter "LemonWriter"
120 gives a framework to read and
121 write sections. There are various section reader and section writer
122 classes which can be attached to a \ref lemon::LemonReader "LemonReader"
123 or a \ref lemon::LemonWriter "LemonWriter".
125 There are default section readers and writers for reading and writing
126 item sets, and labeled items in the graph. These read and write
127 the format described above. Other type of data can be handled with own
128 section reader and writer classes which are inherited from the
129 \c LemonReader::SectionReader or the
130 \ref lemon::LemonWriter::SectionWriter "LemonWriter::SectionWriter"
133 The next example defines a special section reader which reads the
134 \c \@description sections into a string:
137 class DescriptionReader : LemonReader::SectionReader {
139 virtual bool header(const std::string& line) {
140 std::istringstream ls(line);
143 return head == "@description";
146 virtual void read(std::istream& is) {
148 while (getline(is, line)) {
154 typedef LemonReader::SectionReader Parent;
156 DescriptionReader(LemonReader& reader) : Parent(reader) {}
158 const std::string& description() const {
167 The other advanced stuff of the generalized file format is that
168 multiple edgesets can be stored to the same nodeset. It can be used
169 for example as a network traffic matrix.
171 In our example there is a network with symmetric links and there are assymetric
172 traffic request on the network. This construction can be stored in an
173 undirected graph and in a directed \c ListEdgeSet class. The example
174 shows the input with the \ref lemon::LemonReader "LemonReader" class:
178 ListUGraph::UEdgeMap<double> capacity;
179 ListEdgeSet<ListUGraph> traffic(network);
180 ListEdgeSet<ListUGraph>::EdgeMap<double> request(network);
182 LemonReader reader(std::cin);
183 NodeSetReader<ListUGraph> nodesetReader(reader, network);
184 UEdgeSetReader<ListUGraph>
185 uEdgesetReader(reader, network, nodesetReader);
186 uEdgesetReader.readEdgeMap("capacity", capacity);
187 EdgeSetReader<ListEdgeSet<ListUGraph> >
188 edgesetReader(reader, traffic, nodesetReader, "traffic");
189 edgesetReader.readEdgeMap("request", request);
194 Because both the \ref lemon::GraphReader "GraphReader"
195 and the \ref lemon::UGraphReader "UGraphReader" can be converted
196 to \ref lemon::LemonReader "LemonReader"
197 and it can resolve the label's of the items, the previous
198 result can be achived with the \ref lemon::UGraphReader "UGraphReader"
204 ListUGraph::UEdgeSet<double> capacity;
205 ListEdgeSet<ListUGraph> traffic(network);
206 ListEdgeSet<ListUGraph>::EdgeMap<double> request(network);
208 UGraphReader<ListUGraph> reader(std::cin, network);
209 reader.readEdgeMap("capacity", capacity);
210 EdgeSetReader<ListEdgeSet<ListUGraph> >
211 edgesetReader(reader, traffic, reader, "traffic");
212 edgesetReader.readEdgeMap("request", request);