packages feed

limp-0.1.0.0: limp.cabal

name:                limp
version:             0.1.0.0
synopsis:            representation of Integer Linear Programs
description:         so far, this package just provides two representations for linear programs: Numeric.Limp.Program, which is what I expect end-users to use, and
                     Numeric.Limp.Canon, which is simpler, but would be less nice for writing linear programs.
                     see the limp-cbc package for a simple solver.

license:             MIT
license-file:        LICENSE
author:              Amos Robinson
maintainer:          amos.robinson@gmail.com
category:            numeric
build-type:          Simple
cabal-version:       >=1.10
homepage:            https://github.com/amosr/limp


source-repository head
    type: git
    location: git://github.com/amosr/limp.git

library
  hs-source-dirs: src
  exposed-modules:
        Numeric.Limp.Rep

        Numeric.Limp.Program.Bounds
        Numeric.Limp.Program.Constraint
        Numeric.Limp.Program.Linear
        Numeric.Limp.Program.Program
        Numeric.Limp.Program

        Numeric.Limp.Canon.Linear
        Numeric.Limp.Canon.Constraint
        Numeric.Limp.Canon.Convert
        Numeric.Limp.Canon.Program
        Numeric.Limp.Canon

  -- other-modules:       
  build-depends:
        base        < 5,
        containers  == 0.5.*,
        lens        == 4.2.*,
        vector      == 0.10.*,
        void,
        template-haskell
  ghc-options: -Wall -fno-warn-orphans
  default-language: Haskell2010
  default-extensions:       TemplateHaskell TypeFamilies FlexibleContexts GeneralizedNewtypeDeriving DataKinds GADTs RankNTypes