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"