Expand description
File I/O for graphs.
Structs§
- Dimacs
Graph - Result of reading a DIMACS file.
- DlGraph
- Result of reading a DL file.
- DotGraph
- Result of parsing a DOT file.
- Graphml
Graph - Result of parsing a
GraphMLfile. - Leda
Graph - Result of reading a LEDA file.
- LglGraph
- Result of reading an LGL file: the graph plus optional metadata.
- Ncol
Graph - Result of reading an NCOL file: the graph plus optional metadata.
- Pajek
Graph - Result of reading a Pajek file.
Enums§
- Dimacs
Problem - The type of DIMACS problem read from the file.
Functions§
- read_
dimacs - Read a graph from DIMACS flow/edge format.
- read_dl
- Read a graph from UCINET DL format.
- read_
dot - Read a graph from DOT (Graphviz) format.
- read_
edgelist - Read an edge list from any
Readinto a freshGraph. - read_
gml - Read a graph from GML format.
- read_
graphdb - Read a graph from
GraphDBbinary format. - read_
graphml - Read a graph from
GraphMLformat. - read_
leda - Read a graph from LEDA native graph format.
- read_
lgl - Read a graph from LGL (
.lgl) format. - read_
ncol - Read a graph from NCOL (
.ncol) format. - read_
pajek - Read a graph from Pajek (
.net) format. - write_
dimacs_ flow - Write a graph in DIMACS max-flow format.
- write_
dl - Write a graph in UCINET DL edgelist1 format.
- write_
dot - Write a graph in DOT (Graphviz) format.
- write_
edgelist - Write a graph as an edge list.
- write_
gml - Write a graph in GML format, including attributes.
- write_
graphml - Write a graph in
GraphMLformat, including attributes. - write_
leda - Write a graph in LEDA native graph format.
- write_
lgl - Write a graph in LGL format.
- write_
ncol - Write a graph in NCOL format.
- write_
pajek - Write a graph in Pajek (
.net) format.