From 9d1c93ac948136f9914ba71cccac5f8e5c82bb17 Mon Sep 17 00:00:00 2001 From: Johannes Merl Date: Thu, 9 May 2024 10:12:02 +0200 Subject: [PATCH] reduce population to fix memory issues in higher depth case --- lambda/src/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lambda/src/Main.hs b/lambda/src/Main.hs index 33ea9f5..b0b57f8 100644 --- a/lambda/src/Main.hs +++ b/lambda/src/Main.hs @@ -35,7 +35,7 @@ options = ( long "population-size" <> short 'p' <> metavar "N" - <> value 400 + <> value 100 <> help "Population size" ) @@ -59,7 +59,7 @@ main = selectionType = Tournament 3, termination = (steps (iterations opts)), poulationSize = (populationSize opts), - stepSize = 120, + stepSize = 90, elitismRatio = 5/100 } pop' <- runEffect (for (run cfg) logCsv)