gimuby 0.7.3 → 0.7.4
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 +7 -7
- data/Gemfile.lock +16 -0
- data/README.md +1 -1
- data/lib/gimuby/genetic/solution/solution.rb +5 -3
- metadata +24 -32
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 8fa1f14d88cc2c2438f6eb743c7cdf9c561ef17d
|
|
4
|
+
data.tar.gz: e60797cd70d4c296558a50957053e1f61079f9e1
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 3002d33c504910332c9cd9d3f394a09e481556621d7506d18115d38c4bd4882700be74cf6f285a6a93c37d89f6c5d43aa3aedc669592109d3c3f24221bdb10ec
|
|
7
|
+
data.tar.gz: 7d4a451cceb7a91331b94c58a87e2b3a4ea113bc4e97943c1f3d1331e2bbcbceb4af913d00b4f375a07b163ab23b282191e4f4c5e40b67d8ccce82d903a915b3
|
data/Gemfile.lock
ADDED
data/README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
[](http://travis-ci.org/
|
|
1
|
+
[](http://travis-ci.org/frantzmiccoli/Gimuby)
|
|
2
2
|
|
|
3
3
|
[Gimuby's presentation page](http://frantzmiccoli.github.io/Gimuby/ "Gimuby").
|
|
@@ -76,11 +76,13 @@ class Solution
|
|
|
76
76
|
end
|
|
77
77
|
|
|
78
78
|
def check
|
|
79
|
-
|
|
80
|
-
|
|
79
|
+
unless @check_strategy.nil?
|
|
80
|
+
checked_representation = @check_strategy.check(get_solution_representation)
|
|
81
|
+
set_solution_representation(checked_representation)
|
|
82
|
+
end
|
|
81
83
|
end
|
|
82
84
|
|
|
83
85
|
def get_event_manager
|
|
84
86
|
$dependencies.event_manager
|
|
85
87
|
end
|
|
86
|
-
end
|
|
88
|
+
end
|
metadata
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gimuby
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.7.4
|
|
5
5
|
platform: ruby
|
|
6
|
-
authors:
|
|
7
|
-
-
|
|
6
|
+
authors:
|
|
7
|
+
- Frantz Miccoli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
|
|
12
|
-
date: 2014-04-14 00:00:00 Z
|
|
11
|
+
date: 2014-08-06 00:00:00.000000000 Z
|
|
13
12
|
dependencies: []
|
|
14
|
-
|
|
15
13
|
description: |-
|
|
16
14
|
Implemented for academic purpose, Gimuby is also suitable for teaching purpose. As far as we know this implementation of genetic algorithms is the most advanced available in Ruby for itintegrates an implementation of the island model, reusable patterns for user problem composition and optimal configuration genetic algorithm
|
|
17
15
|
Gimuby contains the implementation of standard genetic algorithm (named population) and distributed genetic algorithm or island model (named archipelago).
|
|
@@ -19,12 +17,14 @@ description: |-
|
|
|
19
17
|
Similar to: AI4R, gga4r and darwinning
|
|
20
18
|
email:
|
|
21
19
|
executables: []
|
|
22
|
-
|
|
23
20
|
extensions: []
|
|
24
|
-
|
|
25
21
|
extra_rdoc_files: []
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
files:
|
|
23
|
+
- Gemfile
|
|
24
|
+
- Gemfile.lock
|
|
25
|
+
- LICENSE.md
|
|
26
|
+
- README.md
|
|
27
|
+
- lib/gimuby.rb
|
|
28
28
|
- lib/gimuby/config.rb
|
|
29
29
|
- lib/gimuby/dependencies.rb
|
|
30
30
|
- lib/gimuby/event/event.rb
|
|
@@ -80,36 +80,28 @@ files:
|
|
|
80
80
|
- lib/gimuby/problem/step/step_solution.rb
|
|
81
81
|
- lib/gimuby/problem/tsp/tsp.rb
|
|
82
82
|
- lib/gimuby/problem/tsp/tsp_solution.rb
|
|
83
|
-
- lib/gimuby.rb
|
|
84
|
-
- Gemfile
|
|
85
|
-
- LICENSE.md
|
|
86
|
-
- README.md
|
|
87
83
|
homepage: https://frantzmiccoli.github.io/Gimuby
|
|
88
|
-
licenses:
|
|
84
|
+
licenses:
|
|
89
85
|
- MIT
|
|
90
86
|
metadata: {}
|
|
91
|
-
|
|
92
87
|
post_install_message:
|
|
93
88
|
rdoc_options: []
|
|
94
|
-
|
|
95
|
-
require_paths:
|
|
89
|
+
require_paths:
|
|
96
90
|
- lib
|
|
97
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
98
|
-
requirements:
|
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
99
93
|
- - ">="
|
|
100
|
-
- !ruby/object:Gem::Version
|
|
101
|
-
version:
|
|
102
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
|
-
requirements:
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '1.8'
|
|
96
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
|
+
requirements:
|
|
104
98
|
- - ">="
|
|
105
|
-
- !ruby/object:Gem::Version
|
|
106
|
-
version:
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: '0'
|
|
107
101
|
requirements: []
|
|
108
|
-
|
|
109
102
|
rubyforge_project:
|
|
110
|
-
rubygems_version: 2.
|
|
103
|
+
rubygems_version: 2.2.2
|
|
111
104
|
signing_key:
|
|
112
105
|
specification_version: 4
|
|
113
|
-
summary:
|
|
106
|
+
summary: 'Gimuby: genetic algorithm and island model for Ruby'
|
|
114
107
|
test_files: []
|
|
115
|
-
|