haga/src/Main.hs

70 lines
1.7 KiB
Haskell
Raw Normal View History

{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE NoImplicitPrelude #-}
2019-05-30 12:40:32 +02:00
2020-01-07 08:45:50 +01:00
import Options.Applicative
import Pipes
import Pretty
2024-02-11 21:25:15 +01:00
import Protolude hiding (for)
import System.IO
-- import Szenario212Pun
2024-03-04 11:36:31 +01:00
-- import Szenario191
2024-04-21 13:22:14 +02:00
import NurseryDataset
2024-03-17 18:14:52 +01:00
import Debug.Trace as DB
import qualified Data.Map.Strict as Map
data Options = Options
2024-02-19 21:56:28 +01:00
{ iterations :: !N,
populationSize :: !N
}
2020-01-07 08:45:50 +01:00
options :: Parser Options
options =
Options
<$> option
auto
( long "iterations"
<> short 'i'
<> metavar "N"
<> value 5000
<> help "Number of iterations"
)
<*> option
auto
( long "population-size"
<> short 'p'
<> metavar "N"
2024-04-21 19:20:02 +02:00
<> value 400
<> help "Population size"
)
2020-01-07 08:45:50 +01:00
optionsWithHelp :: ParserInfo Options
2020-01-07 08:45:50 +01:00
optionsWithHelp =
info
(helper <*> options)
2020-01-07 08:45:50 +01:00
( fullDesc
<> progDesc "Run a GA"
<> header "haga - Haskell implementations of EAs"
)
main :: IO ()
main =
execParser optionsWithHelp >>= \opts -> do
hSetBuffering stdout NoBuffering
2024-04-21 13:22:14 +02:00
nurseryLEE <- shuffledNurseryLEE
let env = nurseryLE
2024-03-04 11:36:31 +01:00
let selType = Tournament 3
2024-04-21 19:20:02 +02:00
let run' = run nurseryLEE env selType 120 (5 / 100) (populationSize opts) (steps (iterations opts))
2024-03-17 18:14:52 +01:00
pop' <- runEffect (for run' logCsv)
2024-04-21 13:22:14 +02:00
nurseryLEE' <- calc nurseryLEE pop'
let (res, _) = bests nurseryLEE' 5 pop'
let nurseryLEE' = nurseryLEE {training = False}
nurseryLEE' <- calc nurseryLEE' res
mapM_ (format nurseryLEE') res
where
2024-04-21 13:22:14 +02:00
format nurseryL s = do
let f = fitness' nurseryL s
putErrText $ show f <> "\n" <> pretty s
2024-02-11 21:25:15 +01:00
logCsv = putText . csv
csv (t, f) = show t <> " " <> show f