public string Solve(int c, int v, double[,] matrix1) { SimplexSolver s = new SimplexSolver(matrix1, c, v); return(s.DriverCode()); }
public string Solve(int N, int M, double[,] matrix1) { SimplexSolver s = new SimplexSolver(matrix1, N, M); return(s.DriverCode()); }