├── .gitignore ├── CITATION.cff ├── EasyGA ├── EasyGA.py ├── __init__.py ├── attributes.py ├── crossover │ ├── Crossover.py │ ├── __init__.py │ └── test_crossover_methods.py ├── database │ ├── __init__.py │ ├── matplotlib_graph.py │ └── sql_database.py ├── decorators.py ├── examples │ ├── Fitness.py │ ├── __init__.py │ └── test_Fitness.py ├── mutation │ ├── Mutation.py │ ├── __init__.py │ └── test_mutation_methods.py ├── parent │ ├── Parent.py │ ├── __init__.py │ └── test_parent_selection_methods.py ├── run.py ├── structure │ ├── __init__.py │ ├── chromosome.py │ ├── gene.py │ └── population.py ├── survivor │ ├── Survivor.py │ ├── __init__.py │ └── test_survivor_methods.py ├── termination │ ├── Termination.py │ ├── __init__.py │ └── test_termination_methods.py └── test_EasyGA.py ├── LICENSE.txt ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/CITATION.cff -------------------------------------------------------------------------------- /EasyGA/EasyGA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/EasyGA.py -------------------------------------------------------------------------------- /EasyGA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/attributes.py -------------------------------------------------------------------------------- /EasyGA/crossover/Crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/crossover/Crossover.py -------------------------------------------------------------------------------- /EasyGA/crossover/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/crossover/test_crossover_methods.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/database/__init__.py -------------------------------------------------------------------------------- /EasyGA/database/matplotlib_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/database/matplotlib_graph.py -------------------------------------------------------------------------------- /EasyGA/database/sql_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/database/sql_database.py -------------------------------------------------------------------------------- /EasyGA/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/decorators.py -------------------------------------------------------------------------------- /EasyGA/examples/Fitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/examples/Fitness.py -------------------------------------------------------------------------------- /EasyGA/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/examples/test_Fitness.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EasyGA/mutation/Mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/mutation/Mutation.py -------------------------------------------------------------------------------- /EasyGA/mutation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/mutation/test_mutation_methods.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/parent/Parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/parent/Parent.py -------------------------------------------------------------------------------- /EasyGA/parent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/parent/test_parent_selection_methods.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/run.py -------------------------------------------------------------------------------- /EasyGA/structure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/structure/__init__.py -------------------------------------------------------------------------------- /EasyGA/structure/chromosome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/structure/chromosome.py -------------------------------------------------------------------------------- /EasyGA/structure/gene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/structure/gene.py -------------------------------------------------------------------------------- /EasyGA/structure/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/structure/population.py -------------------------------------------------------------------------------- /EasyGA/survivor/Survivor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/survivor/Survivor.py -------------------------------------------------------------------------------- /EasyGA/survivor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/survivor/test_survivor_methods.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/termination/Termination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/termination/Termination.py -------------------------------------------------------------------------------- /EasyGA/termination/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/termination/test_termination_methods.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyGA/test_EasyGA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/EasyGA/test_EasyGA.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwilczak101/EasyGA/HEAD/setup.py --------------------------------------------------------------------------------