From 75c0e2c59f779e330031e9ab93362c85c8bf0d20 Mon Sep 17 00:00:00 2001 From: brodriguez8774 <brodriguez8774@gmail.com> Date: Sun, 8 Dec 2019 01:59:03 -0500 Subject: [PATCH] Update readme --- readme.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 30fb427..15a0548 100644 --- a/readme.md +++ b/readme.md @@ -6,6 +6,9 @@ Python implementation of a "Network Flow" algorithm. Implements both "Ford-Fulkerson" and "Simplex" versions. +This program uses both the "Simplex" and "Graph Library" assignments from earlier in the semester, included as git +submodules. + ## Python Environment This project is tested using Python3.7. @@ -26,7 +29,10 @@ Once created, load this environment with `source .venv/bin/activate` on Linux or Run the program via `python ./main.py` while at the `python` directory. ### Expected Output -None so far. +Will prompt the user to run the program as either "Ford Fulkerson" or "Simplex". + +Both will output the initial graph, as well as the final output. Ford Fulkerson will also output each iteration of +steps, where the final iteration is the end product. ## Running Tests -- GitLab