├── .gitignore ├── README.md ├── Report.pdf ├── Slides.pdf ├── res └── images │ ├── example-tree.png │ └── tier.png └── src ├── ConvGP.py ├── deapfix.py ├── evolution.py ├── helpers.py ├── search.py └── stgp.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/README.md -------------------------------------------------------------------------------- /Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/Report.pdf -------------------------------------------------------------------------------- /Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/Slides.pdf -------------------------------------------------------------------------------- /res/images/example-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/res/images/example-tree.png -------------------------------------------------------------------------------- /res/images/tier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/res/images/tier.png -------------------------------------------------------------------------------- /src/ConvGP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/src/ConvGP.py -------------------------------------------------------------------------------- /src/deapfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/src/deapfix.py -------------------------------------------------------------------------------- /src/evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/src/evolution.py -------------------------------------------------------------------------------- /src/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/src/helpers.py -------------------------------------------------------------------------------- /src/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/src/search.py -------------------------------------------------------------------------------- /src/stgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminpatrickevans/ConvGP/HEAD/src/stgp.py --------------------------------------------------------------------------------