From d7f854b93801cb7d4de5e55fce7771bf2c9ebaaa Mon Sep 17 00:00:00 2001 From: brodriguez8774 <brodriguez8774@gmail.com> Date: Fri, 6 Dec 2019 04:14:02 -0500 Subject: [PATCH] Create second test flow json file --- resources/json_files/small_flow.json | 16 ++++------------ resources/json_files/small_flow_2.json | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 12 deletions(-) create mode 100644 resources/json_files/small_flow_2.json diff --git a/resources/json_files/small_flow.json b/resources/json_files/small_flow.json index bd42733..ced2091 100644 --- a/resources/json_files/small_flow.json +++ b/resources/json_files/small_flow.json @@ -2,23 +2,15 @@ "Description": "A small network flow problem.", "connections": { "s": { - "A": 5, + "A": 3, "B": 2 }, "A": { - "C": 3, - "D": 2 + "t": 1, + "B": 1 }, "B": { - "A": 1, - "D": 3 - }, - "C": { - "t": 2 - }, - "D": { - "C": 1, - "t": 5 + "t": 3 } } } diff --git a/resources/json_files/small_flow_2.json b/resources/json_files/small_flow_2.json new file mode 100644 index 0000000..bd42733 --- /dev/null +++ b/resources/json_files/small_flow_2.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