2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-31 20:22:09 +00:00

Andreas's Patch

[SVN r8323]
This commit is contained in:
Jeremy Siek
2000-11-25 16:00:25 +00:00
parent 644a810441
commit 30dd7b8d20

View File

@@ -130,7 +130,7 @@ int read_dimacs_max_flow(Graph& g,
- does service functions
*/
while (std::getline(cin, in_line)) {
while (std::getline(std::cin, in_line)) {
++no_lines;
switch (in_line[0]) {
@@ -161,10 +161,11 @@ int read_dimacs_max_flow(Graph& g,
if ( n <= 0 || m <= 0 )
/*wrong value of no of arcs or nodes*/
{ err_no = EN4; goto error; }
for (long vi = 0; vi < n; ++vi)
verts.push_back(add_vertex(g));
{
for (long vi = 0; vi < n; ++vi)
verts.push_back(add_vertex(g));
}
break;
case 'n': /* source(s) description */