metaheuristic_algorithms 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/metaheuristic_algorithms/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2159c2cfe2b78214dd3b284b5ced31caf367b717
|
4
|
+
data.tar.gz: 1764383aa2440e0b1aa946ea854c7fb21c7859db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a86a34b782e303f9885cc3aa37df3c66ef081471b3aa191c8582a18eeab10833c6f7b9714131d42f82219f2870cd8849bf58ccfe064b4de54abc661d2fd6adbb
|
7
|
+
data.tar.gz: 3e44d8a4c4a986e6a0266fc9c3c13dc418bd1fbc80785a51f8ac7c2c0fdd13295994825e8bf2ffd85223855ce4639a0b6845730e6d44b6c0ce1b0125cf9ed2ae
|
data/README.md
CHANGED
@@ -58,7 +58,7 @@ Step 2. Instantiate the created Function Wrapper and pass it as the first argume
|
|
58
58
|
```ruby
|
59
59
|
require 'metaheuristic_algorithms'
|
60
60
|
|
61
|
-
rosenbrook_function_wrapper =
|
61
|
+
rosenbrook_function_wrapper = RosenbrookFunctionWrapper.new
|
62
62
|
|
63
63
|
harmony_search = MetaheuristicAlgorithms::HarmonySearch.new(rosenbrook_function_wrapper, number_of_variables: 2, objective: :minimization)
|
64
64
|
|