From 44f484d9881046d5a50d47d49c5017314fcc5e4b Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sat, 30 Nov 2019 02:14:06 -0500 Subject: [PATCH] Update main to actually solve one of the equations it reads in --- main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index cd3f1a2..8bbd1e8 100644 --- a/main.py +++ b/main.py @@ -38,9 +38,13 @@ def test_simplex(): # Read and display ex_3.json. logger.info('') - logger.info('Reading in resources/ex_3.json.') + logger.info('Solving in resources/ex_3.json.') simplex.read_data_from_json('./resources/json_files/ex_3.json') simplex.display_tableau() + logger.info('Attempting to solve problem.') + simplex.solve() + logger.info('Problem has been solved.') + simplex.display_all_printouts() logger.info('') -- GitLab