From 747bf57d03270514cd6028653edf97a07b0d6421 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Tue, 25 Feb 2025 14:59:23 -0600 Subject: [PATCH] add variation file --- HushGP.cabal | 1 + src/HushGP/GP/Variation.hs | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 src/HushGP/GP/Variation.hs diff --git a/HushGP.cabal b/HushGP.cabal index 87df5dc..d0eb20d 100644 --- a/HushGP.cabal +++ b/HushGP.cabal @@ -62,6 +62,7 @@ library , HushGP.PushTests.UtilTests , HushGP.GP , HushGP.GP.PushArgs + , HushGP.GP.Variation , HushGP.Problems.IntegerRegression diff --git a/src/HushGP/GP/Variation.hs b/src/HushGP/GP/Variation.hs new file mode 100644 index 0000000..a3439e9 --- /dev/null +++ b/src/HushGP/GP/Variation.hs @@ -0,0 +1,7 @@ +module HushGP.GP.Variation where + +import HushGP.Genome +import HushGP.GP.PushArgs + +newIndividual :: PushArgs -> [Individual] -> Individual +newIndividual = error "Implement this later"