aisp 0.4.0__tar.gz → 0.4.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. {aisp-0.4.0 → aisp-0.4.1}/PKG-INFO +1 -1
  2. {aisp-0.4.0 → aisp-0.4.1}/aisp/base/mutation.py +2 -2
  3. {aisp-0.4.0 → aisp-0.4.1}/aisp.egg-info/PKG-INFO +1 -1
  4. {aisp-0.4.0 → aisp-0.4.1}/pyproject.toml +1 -1
  5. {aisp-0.4.0 → aisp-0.4.1}/LICENSE +0 -0
  6. {aisp-0.4.0 → aisp-0.4.1}/README.md +0 -0
  7. {aisp-0.4.0 → aisp-0.4.1}/aisp/__init__.py +0 -0
  8. {aisp-0.4.0 → aisp-0.4.1}/aisp/base/__init__.py +0 -0
  9. {aisp-0.4.0 → aisp-0.4.1}/aisp/base/_base.py +0 -0
  10. {aisp-0.4.0 → aisp-0.4.1}/aisp/base/_classifier.py +0 -0
  11. {aisp-0.4.0 → aisp-0.4.1}/aisp/base/_clusterer.py +0 -0
  12. {aisp-0.4.0 → aisp-0.4.1}/aisp/base/_optimizer.py +0 -0
  13. {aisp-0.4.0 → aisp-0.4.1}/aisp/base/populations.py +0 -0
  14. {aisp-0.4.0 → aisp-0.4.1}/aisp/csa/__init__.py +0 -0
  15. {aisp-0.4.0 → aisp-0.4.1}/aisp/csa/_ai_recognition_sys.py +0 -0
  16. {aisp-0.4.0 → aisp-0.4.1}/aisp/csa/_base.py +0 -0
  17. {aisp-0.4.0 → aisp-0.4.1}/aisp/csa/_cell.py +0 -0
  18. {aisp-0.4.0 → aisp-0.4.1}/aisp/csa/_clonalg.py +0 -0
  19. {aisp-0.4.0 → aisp-0.4.1}/aisp/exceptions.py +0 -0
  20. {aisp-0.4.0 → aisp-0.4.1}/aisp/ina/__init__.py +0 -0
  21. {aisp-0.4.0 → aisp-0.4.1}/aisp/ina/_ai_network.py +0 -0
  22. {aisp-0.4.0 → aisp-0.4.1}/aisp/ina/_base.py +0 -0
  23. {aisp-0.4.0 → aisp-0.4.1}/aisp/nsa/__init__.py +0 -0
  24. {aisp-0.4.0 → aisp-0.4.1}/aisp/nsa/_base.py +0 -0
  25. {aisp-0.4.0 → aisp-0.4.1}/aisp/nsa/_binary_negative_selection.py +0 -0
  26. {aisp-0.4.0 → aisp-0.4.1}/aisp/nsa/_negative_selection.py +0 -0
  27. {aisp-0.4.0 → aisp-0.4.1}/aisp/nsa/_ns_core.py +0 -0
  28. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/__init__.py +0 -0
  29. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/_multiclass.py +0 -0
  30. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/display.py +0 -0
  31. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/distance.py +0 -0
  32. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/metrics.py +0 -0
  33. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/sanitizers.py +0 -0
  34. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/types.py +0 -0
  35. {aisp-0.4.0 → aisp-0.4.1}/aisp/utils/validation.py +0 -0
  36. {aisp-0.4.0 → aisp-0.4.1}/aisp.egg-info/SOURCES.txt +0 -0
  37. {aisp-0.4.0 → aisp-0.4.1}/aisp.egg-info/dependency_links.txt +0 -0
  38. {aisp-0.4.0 → aisp-0.4.1}/aisp.egg-info/requires.txt +0 -0
  39. {aisp-0.4.0 → aisp-0.4.1}/aisp.egg-info/top_level.txt +0 -0
  40. {aisp-0.4.0 → aisp-0.4.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aisp
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Package with techniques of artificial immune systems.
5
5
  Author-email: João Paulo da Silva Barros <jpsilvabarr@gmail.com>
6
6
  Maintainer-email: Alison Zille Lopes <alisonzille@gmail.com>
@@ -58,7 +58,7 @@ def clone_and_mutate_continuous(
58
58
  for j in range(n_mutations):
59
59
  idx = position_mutations[j]
60
60
  clone[idx] = np.float64(np.random.random())
61
- clone_set[i] = clone
61
+ clone_set[i] = clone
62
62
 
63
63
  return clone_set
64
64
 
@@ -155,7 +155,7 @@ def clone_and_mutate_ranged(
155
155
  min_limit = bounds[0][idx]
156
156
  max_limit = bounds[1][idx]
157
157
  clone[idx] = np.random.uniform(low=min_limit, high=max_limit)
158
- clone_set[i] = clone
158
+ clone_set[i] = clone
159
159
 
160
160
  return clone_set
161
161
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aisp
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Package with techniques of artificial immune systems.
5
5
  Author-email: João Paulo da Silva Barros <jpsilvabarr@gmail.com>
6
6
  Maintainer-email: Alison Zille Lopes <alisonzille@gmail.com>
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "aisp"
8
- version = "0.4.0"
8
+ version = "0.4.1"
9
9
  authors = [
10
10
  { name="João Paulo da Silva Barros", email="jpsilvabarr@gmail.com" },
11
11
  ]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes