{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE NoImplicitPrelude #-} import Options.Applicative import Pipes import Pretty import Protolude hiding (for) import System.IO -- import Szenario212Pun -- import Szenario191 import NurseryDataset import Debug.Trace as DB import qualified Data.Map.Strict as Map data Options = Options { iterations :: !N, populationSize :: !N } options :: Parser Options options = Options <$> option auto ( long "iterations" <> short 'i' <> metavar "N" <> value 10000 <> help "Number of iterations" ) <*> option auto ( long "population-size" <> short 'p' <> metavar "N" <> value 400 <> help "Population size" ) optionsWithHelp :: ParserInfo Options optionsWithHelp = info (helper <*> options) ( fullDesc <> progDesc "Run a GA" <> header "haga - Haskell implementations of EAs" ) main :: IO () main = execParser optionsWithHelp >>= \opts -> do hSetBuffering stdout NoBuffering nurseryLEE <- shuffledNurseryLEE let env = nurseryLE let selType = Tournament 3 let run' = run nurseryLEE env selType 120 (5 / 100) (populationSize opts) (steps (iterations opts)) pop' <- runEffect (for run' logCsv) nurseryLEE' <- calc nurseryLEE pop' let (res, _) = bests nurseryLEE' 5 pop' let nurseryLEE' = nurseryLEE {training = False} nurseryLEE' <- calc nurseryLEE' res mapM_ (format nurseryLEE') res where format nurseryL s = do let f = fitness' nurseryL s putErrText $ show f <> "\n" <> pretty s logCsv = putText . csv csv (t, f) = show t <> " " <> show f