Safe Haskell | None |
---|---|
Language | Haskell2010 |
Numeric.Limp.Solvers.Cbc.MatrixRepr
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.
Constructors
MatrixRepr | |
Fields
|
Instances
Show MatrixRepr Source # | |
Defined in Numeric.Limp.Solvers.Cbc.MatrixRepr Methods showsPrec :: Int -> MatrixRepr -> ShowS # show :: MatrixRepr -> String # showList :: [MatrixRepr] -> ShowS # |
matrixReprOfProgram :: (Ord z, Ord r) => Program z r IntDouble -> MatrixRepr Source #