iterated_local_search 0.0.2 → 0.0.3
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 +2 -2
- data/lib/iterated_local_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
|
+
ZGJiZDliYjQ3OWIzYTE5NDEyNDIxNzM1ZjQxOTA1MjNlM2UzYTJmZA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
N2YyNzZhNGY1MjAzZmE0MGI0ODE5YjUzM2NjYmNkMDU5ODVhYjViNQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZDU3YzI2MWYyMmUxZDA0MTdjYzI3MTE1ODgwYTlhYTllNGE2NGEwNjExMGQ3
|
|
10
|
+
ODBiNTgwNzc3OTEwMWU1ZWQ0YmZlMjE2NWY3NWY3YzMwNzkyOWRmNDM2OTFh
|
|
11
|
+
ZjdlYTE5YzQxMjZjYjU2ZWE1ZTRmYzM0ZWJlMTZjOWJkZjRmODM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YmUyZmYyZmJlNTFjMTlmMTcyNjM2ZjRmYmZjMzkwMWU0N2Y5NmUyZWVmZTc5
|
|
14
|
+
NThmNDFjYTAxMTRkYmNhNzFlYTVmMTJlZjdjYjA5ZGU4NWVmMmZiYmM3MTc3
|
|
15
|
+
YmNlYjU2OTUxOTU0MDJhMzI2N2Y5NGVmNmQ5YTdkYjEzNGYzY2Y=
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# IteratedLocalSearch
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Solves travelling salesman. tries to find shortes circuit.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,7 +18,7 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
You can do something like IteratedLocalSearch::IteratedLocalSearch.new.search([[50, 50], [70, 70]], 100, 50).
|
|
22
22
|
|
|
23
23
|
## Contributing
|
|
24
24
|
|