#include <iostream>
#include <lemon/error.h>
#include <lemon/lemon_reader.h>
Go to the source code of this file.
Namespaces | |
namespace | lemon |
Classes | |
class | GraphReader |
The graph reader class. More... | |
class | UGraphReader |
The undirected graph reader class. More... | |
Functions | |
template<typename Graph> | |
GraphReader< Graph > | lemon::graphReader (std::istream &is, Graph &g) |
Read a graph from the input. | |
template<typename Graph> | |
GraphReader< Graph > | lemon::graphReader (const std::string &fn, Graph &g) |
Read a graph from the input. | |
template<typename Graph> | |
UGraphReader< Graph > | lemon::uGraphReader (std::istream &is, Graph &g) |
Read an undirected graph from the input. | |
template<typename Graph> | |
UGraphReader< Graph > | lemon::uGraphReader (const std::string &fn, Graph &g) |
Read an undirected graph from the input. |