-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hernoem branchings naar diagrams in makefile Update travis.yml nu wel gelijk Verander slides zodat ze overlays gebruiken en minder bolletjes kosten Uitgecommentte dingen eruit want het zit toch in git
- Loading branch information
1 parent
0957936
commit 1732eee
Showing
9 changed files
with
100 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
pdf: graphs | ||
pdflatex -shell-escape main.tex | ||
|
||
branchings: | ||
diagrams: | ||
for file in graphs/branching*.gv; do\ | ||
dot -Teps -o graphs/`basename $$file .gv`.eps $$file;\ | ||
done | ||
for file in graphs/basis*.gv; do\ | ||
dot -Teps -o graphs/`basename $$file .gv`.eps $$file;\ | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
digraph repo { | ||
rankdir = "RL"; | ||
B -> A; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
digraph repo { | ||
rankdir = "RL"; | ||
B -> A; | ||
C -> B; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
digraph repo { | ||
rankdir = "RL"; | ||
B -> A; | ||
C -> B; | ||
node [shape=box,color=grey] master; | ||
master -> C; | ||
HEAD -> master; | ||
{ rank=same HEAD; master; C; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
digraph repo { | ||
rankdir = "RL"; | ||
B -> A; | ||
C -> B; | ||
node [shape=box,color=grey] master; | ||
master -> C; | ||
HEAD -> B; | ||
{ rank=same master; C; } | ||
{ rank=same HEAD; B; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters