gitextract_y6cd46fo/ ├── .gitignore ├── .gitpod.yml ├── LICENSE ├── Makefile ├── README.md ├── azure-pipelines.yml ├── doc/ │ ├── _static/ │ │ └── css/ │ │ └── custom.css │ ├── api/ │ │ ├── evol.helpers.combiners.rst │ │ ├── evol.helpers.mutators.rst │ │ ├── evol.helpers.rst │ │ ├── evol.problems.functions.rst │ │ ├── evol.problems.routing.rst │ │ ├── evol.problems.rst │ │ ├── evol.rst │ │ └── modules.rst │ ├── conf.py │ ├── development.rst │ ├── index.rst │ ├── population.rst │ ├── problems.rst │ └── quickstart.rst ├── evol/ │ ├── __init__.py │ ├── conditions.py │ ├── evolution.py │ ├── exceptions.py │ ├── helpers/ │ │ ├── __init__.py │ │ ├── combiners/ │ │ │ ├── __init__.py │ │ │ ├── permutation.py │ │ │ └── utils.py │ │ ├── groups.py │ │ ├── mutators/ │ │ │ ├── __init__.py │ │ │ └── permutation.py │ │ ├── pickers.py │ │ └── utils.py │ ├── individual.py │ ├── logger.py │ ├── population.py │ ├── problems/ │ │ ├── __init__.py │ │ ├── functions/ │ │ │ ├── __init__.py │ │ │ └── variableinput.py │ │ ├── problem.py │ │ └── routing/ │ │ ├── __init__.py │ │ ├── coordinates.py │ │ ├── magicsanta.py │ │ └── tsp.py │ ├── serialization.py │ ├── step.py │ └── utils.py ├── examples/ │ ├── number_of_parents.py │ ├── population_demo.py │ ├── rock_paper_scissors.py │ ├── simple_callback.py │ ├── simple_logging.py │ ├── simple_nonlinear.py │ ├── travelling_salesman.py │ └── very_basic_tsp.py ├── setup.cfg ├── setup.py ├── test_local.sh └── tests/ ├── conftest.py ├── helpers/ │ ├── combiners/ │ │ └── test_permutation_combiners.py │ ├── mutators/ │ │ └── test_permutation_mutators.py │ ├── test_groups.py │ └── test_helpers_utils.py ├── problems/ │ ├── test_functions.py │ ├── test_santa.py │ └── test_tsp.py ├── test_callback.py ├── test_conditions.py ├── test_evolution.py ├── test_examples.py ├── test_individual.py ├── test_logging.py ├── test_parallel_population.py ├── test_population.py ├── test_serialization.py └── test_utils.py