-
Notifications
You must be signed in to change notification settings - Fork 2
/
Calypso.cabal
28 lines (26 loc) · 1.04 KB
/
Calypso.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Calypso
version: 0.1.0
synopsis: Particle swarm optimization module
description: A module for performing particle swarm
optimization. The focus is two-fold: first on being easy to use,
second on allowing full customization. Many different flavors of PSO
are supported by default, and many more can be implemented.
license: BSD3
license-file: LICENSE
author: Brian Shourd
maintainer: [email protected]
stability: alpha
homepage: https://github.com/brianshourd/haskell-Calypso
copyright: 2013
category: Optimization
build-type: Simple
cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/brianshourd/haskell-Calypso
library
exposed-modules: Calypso
Calypso.Core
Calypso.Instances.Grade
Calypso.Instances.PsoVect
build-depends: base ==4.5.*, random ==1.0.*