From 841e003a9f65df3720f266421319f065c199e9a3 Mon Sep 17 00:00:00 2001 From: Jorge Mario Cruz-Duarte Date: Thu, 25 Apr 2024 14:42:45 -0600 Subject: [PATCH] patch to genetic mutation operator because of memory overflow --- customhys/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/customhys/__init__.py b/customhys/__init__.py index 5fecda3..acf8b0e 100644 --- a/customhys/__init__.py +++ b/customhys/__init__.py @@ -1,4 +1,4 @@ __all__ = ['benchmark_func', 'experiment', 'hyperheuristic', 'metaheuristic', 'operators', 'population', 'tools', 'visualisation'] # Under revision: 'characterisation', 'visualisation' -__version__ = "1.1.5" +__version__ = "1.1.6" diff --git a/setup.py b/setup.py index d488393..b154301 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name='customhys', - version='1.1.5', + version='1.1.6', packages=setuptools.find_packages(), url='https://github.com/jcrvz/customhys', license='MIT License',