├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── crfmnes ├── __init__.py └── alg.py ├── examples └── demo_sphere.py ├── requirements.txt ├── setup.py ├── slide_cec2022.pdf └── tests ├── __init__.py ├── test_constraint_sphere.py ├── test_ellipsoid.py ├── test_ktablet.py ├── test_rastrigin.py └── test_rosenbrock_chain.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/README.md -------------------------------------------------------------------------------- /crfmnes/__init__.py: -------------------------------------------------------------------------------- 1 | from .alg import CRFMNES 2 | -------------------------------------------------------------------------------- /crfmnes/alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/crfmnes/alg.py -------------------------------------------------------------------------------- /examples/demo_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/examples/demo_sphere.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.15.2 2 | pytest==3.9.1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/setup.py -------------------------------------------------------------------------------- /slide_cec2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/slide_cec2022.pdf -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | import crfmnes -------------------------------------------------------------------------------- /tests/test_constraint_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/tests/test_constraint_sphere.py -------------------------------------------------------------------------------- /tests/test_ellipsoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/tests/test_ellipsoid.py -------------------------------------------------------------------------------- /tests/test_ktablet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/tests/test_ktablet.py -------------------------------------------------------------------------------- /tests/test_rastrigin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/tests/test_rastrigin.py -------------------------------------------------------------------------------- /tests/test_rosenbrock_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomuramasahir0/crfmnes/HEAD/tests/test_rosenbrock_chain.py --------------------------------------------------------------------------------