From 56551924aed684bb17c1b71817d84eae4ed97191 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Tue, 18 Feb 2025 00:20:21 -0600 Subject: [PATCH] remove old branch leftovers --- README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/README.md b/README.md index 894f2d3..d9e2b3c 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,6 @@ # HushGP A PushGP implementation in Haskell -This branch is meant to to go one by one and finish implementing all of -the functions in the pyshgp list. - -https://erp12.github.io/pyshgp/html/core_instructions.html - -# Big Problem - -There is no easy way to determine equality of two functions in Haskell. No comparing names, no nothing. -We coult compare applying two functions to an example state, but that would get tedious and costly quickly. - -The only idea floating in my head at the moment is to attach a string to the `StateFunc` Gene to -track what the functions are. This would require a painful redefinition of the tests, but I think would be -worth it in the grand scheme. Would mean we could also track the functions when outputting them after training. - ## Tasks * [ ] Post minimal core of exec to haskell discourse for advice about speed optimization. * [x] Do test-driven development on this one.