added examples
authorCaspar Safarlou <csafarlou@lilo3.science.ru.nl>
Sat, 15 Nov 2014 17:27:49 +0000 (18:27 +0100)
committerCaspar Safarlou <csafarlou@lilo3.science.ru.nl>
Sat, 15 Nov 2014 17:27:49 +0000 (18:27 +0100)
report/.Rhistory [new file with mode: 0644]
report/ass2.tex

diff --git a/report/.Rhistory b/report/.Rhistory
new file mode 100644 (file)
index 0000000..e69de29
index 74c8365..3ea2ea4 100644 (file)
@@ -2,5 +2,13 @@
 \subsubsection{Task 12: Generate conflict}
 
 \subsubsection{Task 13: Define your data structure}
+Our datastructure uses the predicate node to signify nodes and leaf for leaves. A node contains a list of edge labels and another list (with the same length as the amound of edge labels) that contains nodes or leaves. The edge label corresponds with its order in the list it is in.
+Good examples:
+isHittingSetTree(node([a,b],[leaf,leaf])).
+isHittingSetTree(node([a,b], [node([c,d], [leaf,leaf]), node([e,f], [leaf,leaf])])).
+isHittingSetTree(node([a,b], [node([c,d], [node([g,h,i], [leaf,leaf,leaf]),leaf]), node([a,f], [leaf,leaf])])).
 
+Wrong examples:
+
+isHittingSetTree(node([a,b], [node([c,d], [node([g,h], [leaf,leaf,leaf]),leaf]), node([a,f], [leaf,leaf])])).
 \subsubsection{Task 14: Implementation}