File tree Expand file tree Collapse file tree 6 files changed +12
-0
lines changed Expand file tree Collapse file tree 6 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
8
8
GAP = " c863536a-3901-11e9-33e7-d5cd0df7b904"
9
9
Singular = " bcd08a7b-43d2-5ff7-b6d4-c458787f915c"
10
10
lib4ti2_jll = " 1493ae25-0f90-5c0e-a06c-8c5077d6d66f"
11
+ Graphviz_jll = " 3c863552-8265-54e4-a6dc-903eb78fde85"
11
12
Pkg = " 44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
12
13
Markdown = " d6f4376e-aef5-505a-96c1-9c027394607a"
13
14
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ and the
63
63
| [ cddlib] ( https://github.com/cddlib/cddlib/ ) | [ CddInterface] ( https://github.com/homalg-project/CddInterface/ ) |
64
64
| [ 4ti2] ( https://4ti2.github.io/ ) | [ 4ti2Interface] ( https://homalg-project.github.io/homalg_project/4ti2Interface/ ) |
65
65
| [ 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/ ) |
66
67
67
68
## General Disclaimer
68
69
Original file line number Diff line number Diff line change
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' -- " $@ "
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ and the
59
59
| [ cddlib] ( https://github.com/cddlib/cddlib/ ) | [ CddInterface] ( https://github.com/homalg-project/CddInterface/ ) |
60
60
| [ 4ti2] ( https://4ti2.github.io/ ) | [ 4ti2Interface] ( https://homalg-project.github.io/homalg_project/4ti2Interface/ ) |
61
61
| [ 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/ ) |
62
63
63
64
## General Disclaimer
64
65
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ and the
38
38
| cddlib | CddInterface |
39
39
| 4ti2 | 4ti2Interface |
40
40
| Normaliz | NormalizInterface |
41
+ | Graphviz | Digraphs |
41
42
42
43
## General Disclaimer
43
44
Original file line number Diff line number Diff line change 2
2
LoadPackage ( " Digraphs" )
3
3
gr = Digraph ( GAP. julia_to_gap ( 1 : 2 ), ReturnTrue )
4
4
@test DotDigraph ( gr ) == GAP. julia_to_gap ( " //dot\n digraph hgn{\n node [shape=circle]\n 1\n 2\n 1 -> 1\n 1 -> 2\n 2 -> 1\n 2 -> 2\n }\n " )
5
+ @test Filename ( DirectoriesSystemPrograms (), GAP. julia_to_gap ( " dot" ) ) != GAP. Globals. fail
5
6
end
You can’t perform that action at this time.
0 commit comments