summaryrefslogtreecommitdiff
path: root/test/dag/simple.json
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-02-25 17:23:26 +0100
committerPatrick Simianer <p@simianer.de>2014-02-25 17:23:26 +0100
commit47fe94c4addff8a3719998a32a0423662e9eccd2 (patch)
tree35e2dced15b1d9e14ab6671f867bb7934d64a701 /test/dag/simple.json
parent1320a05f94a57855f1d69f2644e56213e702d224 (diff)
hypergraphs => v0.4
Diffstat (limited to 'test/dag/simple.json')
-rw-r--r--test/dag/simple.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/dag/simple.json b/test/dag/simple.json
new file mode 100644
index 0000000..16a2ef0
--- /dev/null
+++ b/test/dag/simple.json
@@ -0,0 +1,25 @@
+{
+
+"nodes":
+[
+ {"label":"0"},
+ {"label":"7"},
+ {"label":"5"},
+ {"label":"6"},
+ {"label":"100"}
+],
+
+"arcs":
+[
+ { "tail":"0", "head":"7", "weight":"0.1" },
+ { "tail":"0", "head":"5", "weight":"0.1" },
+
+ { "tail":"7", "head":"100", "weight":"0.9" },
+
+ { "tail":"5", "head":"6", "weight":"0.3" },
+
+ { "tail":"6", "head":"100", "weight":"0.3" }
+]
+
+}
+