|
Files |
file | graph_reader.h |
| Lemon Graph Format reader.
|
file | graph_to_eps.h |
| Simple graph drawer.
|
file | graph_writer.h |
| Lemon Graph Format writer.
|
file | lemon_reader.h |
| Lemon Format reader.
|
file | lemon_writer.h |
| Lemon Format writer.
|
Modules |
| DIMACS format |
| Read and write files in DIMACS format.
|
Classes |
class | GraphReader |
| The graph reader class. More...
|
class | UGraphReader |
| The undirected graph reader class. More...
|
class | GraphWriter |
| The graph writer class. More...
|
class | UGraphWriter |
| The undirected graph writer class. More...
|
class | LemonReader |
| Lemon Format reader class. More...
|
class | NodeSetReader |
| SectionReader for reading a graph's nodeset. More...
|
class | EdgeSetReader |
| SectionReader for reading a graph's edgeset. More...
|
class | UEdgeSetReader |
| SectionReader for reading a undirected graph's edgeset. More...
|
class | NodeReader |
| SectionReader for reading labeled nodes. More...
|
class | EdgeReader |
| SectionReader for reading labeled edges. More...
|
class | UEdgeReader |
| SectionReader for reading labeled undirected edges. More...
|
class | AttributeReader |
| SectionReader for attributes. More...
|
class | ContentReader |
| SectionReader for retrieve what is in the file. More...
|
class | LemonWriter |
| Lemon Format writer class. More...
|
class | NodeSetWriter |
| SectionWriter for writing a graph's nodeset. More...
|
class | EdgeSetWriter |
| SectionWriter for writing a graph's edgesets. More...
|
class | UEdgeSetWriter |
| SectionWriter for writing a undirected edgeset. More...
|
class | NodeWriter |
| SectionWriter for writing named nodes. More...
|
class | EdgeWriter |
| SectionWriter for writing named edges. More...
|
class | UEdgeWriter |
| SectionWriter for writing named undirected edges. More...
|
class | AttributeWriter |
| SectionWriter for attributes. 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.
|
template<class G> |
GraphToEps< DefaultGraphToEpsTraits<
G > > | lemon::graphToEps (G &g, std::ostream &os=std::cout) |
| Generates an EPS file from a graph.
|
template<class G> |
GraphToEps< DefaultGraphToEpsTraits<
G > > | lemon::graphToEps (G &g, const char *file_name) |
| Generates an EPS file from a graph.
|
template<class G> |
GraphToEps< DefaultGraphToEpsTraits<
G > > | lemon::graphToEps (G &g, const std::string &file_name) |
| Generates an EPS file from a graph.
|
template<typename Graph> |
GraphWriter< Graph > | lemon::graphWriter (std::ostream &os, const Graph &g) |
| Write a graph to the output.
|
template<typename Graph> |
GraphWriter< Graph > | lemon::graphWriter (const std::string &fn, const Graph &g) |
| Write a graph to the output.
|
template<typename Graph> |
UGraphWriter< Graph > | lemon::uGraphWriter (std::ostream &os, const Graph &g) |
| Write an undirected graph to the output.
|
template<typename Graph> |
UGraphWriter< Graph > | lemon::uGraphWriter (const std::string &fn, const Graph &g) |
| Write an undirected graph to the output.
|