LinearProgramming Constructor |
Determines an optimal solution to the linear program
{ max cx : Ax <= b, x >= 0 }, where A is a M-by-N
matrix, b is an M-length vector, and c is an N-length vector.
Namespace: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic LinearProgramming(
double[,] A,
double[] b,
double[] c
)
Parameters
- A
- Type: SystemDouble
the M-by-N matrix - b
- Type: SystemDouble
the M-length RHS vector - c
- Type: SystemDouble
the N-length cost vector
Exceptions
See Also