metaheuristic_algorithms 0.1.2 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2159c2cfe2b78214dd3b284b5ced31caf367b717
4
- data.tar.gz: 1764383aa2440e0b1aa946ea854c7fb21c7859db
3
+ metadata.gz: 3dd2ffc0aa34514ddb6b911b08301698c1651fff
4
+ data.tar.gz: 7cb81d28bee88c63d10ed5835b3f762b0a89728b
5
5
  SHA512:
6
- metadata.gz: a86a34b782e303f9885cc3aa37df3c66ef081471b3aa191c8582a18eeab10833c6f7b9714131d42f82219f2870cd8849bf58ccfe064b4de54abc661d2fd6adbb
7
- data.tar.gz: 3e44d8a4c4a986e6a0266fc9c3c13dc418bd1fbc80785a51f8ac7c2c0fdd13295994825e8bf2ffd85223855ce4639a0b6845730e6d44b6c0ce1b0125cf9ed2ae
6
+ metadata.gz: b2c0db5f019af8720c407ff8ab1d8859041baa8bd9293a822734edc8892d56423dd6204798f565b7031d76fdf5ce882088f92fc7188444742afb1039ae907001
7
+ data.tar.gz: 15f10112749131b6e775385228c8985207017ebe13550380c67b06b194940e746566c68fbb14e0a803767ed04c896b39f01e67152008403f19fe62da3d80673e
data/README.md CHANGED
@@ -26,6 +26,7 @@ Step 1. Create a Function Wrapper for your objective function by extending Metah
26
26
 
27
27
  ```ruby
28
28
  require 'metaheuristic_algorithms'
29
+ require 'bigdecimal'
29
30
 
30
31
  class RosenbrookFunctionWrapper < MetaheuristicAlgorithms::FunctionWrappers::AbstractWrapper
31
32
 
@@ -57,6 +58,7 @@ Step 2. Instantiate the created Function Wrapper and pass it as the first argume
57
58
 
58
59
  ```ruby
59
60
  require 'metaheuristic_algorithms'
61
+ require 'bigdecimal'
60
62
 
61
63
  rosenbrook_function_wrapper = RosenbrookFunctionWrapper.new
62
64
 
@@ -1,3 +1,3 @@
1
1
  module MetaheuristicAlgorithms
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
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.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tadatoshi Takahashi