name: kmn-programming
version: 0.9.2
synopsis: K_M,N quadratic programming
homepage: https://github.com/divipp/kmn-programming
description: Integer K_m,n quadratic programming problem solving with x86-64 SIMD instructions. See README.md for details.
license: BSD3
license-file: LICENSE
author: Péter Diviánszky
maintainer: divipp@gmail.com
-- copyright:
category: Math
build-type: Simple
extra-source-files: ChangeLog.md
SplitProblem.hs
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/divipp/kmn-programming
executable kmn-programming
main-is: Main.hs
ghc-options: -threaded -rtsopts=all -O2
other-modules: KMNProgramming
other-extensions:
build-depends: base >=4.9 && <4.17
, x86-64bit >=0.4 && <0.5
, optparse-applicative >=0.13 && <0.17
, random
, random-shuffle
, time
-- hs-source-dirs:
default-language: Haskell2010