simple-genetic-algorithm 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- simple-genetic-algorithm.cabal +3/−3
- src/GA/Simple.hs +1/−1
simple-genetic-algorithm.cabal view
@@ -2,7 +2,7 @@ -- further documentation, see http://haskell.org/cabal/users-guide/ name: simple-genetic-algorithm-version: 0.1.0.1+version: 0.1.0.2 synopsis: Simple parallel genetic algorithm implementation description: Simple parallel genetic algorithm implementation homepage: http://eax.me/haskell-genetic-algorithm/@@ -23,7 +23,7 @@ library exposed-modules: GA.Simple ghc-options: -O2 -Wall -fno-warn-missing-signatures- build-depends: base >=4.5 && < 4.7,+ build-depends: base >=4.5 && < 4.8, random >= 1.0 && < 1.1, parallel >= 3.2 && < 3.3 hs-source-dirs: src@@ -32,7 +32,7 @@ executable ga-sin-example ghc-options: -O2 -Wall -fno-warn-missing-signatures -threaded -rtsopts main-is: MainSin.hs- build-depends: base >= 4.5 && < 4.7,+ build-depends: base >= 4.5 && < 4.8, random >= 1.0 && < 1.1, deepseq >= 1.3 && < 1.4, parallel >= 3.2 && < 3.3
src/GA/Simple.hs view
@@ -1,4 +1,4 @@--- | Simple parallel genetic algorithm implementation.+-- | [Проверка проверка] Simple parallel genetic algorithm implementation. module GA.Simple ( Chromosome(..), runGA,