You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
All notable changes to the "swarmlib" pypi package will be documented in this file.
3
3
This project follows [semantic versioning](https://semver.org/).
4
4
5
+
## 2020-01-19 - v0.4.0
6
+
***Added** a feature that a feature that enables the cuckoo search for one of the provided 2D functions. After each step the intermediate solution is plotted.
5
7
6
8
## 2020-01-09 - v0.3.2
7
9
***Fixed** a bug in the firefly algorithm that caused the application to crash when the ackley function was selected.
This repository includes an ant colony optimization algorithm for the traveling salesman problem (TSP) like Marco Dorigo, Mauro Birattari, and Thomas Stuetzle introduced in the [IEEE Computational Intelligence Magazine](https://ieeexplore.ieee.org/document/4129846) in November 2006 (DOI: 10.1109/MCI.2006.329691).
37
+
This repository includes an _ant colony optimization_ algorithm for the traveling salesman problem (TSP) like Marco Dorigo, Mauro Birattari, and Thomas Stuetzle introduced in the [IEEE Computational Intelligence Magazine](https://ieeexplore.ieee.org/document/4129846) in November 2006 (DOI: 10.1109/MCI.2006.329691).
36
38
The implementation was part of the course [Natural computing for learning and optimisation](https://is.cuni.cz/studium/eng/predmety/index.php?do=predmet&kod=NPFL107) at Charles University Prague in winter 2018/2019.
37
39
38
40
### Features
@@ -52,7 +54,7 @@ swarm ants -h
52
54
53
55
### API
54
56
55
-
In addition to the client you can also use the API:
57
+
In addition to the cli you can also use the API:
56
58
57
59
```python
58
60
from swarmlib.aco4tsp.aco_problem import ACOProblem
@@ -85,7 +87,7 @@ swarm fireflies -h
85
87
86
88
### API
87
89
88
-
In addition to the client you can also use the API:
90
+
In addition to the cli you can also use the API:
89
91
90
92
```python
91
93
from swarmlib.fireflyalgorithm.firefly_problem import FireflyProblem
@@ -109,6 +111,8 @@ Currently two functions can be selected:
The plot shows all nests of the current cuckoo generation as _red_ markers. The best nests of all (previous) generations are indicated by _yellow_ markers.
115
+
112
116
To print all available options execute:
113
117
114
118
```
@@ -117,7 +121,7 @@ swarm cuckoos -h
117
121
118
122
### API
119
123
120
-
In addition to the client you can also use the API:
124
+
In addition to the cli you can also use the API:
121
125
122
126
```python
123
127
from swarmlib.cuckoosearch.cuckoo_problem import CuckooProblem
0 commit comments