From 104d1b789fc1001f63e8db9ebbf1ee6db3c5a1d0 Mon Sep 17 00:00:00 2001
From: brodriguez8774 <brodriguez8774@gmail.com>
Date: Fri, 6 Dec 2019 03:58:45 -0500
Subject: [PATCH] Create json file for smaller flow problem

---
 resources/json_files/small_flow.json | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 resources/json_files/small_flow.json

diff --git a/resources/json_files/small_flow.json b/resources/json_files/small_flow.json
new file mode 100644
index 0000000..bd42733
--- /dev/null
+++ b/resources/json_files/small_flow.json
@@ -0,0 +1,24 @@
+{
+    "Description": "A small network flow problem.",
+    "connections": {
+        "s": {
+            "A": 5,
+            "B": 2
+        },
+        "A": {
+            "C": 3,
+            "D": 2
+        },
+        "B": {
+            "A": 1,
+            "D": 3
+        },
+        "C": {
+            "t": 2
+        },
+        "D": {
+            "C": 1,
+            "t": 5
+        }
+    }
+}
-- 
GitLab