Algorithms.md
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
README.rst
setup.py
docs/requirements.txt
docs/source/about.rst
docs/source/authors.rst
docs/source/changelog.rst
docs/source/code_of_conduct.rst
docs/source/contributing_to_niapy.rst
docs/source/documentation.rst
docs/source/features.rst
docs/source/getting_started.rst
docs/source/index.rst
docs/source/installation.rst
docs/source/support.rst
docs/source/testing.rst
docs/source/api/algorithms.rst
docs/source/api/index.rst
docs/source/api/niapy.rst
docs/source/api/problems.rst
docs/source/api/util.rst
docs/source/guides/git_beginners.rst
docs/source/guides/index.rst
docs/source/guides/mingw_installation.rst
niapy/__init__.py
niapy/runner.py
niapy/task.py
niapy.egg-info/PKG-INFO
niapy.egg-info/SOURCES.txt
niapy.egg-info/dependency_links.txt
niapy.egg-info/requires.txt
niapy.egg-info/top_level.txt
niapy/algorithms/__init__.py
niapy/algorithms/algorithm.py
niapy/algorithms/basic/__init__.py
niapy/algorithms/basic/abc.py
niapy/algorithms/basic/ba.py
niapy/algorithms/basic/bea.py
niapy/algorithms/basic/bfo.py
niapy/algorithms/basic/ca.py
niapy/algorithms/basic/cro.py
niapy/algorithms/basic/cs.py
niapy/algorithms/basic/cso.py
niapy/algorithms/basic/de.py
niapy/algorithms/basic/es.py
niapy/algorithms/basic/fa.py
niapy/algorithms/basic/foa.py
niapy/algorithms/basic/fpa.py
niapy/algorithms/basic/fss.py
niapy/algorithms/basic/fwa.py
niapy/algorithms/basic/ga.py
niapy/algorithms/basic/gsa.py
niapy/algorithms/basic/gso.py
niapy/algorithms/basic/gwo.py
niapy/algorithms/basic/hho.py
niapy/algorithms/basic/hs.py
niapy/algorithms/basic/kh.py
niapy/algorithms/basic/mbo.py
niapy/algorithms/basic/mfo.py
niapy/algorithms/basic/mke.py
niapy/algorithms/basic/pso.py
niapy/algorithms/basic/sca.py
niapy/algorithms/modified/__init__.py
niapy/algorithms/modified/hba.py
niapy/algorithms/modified/hde.py
niapy/algorithms/modified/hsaba.py
niapy/algorithms/modified/jde.py
niapy/algorithms/modified/plba.py
niapy/algorithms/modified/saba.py
niapy/algorithms/other/__init__.py
niapy/algorithms/other/aso.py
niapy/algorithms/other/hc.py
niapy/algorithms/other/mts.py
niapy/algorithms/other/nmm.py
niapy/algorithms/other/rs.py
niapy/algorithms/other/sa.py
niapy/problems/__init__.py
niapy/problems/ackley.py
niapy/problems/alpine.py
niapy/problems/bent_cigar.py
niapy/problems/chung_reynolds.py
niapy/problems/cosine_mixture.py
niapy/problems/csendes.py
niapy/problems/discus.py
niapy/problems/dixon_price.py
niapy/problems/elliptic.py
niapy/problems/griewank.py
niapy/problems/happy_cat.py
niapy/problems/hgbat.py
niapy/problems/infinity.py
niapy/problems/katsuura.py
niapy/problems/levy.py
niapy/problems/michalewichz.py
niapy/problems/perm.py
niapy/problems/pinter.py
niapy/problems/powell.py
niapy/problems/problem.py
niapy/problems/qing.py
niapy/problems/quintic.py
niapy/problems/rastrigin.py
niapy/problems/ridge.py
niapy/problems/rosenbrock.py
niapy/problems/salomon.py
niapy/problems/schaffer.py
niapy/problems/schumer_steiglitz.py
niapy/problems/schwefel.py
niapy/problems/sphere.py
niapy/problems/step.py
niapy/problems/stepint.py
niapy/problems/styblinski_tang.py
niapy/problems/sum_squares.py
niapy/problems/trid.py
niapy/problems/weierstrass.py
niapy/problems/whitley.py
niapy/problems/zakharov.py
niapy/tests/__init__.py
niapy/tests/conftest.py
niapy/tests/test_aba.py
niapy/tests/test_abc.py
niapy/tests/test_algorithm.py
niapy/tests/test_argparser.py
niapy/tests/test_aso.py
niapy/tests/test_ba.py
niapy/tests/test_bea.py
niapy/tests/test_bfo.py
niapy/tests/test_ca.py
niapy/tests/test_cro.py
niapy/tests/test_cs.py
niapy/tests/test_cso.py
niapy/tests/test_de.py
niapy/tests/test_es.py
niapy/tests/test_fa.py
niapy/tests/test_foa.py
niapy/tests/test_fpa.py
niapy/tests/test_fss.py
niapy/tests/test_fwa.py
niapy/tests/test_ga.py
niapy/tests/test_gsa.py
niapy/tests/test_gso.py
niapy/tests/test_gwo.py
niapy/tests/test_hba.py
niapy/tests/test_hc.py
niapy/tests/test_hde.py
niapy/tests/test_hho.py
niapy/tests/test_hs.py
niapy/tests/test_hsaba.py
niapy/tests/test_iter_gen_counters.py
niapy/tests/test_jde.py
niapy/tests/test_kh.py
niapy/tests/test_mbo.py
niapy/tests/test_mfo.py
niapy/tests/test_mke.py
niapy/tests/test_mts.py
niapy/tests/test_nmm.py
niapy/tests/test_problem.py
niapy/tests/test_problem_functions.py
niapy/tests/test_pso.py
niapy/tests/test_rs.py
niapy/tests/test_runner.py
niapy/tests/test_sa.py
niapy/tests/test_saba.py
niapy/tests/test_sca.py
niapy/tests/test_task.py
niapy/tests/test_utility.py
niapy/util/__init__.py
niapy/util/argparser.py
niapy/util/array.py
niapy/util/distances.py
niapy/util/factory.py
niapy/util/random.py
niapy/util/repair.py
tests/__init__.py
tests/conftest.py