summaryrefslogtreecommitdiff
path: root/assignments/assignment2/TTT_hypothesis2.dot
diff options
context:
space:
mode:
authorErin van der Veen2017-10-16 15:21:22 +0200
committerErin van der Veen2017-10-16 15:21:22 +0200
commit25c286696e507e57309fb2f3a5fe4618a6c10ef4 (patch)
treeb284f415e59a920633d8b1ffc85aaa99b1aa733d /assignments/assignment2/TTT_hypothesis2.dot
parentMove assignment1 to own dir; Setup assignment2.tex; Add 4 hypotheses of Rives... (diff)
Add counterexamples and Hypotheses for TTT
Diffstat (limited to 'assignments/assignment2/TTT_hypothesis2.dot')
-rw-r--r--assignments/assignment2/TTT_hypothesis2.dot30
1 files changed, 30 insertions, 0 deletions
diff --git a/assignments/assignment2/TTT_hypothesis2.dot b/assignments/assignment2/TTT_hypothesis2.dot
new file mode 100644
index 0000000..2d672fa
--- /dev/null
+++ b/assignments/assignment2/TTT_hypothesis2.dot
@@ -0,0 +1,30 @@
+digraph g {
+__start0 [label="" shape="none"];
+
+ s0 [shape="circle" label="s0"];
+ s1 [shape="circle" label="s1"];
+ s2 [shape="circle" label="s2"];
+ s3 [shape="circle" label="s3"];
+ s0 -> s0 [label="5ct / OK"];
+ s0 -> s1 [label="10ct / OK"];
+ s0 -> s0 [label="mars / NOK"];
+ s0 -> s0 [label="snickers / NOK"];
+ s0 -> s0 [label="twix / NOK"];
+ s1 -> s2 [label="5ct / OK"];
+ s1 -> s2 [label="10ct / OK"];
+ s1 -> s0 [label="mars / OK"];
+ s1 -> s1 [label="snickers / NOK"];
+ s1 -> s1 [label="twix / NOK"];
+ s2 -> s3 [label="5ct / OK"];
+ s2 -> s3 [label="10ct / OK"];
+ s2 -> s1 [label="mars / OK"];
+ s2 -> s2 [label="snickers / NOK"];
+ s2 -> s0 [label="twix / OK"];
+ s3 -> s3 [label="5ct / OK"];
+ s3 -> s3 [label="10ct / OK"];
+ s3 -> s2 [label="mars / OK"];
+ s3 -> s0 [label="snickers / OK"];
+ s3 -> s1 [label="twix / OK"];
+
+__start0 -> s0;
+}