This repository has been archived by the owner on Jul 6, 2021. It is now read-only.
forked from ddarmon/transCSSR
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working on computationsfrom *Exact Complexity*.
WARNING: Still very buggy!
- Loading branch information
David Darmon
authored and
David Darmon
committed
Apr 20, 2018
1 parent
506b339
commit b853b10
Showing
2 changed files
with
174 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
digraph { | ||
size = "6,8.5"; | ||
ratio = "fill"; | ||
node | ||
[shape = circle]; | ||
node [fontsize = 24]; | ||
node [penwidth = 5]; | ||
edge [fontsize = 24]; | ||
node [fontname = "CMU Serif Roman"]; | ||
graph [fontname = "CMU Serif Roman"]; | ||
edge [fontname = "CMU Serif Roman"]; | ||
A -> B [label = "0|0:0.25\l"]; | ||
A -> C [label = "1|0:0.75\l"]; | ||
B -> A [label = "0|0:1.00\l"]; | ||
C -> A [label = "0|0:0.25\l"]; | ||
C -> A [label = "1|0:0.75\l"]; | ||
} |