MIP: Library for using Mixed Integer Programming (MIP)

[ algorithms, bsd3, library, math, optimisation, optimization ] [ Propose Tags ] [ Report a vulnerability ]

Flags

Manual Flags

NameDescriptionDefault
testcbc

run test cases that depend on cbc command

Disabled
testcplex

run test cases that depend on cplex command

Disabled
testglpsol

run test cases that depend on glpsol command

Disabled
testgurobicl

run test cases that depend on gurobi_cl command

Disabled
testhighs

run test cases that depend on highs command

Disabled
testlpsolve

run test cases that depend on lp_solve command

Disabled
testprintemps

run test cases that depend on mps_solver.exe command of printemps

Disabled
testscip

run test cases that depend on scip command

Disabled
withzlib

Use zlib package to support gzipped files

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.1.0, 0.1.2.0, 0.2.0.0
Change log ChangeLog.md
Dependencies aeson (>=1.4.2.0), base (>=4.12 && <5), bytestring, bytestring-encoding, case-insensitive, containers (>=0.5.0), data-default-class, extended-reals (>=0.1 && <1.0), filepath, hashable (>=1.2.7.0 && <1.6.0.0), intern (>=0.9.1.2 && <1.0.0.0), lattices, megaparsec (>=7 && <10), mtl (>=2.1.2 && <2.4), OptDir, process (>=1.1.0.2), scientific, stm (>=2.3), temporary (>=1.2), text (>=1.1.0.0), xml-conduit, zlib [details]
License BSD-3-Clause
Copyright 2020 Masahiro Sakai
Author Masahiro Sakai
Maintainer masahiro.sakai@gmail.com
Category Math, Algorithms, Optimisation, Optimization
Home page https://github.com/msakai/haskell-MIP#readme
Bug tracker https://github.com/msakai/haskell-MIP/issues
Source repo head: git clone https://github.com/msakai/haskell-MIP
Uploaded by MasahiroSakai at 2025-02-02T23:49:26Z
Distributions
Reverse Dependencies 2 direct, 4 indirect [details]
Downloads 1185 total (7 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for MIP-0.2.0.0

[back to package description]

MIP

Hackage Hackage Deps License: BSD 3-Clause

Library for using Mixed Integer Programming (MIP) in Haskell. This library contains functions like:

  • Reading / Writing MIP problem files (e.g. LP file or MPS file),
  • Invokling MIP solvers like Gurobi, CPLEX, CBC, GLPK, lp_solve,
  • Reading solution files of those solvers.

Examples

Convert LP file into MPS file

import qualified Numeric.Optimization.MIP as MIP

main :: IO ()
main = do
  prob <- MIP.readFile MIP.def "samples/lp/test.lp"
  MIP.writeFile MIP.def "test.mps" prob

Solve LP file using the CbC solver

import Control.Monad
import qualified Data.Map.Lazy as Map
import qualified Data.Text as T

import qualified Numeric.Optimization.MIP as MIP
import Numeric.Optimization.MIP.Solver

main :: IO ()
main = do
  prob <- MIP.readFile MIP.def "samples/lp/test.lp"
  sol <- solve cbc MIP.def{ solveTimeLimit = Just 10.0 } prob
  print $ MIP.solStatus sol
  putStrLn $ "Objective Value: " ++ show (MIP.solObjectiveValue sol)
  forM_ (MIP.variables prob) $ \v -> do
    putStrLn $ T.unpack (MIP.varName v) ++ " = " ++ show (MIP.solVariables sol Map.! v)

Construcing a problem instance and solving it using the CbC solver

{-# LANGUAGE OverloadedStrings #-}
import Control.Monad
import qualified Data.Map.Lazy as Map
import qualified Data.Text as T

import qualified Numeric.Optimization.MIP as MIP
import Numeric.Optimization.MIP ((.<=.))
import Numeric.Optimization.MIP.Solver

-- Example from https://en.wikipedia.org/wiki/Integer_programming
main :: IO ()
main = do
  let [x, y] = map MIP.varExpr ["x", "y"]
      prob =
        MIP.def
        { MIP.objectiveFunction =
            MIP.def
            { MIP.objDir = MIP.OptMax
            , MIP.objExpr = y
            }
        , MIP.constraints =
            [ - x +   y .<=. 1
            , 3*x + 2*y .<=. 12
            , 2*x + 3*y .<=. 12
            ]
        , MIP.varDomains =
            Map.fromList
            [ ("x", (MIP.IntegerVariable, (0, MIP.PosInf)))
            , ("y", (MIP.IntegerVariable, (0, MIP.PosInf)))
            ]
        }

  sol <- solve cbc MIP.def{ solveTimeLimit = Just 10.0 } prob
  print $ MIP.solStatus sol
  putStrLn $ "Objective Value: " ++ show (MIP.solObjectiveValue sol)
  forM_ (MIP.variables prob) $ \v -> do
    putStrLn $ T.unpack (MIP.varName v) ++ " = " ++ show (MIP.solVariables sol Map.! v)