├── .github ├── imgs │ └── firefly_logo.png ├── templates │ ├── FEATURE_REQUEST.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST.md └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Problems.md ├── README.md ├── examples └── run.py ├── fireflyalgorithm ├── __init__.py ├── __main__.py ├── cli.py ├── fireflyalgorithm.py └── problems.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── test_firefly.py └── test_problems.py /.github/imgs/firefly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/.github/imgs/firefly_logo.png -------------------------------------------------------------------------------- /.github/templates/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/.github/templates/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/templates/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/.github/templates/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/templates/PULL_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/.github/templates/PULL_REQUEST.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/Problems.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/README.md -------------------------------------------------------------------------------- /examples/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/examples/run.py -------------------------------------------------------------------------------- /fireflyalgorithm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/fireflyalgorithm/__init__.py -------------------------------------------------------------------------------- /fireflyalgorithm/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/fireflyalgorithm/__main__.py -------------------------------------------------------------------------------- /fireflyalgorithm/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/fireflyalgorithm/cli.py -------------------------------------------------------------------------------- /fireflyalgorithm/fireflyalgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/fireflyalgorithm/fireflyalgorithm.py -------------------------------------------------------------------------------- /fireflyalgorithm/problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/fireflyalgorithm/problems.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_firefly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/tests/test_firefly.py -------------------------------------------------------------------------------- /tests/test_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly-cpp/FireflyAlgorithm/HEAD/tests/test_problems.py --------------------------------------------------------------------------------