taboo_reactive_search 0.0.1 → 0.0.2
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.
- checksums.yaml +8 -8
- data/README.md +7 -2
- data/lib/taboo_reactive_search/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTIxZjRiOWVmNTc1NzEzMjU4MDc2ZDZjZGQzNGZhNzhmNzU4ZmM5YQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZWY3Nzk0ODRiYWVkOTlmYWI4MzRhZDlkOTFhMTViZDEzNzYwZTA4YQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MmFjOGViNTdiNzljOTZiMzU3ZWY0NGY4MjE1ZGE2ZmQ4MGM3ZDczNzcxZjM4
|
|
10
|
+
ZWI3MjAyOTNjNTA1MzAxNTAyZDJhZDU2N2E0YjY1YTQ0YWU0MTg1MzNjMTY0
|
|
11
|
+
MGY1YzIwZmJkMzliNDU3NDg1NjgwMmJiZGM3ZDg0YTYyMmVmZTQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZWQwOWQyMmI1NTdjMjhhYTY0MjdmYmZkZGViNjY4ZmFhNDczODM3NDIxODdh
|
|
14
|
+
ZTgxYTAxZDg3NjdlYjBjYzZkZTQ3MmIxYWRkNjFhZTcwMjY2ZTEzZGFmMjBi
|
|
15
|
+
Njc5ZmFiMmI4ZjcxYzJjNGYyNGU5NjI4YTQzNDY0N2JjZWQ1NTk=
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TabooReactiveSearch
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Taboo reactive search to solve travelling salesman.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,7 +18,12 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
TabooReactiveSearch::TabooReactiveSearch.new.search([[565,575],[25,185]], 50, 100, 1.3, 0.9)[:cost]
|
|
22
|
+
|
|
23
|
+
50 - max candidates
|
|
24
|
+
100 - max iterations
|
|
25
|
+
1.3 - increase
|
|
26
|
+
0.9 - drop
|
|
22
27
|
|
|
23
28
|
## Contributing
|
|
24
29
|
|