Skip to content

Commit e7d3d6e

Browse files
added Graphviz_jll to deps
closes #7
1 parent 57b21a4 commit e7d3d6e

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
88
GAP = "c863536a-3901-11e9-33e7-d5cd0df7b904"
99
Singular = "bcd08a7b-43d2-5ff7-b6d4-c458787f915c"
1010
lib4ti2_jll = "1493ae25-0f90-5c0e-a06c-8c5077d6d66f"
11+
Graphviz_jll = "3c863552-8265-54e4-a6dc-903eb78fde85"
1112
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1213
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
1314

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ and the
6363
| [cddlib](https://github.com/cddlib/cddlib/) | [CddInterface](https://github.com/homalg-project/CddInterface/) |
6464
| [4ti2](https://4ti2.github.io/) | [4ti2Interface](https://homalg-project.github.io/homalg_project/4ti2Interface/) |
6565
| [Normaliz](https://www.normaliz.uni-osnabrueck.de/) | [NormalizInterface](https://github.com/gap-packages/NormalizInterface/) |
66+
| [Graphviz](https://graphviz.org/) | [Digraphs](https://github.com/gap-packages/digraphs/) |
6667

6768
## General Disclaimer
6869

deps/usr/bin/dot

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
# dot
3+
julia -e 'import Graphviz_jll
4+
lib4ti2_jll.dot() do x
5+
p=run(ignorestatus(`$x $ARGS`))
6+
exit(p.exitcode)
7+
end' -- "$@"

docs/src/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ and the
5959
| [cddlib](https://github.com/cddlib/cddlib/) | [CddInterface](https://github.com/homalg-project/CddInterface/) |
6060
| [4ti2](https://4ti2.github.io/) | [4ti2Interface](https://homalg-project.github.io/homalg_project/4ti2Interface/) |
6161
| [Normaliz](https://www.normaliz.uni-osnabrueck.de/) | [NormalizInterface](https://github.com/gap-packages/NormalizInterface/) |
62+
| [Graphviz](https://graphviz.org/) | [Digraphs](https://github.com/gap-packages/digraphs/) |
6263

6364
## General Disclaimer
6465

src/HomalgProject.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ and the
3838
| cddlib | CddInterface |
3939
| 4ti2 | 4ti2Interface |
4040
| Normaliz | NormalizInterface |
41+
| Graphviz | Digraphs |
4142
4243
## General Disclaimer
4344

test/digraphs.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
LoadPackage( "Digraphs" )
33
gr = Digraph( GAP.julia_to_gap( 1:2 ), ReturnTrue )
44
@test DotDigraph( gr ) == GAP.julia_to_gap( "//dot\ndigraph hgn{\nnode [shape=circle]\n1\n2\n1 -> 1\n1 -> 2\n2 -> 1\n2 -> 2\n}\n" )
5+
@test Filename( DirectoriesSystemPrograms(), GAP.julia_to_gap( "dot" ) ) != GAP.Globals.fail
56
end

0 commit comments

Comments
 (0)