2019-10-18 09:57:43 +02:00
|
|
|
{-# LANGUAGE FlexibleContexts #-}
|
2019-05-30 12:40:32 +02:00
|
|
|
{-# LANGUAGE NoImplicitPrelude #-}
|
2019-10-18 09:10:11 +02:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
2019-05-30 12:40:32 +02:00
|
|
|
|
2019-10-18 09:57:43 +02:00
|
|
|
import Pipes
|
2019-10-22 16:42:16 +02:00
|
|
|
import Pretty
|
|
|
|
import Protolude hiding (for)
|
2019-10-18 09:57:43 +02:00
|
|
|
import System.IO
|
2020-01-07 07:48:57 +01:00
|
|
|
import Szenario191
|
2019-10-17 19:50:19 +02:00
|
|
|
|
2019-10-18 09:57:43 +02:00
|
|
|
mkPop = population 100 (I prios [])
|
|
|
|
|
|
|
|
main :: IO ()
|
2019-10-17 19:50:19 +02:00
|
|
|
main = do
|
2019-10-18 13:37:16 +02:00
|
|
|
args <- getArgs
|
|
|
|
let t = fromMaybe 100 $ headMay args >>= readMaybe
|
2019-10-18 09:57:43 +02:00
|
|
|
hSetBuffering stdout NoBuffering
|
2019-10-17 19:50:19 +02:00
|
|
|
pop <- mkPop
|
2019-10-22 16:42:16 +02:00
|
|
|
pop' <- runEffect $ for (run 2 1 (5 / 100) pop (steps t)) log
|
2019-10-22 14:33:19 +02:00
|
|
|
(res, _) <- bests 5 pop'
|
2019-10-18 09:57:43 +02:00
|
|
|
sequence_ $ format <$> res
|
|
|
|
where
|
|
|
|
format s = do
|
|
|
|
f <- liftIO $ fitness s
|
|
|
|
putErrText $ show f <> "\n" <> pretty s
|
|
|
|
log = putText . csv
|
2019-10-22 14:33:19 +02:00
|
|
|
csv (t, f) = show t <> " " <> show f
|