Exemple #1
0
        public string Solve(int c, int v, double[,] matrix1)
        {
            SimplexSolver s = new SimplexSolver(matrix1, c, v);

            return(s.DriverCode());
        }
Exemple #2
0
        public string Solve(int N, int M, double[,] matrix1)
        {
            SimplexSolver s = new SimplexSolver(matrix1, N, M);

            return(s.DriverCode());
        }