packages feed

metaheuristics-0.0.8: metaheuristics.cabal

Name:              metaheuristics
Version:           0.0.8
Synopsis:          Generalised local search within Haskell, for applications in combinatorial optimisation. 
Description:       This library operates by representing metaheuristics as generators of solutions, or 
                   streams of solutions, which are themselves the result of resolving the interactions of 
                   other streams of values. The library contains combinators for constructing and 
                   managing these structures.     
Stability:         experimental
Category:          Control, Optimisation, Local Search
Author:            Richard Senington & David Duke
License:           GPL
license-file:      LICENSE
Copyright:         Copyright (c) 2013 Richard Senington
Homepage:          
Maintainer:        sc06r2s@leeds.ac.uk
Build-Type:        Simple
Cabal-Version:     >= 1.2
Data-files:        

library
  Exposed-Modules: Control.Metaheuristics
                   
  GHC-Options:     -O2 
  Build-Depends:   base <=4.8.2.0,
                   Stream >= 0.4.7.2,
                   arrows >= 0.4.4.2,
                   random >=1.1
                   
  
  extensions: MultiParamTypeClasses,
              FunctionalDependencies