From 6c21882957a6d75c04a921382aaf61ff0344ff02 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sat, 30 Nov 2019 02:17:44 -0500 Subject: [PATCH] Update readme --- readme.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 7e1c03f..1fa8ae7 100644 --- a/readme.md +++ b/readme.md @@ -3,7 +3,7 @@ ## Description Python implementation of a "Simplex" for Linear Programming problems. -Algorithm is acquired from pages (869, , ) in "Algorithms Third Edition by Thomas H Cormen" book. +Algorithm is acquired from pages (869, 871, 887) in "Algorithms Third Edition by Thomas H Cormen" book. ## Changes to Algorithm @@ -33,7 +33,12 @@ 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. +Most of the logic is tested through UnitTesting. + +However, main has 2 examples of reading in from JSON files, then 1 example of reading in and solving. + +For each read in, the problem should be displayed to console in "Tableau" (aka matrix) form. +After the one is solved, then it should print the solution in all three formats. ## Running Tests -- GitLab