metaheuristic_algorithms 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- 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: 3dd2ffc0aa34514ddb6b911b08301698c1651fff
|
4
|
+
data.tar.gz: 7cb81d28bee88c63d10ed5835b3f762b0a89728b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|