Copyright | (c) Masahiro Sakai 2012-2014 |
---|---|
License | BSD-style |
Maintainer | masahiro.sakai@gmail.com |
Stability | provisional |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
A .mps format parser library.
References:
- http://pic.dhe.ibm.com/infocenter/cosinfoc/v12r4/topic/ilog.odms.cplex.help/CPLEX/File_formats_reference/topics/MPS_synopsis.html
- http://pic.dhe.ibm.com/infocenter/cosinfoc/v12r4/topic/ilog.odms.cplex.help/CPLEX/File_formats_reference/topics/MPS_ext_synopsis.html
- http://www.gurobi.com/documentation/5.0/reference-manual/node744
- http://en.wikipedia.org/wiki/MPS_(format)
- parseString :: SourceName -> String -> Either ParseError Problem
- parseFile :: FilePath -> IO (Either ParseError Problem)
- render :: Problem -> Maybe String
Documentation
parseString :: SourceName -> String -> Either ParseError Problem Source
Parse a string containing LP file data. The source name is only | used in error messages and may be the empty string.