aboutsummaryrefslogtreecommitdiffstats
path: root/src/test_simplex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test_simplex.cpp')
-rw-r--r--src/test_simplex.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test_simplex.cpp b/src/test_simplex.cpp
index ba177f8..c5e54b9 100644
--- a/src/test_simplex.cpp
+++ b/src/test_simplex.cpp
@@ -15,5 +15,12 @@ int main()
s.solve();
+ // s.initialize({{1, -20, -9, 0, 0, 10.5, -70.5, 0, 0},
+ // {0, -2, 4, 1, 0, 0.5, -4.5, 0, 0},
+ // {0, -0.5, 0.5, 0, 1, 0.25, -1.25, 0, 0},
+ // {0, 1, 0, 0, 0, 0, 0, 1, 1}});
+
+ // s.solve();
+
std::cout << "Result: " << s.getMin() << "\n";
}