Module io

Module io 

Source
Expand description

Input/output operations for graphs

This module provides functions for reading and writing graph data in various formats.

Modules§

adjacency_list
Adjacency list format I/O for graphs
dot
DOT format I/O for graphs (Graphviz format)
edge_list
Edge list format I/O operations
gml
GML (Graph Modeling Language) format I/O for graphs
graphml
GraphML format I/O for graphs
json
JSON format I/O for graphs
matrix_market
Matrix Market format I/O for graphs

Enums§

GraphFormat
Supported file formats for graph I/O

Functions§

read_digraph
Reads a directed graph from a file
read_graph
Reads a graph from a file
write_digraph
Writes a directed graph to a file
write_graph
Writes a graph to a file