add PushData

This commit is contained in:
Rowan Torbitzky-Lane 2025-02-26 02:58:57 -06:00
parent b57a802f11
commit 4b10281941
2 changed files with 11 additions and 0 deletions

View File

@ -62,6 +62,7 @@ library
, HushGP.PushTests.UtilTests , HushGP.PushTests.UtilTests
, HushGP.GP , HushGP.GP
, HushGP.GP.PushArgs , HushGP.GP.PushArgs
, HushGP.GP.PushData
, HushGP.Problems.IntegerRegression , HushGP.Problems.IntegerRegression

10
src/HushGP/GP/PushData.hs Normal file
View File

@ -0,0 +1,10 @@
module HushGP.GP.PushData where
import HushGP.State
data PushData = PushData {
inputData :: [Gene],
outputData :: [Gene],
downsampleIndex :: Int,
caseDistances :: [Double]
}