├── .DS_Store ├── LISENCE.txt ├── MANIFEST.in ├── README.md ├── gpquant ├── .DS_Store ├── Backtester.py ├── Fitness.py ├── Function.py ├── SymbolicRegressor.py ├── SyntaxTree.py └── __init__.py ├── setup.py └── test.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/.DS_Store -------------------------------------------------------------------------------- /LISENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/LISENCE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/README.md -------------------------------------------------------------------------------- /gpquant/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/gpquant/.DS_Store -------------------------------------------------------------------------------- /gpquant/Backtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/gpquant/Backtester.py -------------------------------------------------------------------------------- /gpquant/Fitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/gpquant/Fitness.py -------------------------------------------------------------------------------- /gpquant/Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/gpquant/Function.py -------------------------------------------------------------------------------- /gpquant/SymbolicRegressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/gpquant/SymbolicRegressor.py -------------------------------------------------------------------------------- /gpquant/SyntaxTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/gpquant/SyntaxTree.py -------------------------------------------------------------------------------- /gpquant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/gpquant/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UePG-21/gpquant/HEAD/test.py --------------------------------------------------------------------------------