demo/reader_writer_demo.cc
author alpar
Wed, 17 Aug 2005 21:52:50 +0000
changeset 1640 9c7834ac5e64
parent 1636 260ac104190f
child 1641 77f6ab7ad66f
permissions -rw-r--r--
- Better insertion of sources examples
- Superfluous #include removed from reader_writer_demo.cc
     1 /* -*- C++ -*-
     2  * demo/reader_writer_demo.cc - Part of LEMON, a generic C++ optimization
     3  * library
     4  *
     5  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     6  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     7  *
     8  * Permission to use, modify and distribute this software is granted
     9  * provided that this copyright notice appears in all copies. For
    10  * precise terms see the accompanying LICENSE file.
    11  *
    12  * This software is provided "AS IS" with no warranty of any kind,
    13  * express or implied, and with no claim as to its suitability for any
    14  * purpose.
    15  *
    16  */
    17 
    18 ///\ingroup demos
    19 ///\file
    20 ///\brief Demonstrating graph input and output
    21 ///
    22 /// This simple demo program gives an example of how to read and write
    23 /// a graph and additional maps (on the nodes or the edges) from/to a
    24 /// stream. 
    25 
    26 
    27 #include <iostream>
    28 #include <lemon/smart_graph.h>
    29 #include <lemon/graph_reader.h>
    30 #include <lemon/graph_writer.h>
    31 
    32 
    33 using namespace lemon;
    34 
    35 int main() {
    36   SmartGraph graph;
    37 
    38   try {
    39     std::string filename="sample.lgf";
    40     GraphReader<SmartGraph> reader(filename,graph);
    41     SmartGraph::EdgeMap<int> cap(graph);
    42     reader.readEdgeMap("capacity",cap);
    43     reader.run();
    44 
    45     std::cout << "Hello! We have read a graph from file " << filename<< 
    46       " and some maps on it:\n now we write it to the standard output!" << 
    47       std::endl;
    48 
    49 
    50     GraphWriter<SmartGraph> writer(std::cout, graph);
    51     writer.writeEdgeMap("multiplicity", cap);
    52     writer.run();
    53      
    54   } catch (DataFormatError& error) {
    55     std::cerr << error.what() << std::endl;
    56   }
    57 
    58 
    59   return 0;
    60 }