Deleted manual input function

This commit is contained in:
emil
2024-10-07 15:45:11 +03:00
parent c7bc142081
commit fa123e0fb0
15 changed files with 80 additions and 1017 deletions
-20
View File
@@ -1,20 +0,0 @@
#ifndef SIMPLEX_H
#define SIMPLEX_H
#include <vector>
#include "tools/matrix.h"
enum solver_state {
unbounded,
bounded
};
struct Result {
solver_state state;
Vector *solution;
double objective_fucntion_value;
};
Result Simplex(Vector C, Matrix A, Vector b, double eps = 0.01, bool maximize = true);
#endif // SIMPLEX_H