Skip to content

Commit

Permalink
Update new version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thieu1995 committed Mar 22, 2024
1 parent d9b7b66 commit f821e78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Welcome to OPFUNU's documentation!
==================================

.. image:: https://img.shields.io/badge/release-1.0.1-yellow.svg
.. image:: https://img.shields.io/badge/release-1.0.2-yellow.svg
:target: https://github.com/thieu1995/opfunu/releases

.. image:: https://img.shields.io/pypi/wheel/gensim.svg
Expand Down
4 changes: 3 additions & 1 deletion opfunu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# >>> opfunu.plot_2d(f22005, n_space=1000, ax=None)
# >>> opfunu.plot_3d(f22005, n_space=1000, ax=None)

__version__ = "1.0.1"
__version__ = "1.0.2"

import inspect
import re
Expand Down Expand Up @@ -109,6 +109,8 @@ def get_all_named_functions():

def get_all_cec_functions():
return [cls for classname, cls in CEC_DATABASE if classname not in EXCLUDES]


def get_functions(ndim, continuous=None, linear=None, convex=None, unimodal=None, separable=None,
differentiable=None, scalable=None, randomized_term=None, parametric=None, modality=None):
functions = [cls for classname, cls in FUNC_DATABASE if classname not in EXCLUDES]
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def readme():

setup(
name="opfunu",
version="1.0.1",
version="1.0.2",
author="Thieu",
author_email="[email protected]",
description="Opfunu: An Open-source Python Library for Optimization Benchmark Functions",
Expand Down Expand Up @@ -52,6 +52,7 @@ def readme():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Benchmark",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
Expand Down

0 comments on commit f821e78

Please sign in to comment.