5个版本
0.1.4 | 2023年3月23日 |
---|---|
0.1.3 | 2023年3月22日 |
0.1.2 | 2023年3月2日 |
0.1.1 | 2023年2月24日 |
0.1.0 | 2023年2月17日 |
#1409 在 解析实现
每月 31 次下载
9KB
187 行
convg
一个将NAUTY和Traces中的有向和无向图转换为邻接、dot和net文件的工具。(CONVert Graph)
受NAUTY
gtools套件启发 - 特别是listg
函数,但扩展了有向图的功能。
这应该能够确定你的图的格式,但你可以在之前使用-f
标志来修复格式。
安装
cargo install convg
用法
# Converting from a `digraph6` file to a `DOT` file
convg -i my_directed_graph.g6
# Piping from undirected `graph6` file to adjacency matrices
geng -c 4 | convg -F adjmat
# Piping from directed `graph6` file to .NET
geng -c 4 | watercluster2 Z | convg -F net
# Skipping the first 3 graphs
convg -i my_directed_graph.g6 -s 3
# Only writing the first graph
convg -i my_directed_graph.g6 -c 1
# Writing graphs 10-13
convg -i my_directed_graph.g6 -s 10 -c 3
依赖
~1.3–1.9MB
~36K SLoC