limp-0.1.0.0: representation of Integer Linear Programs

Safe HaskellNone
LanguageHaskell2010

Numeric.Limp.Program.Program

Documentation

data Direction Source

Constructors

Minimise 
Maximise 

data Program z r c Source

Constructors

Program 

Fields

_objective :: Linear z r c KR
 
_direction :: Direction
 
_constraints :: Constraint z r c
 
_bounds :: [Bounds z r c]
 

objective :: forall z r c. Lens' (Program z r c) (Linear z r c KR) Source

direction :: forall z r c. Lens' (Program z r c) Direction Source

constraints :: forall z r c. Lens' (Program z r c) (Constraint z r c) Source

bounds :: forall z r c. Lens' (Program z r c) [Bounds z r c] Source