Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data MatrixRepr = MatrixRepr {}
- matrixReprOfProgram :: (Ord z, Ord r) => Program z r IntDouble -> MatrixRepr
- makeAssignment :: (Ord z, Ord r) => Program z r IntDouble -> Vector Double -> Assignment z r IntDouble
Documentation
data MatrixRepr Source #
A half-sparse, half-dense matrix (tableau?) representation of a linear program. Columns are variables, and constraints are rows.
MatrixRepr | |
|
Instances
Show MatrixRepr Source # | |
Defined in Numeric.Limp.Solvers.Cbc.MatrixRepr showsPrec :: Int -> MatrixRepr -> ShowS # show :: MatrixRepr -> String # showList :: [MatrixRepr] -> ShowS # |
matrixReprOfProgram :: (Ord z, Ord r) => Program z r IntDouble -> MatrixRepr Source #