├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _static │ ├── allele_plot.png │ ├── dtlz1funb.jpg │ ├── dtlz7funb.jpg │ ├── generation_plot.png │ ├── image11981.jpg │ ├── image12271.jpg │ ├── image12371.jpg │ ├── image12721.jpg │ ├── image6011.jpg │ ├── image8891.jpg │ ├── kursawefun.jpg │ └── moonshot.jpg ├── authors.rst ├── conf.py ├── contributing.rst ├── examples.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── moonshot.py ├── overview.rst ├── polyarea.py ├── rastrigin.py ├── readme.rst ├── recipes.rst ├── reference.rst ├── troubleshooting.rst ├── tutorial.rst └── usage.rst ├── examples ├── __init__.py ├── advanced │ ├── __init__.py │ ├── islands_example.py │ ├── knapsack_acs_example.py │ ├── knapsack_ec_example.py │ ├── logging_example.py │ ├── niche_example.py │ ├── parallel_evaluation_mp_example.py │ ├── parallel_evaluation_pp_example.py │ └── tsp_ec_example.py ├── custom │ ├── __init__.py │ ├── custom_archiver_example.py │ ├── custom_ec_example.py │ ├── custom_observer_example.py │ ├── custom_replacer_example.py │ ├── custom_selector_example.py │ ├── custom_terminator_example.py │ └── custom_variator_example.py └── standard │ ├── __init__.py │ ├── acs_example.py │ ├── dea_example.py │ ├── eda_example.py │ ├── es_example.py │ ├── ga_example.py │ ├── nsga_example.py │ ├── paes_example.py │ ├── pso_example.py │ └── sa_example.py ├── inspyred ├── __init__.py ├── benchmarks.py ├── cli.py ├── ec │ ├── __init__.py │ ├── analysis.py │ ├── archivers.py │ ├── ec.py │ ├── emo.py │ ├── evaluators.py │ ├── generators.py │ ├── migrators.py │ ├── observers.py │ ├── replacers.py │ ├── selectors.py │ ├── terminators.py │ ├── utilities.py │ └── variators │ │ ├── __init__.py │ │ ├── crossovers.py │ │ ├── mutators.py │ │ └── variators.py └── swarm │ ├── __init__.py │ ├── swarm.py │ └── topologies.py ├── pyproject.toml ├── recipes ├── constraint_selection.py ├── lexicographic.py ├── meta_ec.py ├── micro_ec.py └── network_migrator.py ├── setup.cfg ├── tests ├── __init__.py ├── evaluator_tests.py ├── example_tests.py ├── observer_tests.py ├── operator_tests.py ├── supplemental_tests.py └── test_inspyred.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/allele_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/allele_plot.png -------------------------------------------------------------------------------- /docs/_static/dtlz1funb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/dtlz1funb.jpg -------------------------------------------------------------------------------- /docs/_static/dtlz7funb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/dtlz7funb.jpg -------------------------------------------------------------------------------- /docs/_static/generation_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/generation_plot.png -------------------------------------------------------------------------------- /docs/_static/image11981.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/image11981.jpg -------------------------------------------------------------------------------- /docs/_static/image12271.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/image12271.jpg -------------------------------------------------------------------------------- /docs/_static/image12371.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/image12371.jpg -------------------------------------------------------------------------------- /docs/_static/image12721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/image12721.jpg -------------------------------------------------------------------------------- /docs/_static/image6011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/image6011.jpg -------------------------------------------------------------------------------- /docs/_static/image8891.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/image8891.jpg -------------------------------------------------------------------------------- /docs/_static/kursawefun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/kursawefun.jpg -------------------------------------------------------------------------------- /docs/_static/moonshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/_static/moonshot.jpg -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/moonshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/moonshot.py -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/polyarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/polyarea.py -------------------------------------------------------------------------------- /docs/rastrigin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/rastrigin.py -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/recipes.rst -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/troubleshooting.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/advanced/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/__init__.py -------------------------------------------------------------------------------- /examples/advanced/islands_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/islands_example.py -------------------------------------------------------------------------------- /examples/advanced/knapsack_acs_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/knapsack_acs_example.py -------------------------------------------------------------------------------- /examples/advanced/knapsack_ec_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/knapsack_ec_example.py -------------------------------------------------------------------------------- /examples/advanced/logging_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/logging_example.py -------------------------------------------------------------------------------- /examples/advanced/niche_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/niche_example.py -------------------------------------------------------------------------------- /examples/advanced/parallel_evaluation_mp_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/parallel_evaluation_mp_example.py -------------------------------------------------------------------------------- /examples/advanced/parallel_evaluation_pp_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/parallel_evaluation_pp_example.py -------------------------------------------------------------------------------- /examples/advanced/tsp_ec_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/advanced/tsp_ec_example.py -------------------------------------------------------------------------------- /examples/custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/__init__.py -------------------------------------------------------------------------------- /examples/custom/custom_archiver_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/custom_archiver_example.py -------------------------------------------------------------------------------- /examples/custom/custom_ec_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/custom_ec_example.py -------------------------------------------------------------------------------- /examples/custom/custom_observer_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/custom_observer_example.py -------------------------------------------------------------------------------- /examples/custom/custom_replacer_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/custom_replacer_example.py -------------------------------------------------------------------------------- /examples/custom/custom_selector_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/custom_selector_example.py -------------------------------------------------------------------------------- /examples/custom/custom_terminator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/custom_terminator_example.py -------------------------------------------------------------------------------- /examples/custom/custom_variator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/custom/custom_variator_example.py -------------------------------------------------------------------------------- /examples/standard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/__init__.py -------------------------------------------------------------------------------- /examples/standard/acs_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/acs_example.py -------------------------------------------------------------------------------- /examples/standard/dea_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/dea_example.py -------------------------------------------------------------------------------- /examples/standard/eda_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/eda_example.py -------------------------------------------------------------------------------- /examples/standard/es_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/es_example.py -------------------------------------------------------------------------------- /examples/standard/ga_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/ga_example.py -------------------------------------------------------------------------------- /examples/standard/nsga_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/nsga_example.py -------------------------------------------------------------------------------- /examples/standard/paes_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/paes_example.py -------------------------------------------------------------------------------- /examples/standard/pso_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/pso_example.py -------------------------------------------------------------------------------- /examples/standard/sa_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/examples/standard/sa_example.py -------------------------------------------------------------------------------- /inspyred/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/__init__.py -------------------------------------------------------------------------------- /inspyred/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/benchmarks.py -------------------------------------------------------------------------------- /inspyred/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/cli.py -------------------------------------------------------------------------------- /inspyred/ec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/__init__.py -------------------------------------------------------------------------------- /inspyred/ec/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/analysis.py -------------------------------------------------------------------------------- /inspyred/ec/archivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/archivers.py -------------------------------------------------------------------------------- /inspyred/ec/ec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/ec.py -------------------------------------------------------------------------------- /inspyred/ec/emo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/emo.py -------------------------------------------------------------------------------- /inspyred/ec/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/evaluators.py -------------------------------------------------------------------------------- /inspyred/ec/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/generators.py -------------------------------------------------------------------------------- /inspyred/ec/migrators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/migrators.py -------------------------------------------------------------------------------- /inspyred/ec/observers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/observers.py -------------------------------------------------------------------------------- /inspyred/ec/replacers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/replacers.py -------------------------------------------------------------------------------- /inspyred/ec/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/selectors.py -------------------------------------------------------------------------------- /inspyred/ec/terminators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/terminators.py -------------------------------------------------------------------------------- /inspyred/ec/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/utilities.py -------------------------------------------------------------------------------- /inspyred/ec/variators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/variators/__init__.py -------------------------------------------------------------------------------- /inspyred/ec/variators/crossovers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/variators/crossovers.py -------------------------------------------------------------------------------- /inspyred/ec/variators/mutators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/variators/mutators.py -------------------------------------------------------------------------------- /inspyred/ec/variators/variators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/ec/variators/variators.py -------------------------------------------------------------------------------- /inspyred/swarm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/swarm/__init__.py -------------------------------------------------------------------------------- /inspyred/swarm/swarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/swarm/swarm.py -------------------------------------------------------------------------------- /inspyred/swarm/topologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/inspyred/swarm/topologies.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/pyproject.toml -------------------------------------------------------------------------------- /recipes/constraint_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/recipes/constraint_selection.py -------------------------------------------------------------------------------- /recipes/lexicographic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/recipes/lexicographic.py -------------------------------------------------------------------------------- /recipes/meta_ec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/recipes/meta_ec.py -------------------------------------------------------------------------------- /recipes/micro_ec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/recipes/micro_ec.py -------------------------------------------------------------------------------- /recipes/network_migrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/recipes/network_migrator.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/evaluator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/tests/evaluator_tests.py -------------------------------------------------------------------------------- /tests/example_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/tests/example_tests.py -------------------------------------------------------------------------------- /tests/observer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/tests/observer_tests.py -------------------------------------------------------------------------------- /tests/operator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/tests/operator_tests.py -------------------------------------------------------------------------------- /tests/supplemental_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/tests/supplemental_tests.py -------------------------------------------------------------------------------- /tests/test_inspyred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/tests/test_inspyred.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarongarrett/inspyred/HEAD/tox.ini --------------------------------------------------------------------------------