From bf714eed9285b6cfe899d8c450507419ce502d1a Mon Sep 17 00:00:00 2001 From: emil Date: Mon, 7 Oct 2024 19:14:19 +0300 Subject: [PATCH] fixed --- main.cpp | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/main.cpp b/main.cpp index 22a3ea5..237d0a6 100644 --- a/main.cpp +++ b/main.cpp @@ -3,25 +3,12 @@ #include "tools/math.h" #include "simplex.h" -void manualInput() { - int ZLength; - std::cout << "Write how many x's the objective function has:" << std::endl; - std::cin >> ZLength; - Vector Z = {}; -} + void printInitialInputs(Vector C, Matrix A, Vector b) { } int main() { // TODO: Initially should be positive - std::string doManual = ""; - std::cout << "Enable manual input? (y/n)" << std::endl; - std::cin >> doManual ; - if (doManual == "y" or doManual == "Y") { - manualInput(); - } else if (doManual == "n"){ - - } Vector C = {5, 4, 0, 0, 0, 0};