metaheuristic_algorithms 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bc5353994d45d2635304aa9b75be715238dc7b81
4
- data.tar.gz: 5e560ac1a8f7d7b7df2f2204fec271b9abd6020d
3
+ metadata.gz: 2159c2cfe2b78214dd3b284b5ced31caf367b717
4
+ data.tar.gz: 1764383aa2440e0b1aa946ea854c7fb21c7859db
5
5
  SHA512:
6
- metadata.gz: 546683c005f556c3e094c54dba1a5f647715f66e7a09216490caf3d216b59409d623831f2339b482fd6132042b03812d4f6159f017ad51ba1c8618fa37d1f03a
7
- data.tar.gz: 8f4f50276ea362c49369025a6e68c0cd0f2259d2d50360d34f25e7a0b33ea5a6f7a30ab0ba8f2bcba04cecaabc00cd817ba02f7dab11f8ca847fa12490171f1e
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 = MetaheuristicAlgorithms::FunctionWrappers::RosenbrookFunctionWrapper.new
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
 
@@ -1,3 +1,3 @@
1
1
  module MetaheuristicAlgorithms
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metaheuristic_algorithms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tadatoshi Takahashi