This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE NamedFieldPuns, TupleSections #-} | |
-- |A Haskell program that demonstrates a simple "Hello, world!" | |
-- application using genetic algorithms. Based on code by John Svazic. | |
-- | |
-- Author: Anthony Cowley | |
import Control.Applicative | |
import Control.Arrow (second) | |
import Control.Monad (liftM, replicateM) | |
import Control.Monad.Random |
NewerOlder