gimuby 0.7.3 → 0.7.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 774ea577ca0cd0fe53bc732d56a6e6e560adfc22
4
- data.tar.gz: 84804ec18561b0fda31713951c3f41e06b7d5733
5
- SHA512:
6
- metadata.gz: d01872dc51ad8d00723f0c78a48188181020818a0f9366bb254d88dee504ccb7b78054f62f8e3c69550b6d5df4763c46e251ee1b266045b514749b040f4ad37c
7
- data.tar.gz: 9ac69252b798eedca91c88d64c7ac6045c7ad17ad288c54fc9f5d19b01e7c5610ef7f1156f92cc195a239c7f5027de55e49c8be10846495934f94a1393880f39
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
@@ -0,0 +1,16 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ gimuby (0.7.3)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (10.3.2)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ gimuby!
16
+ rake
data/README.md CHANGED
@@ -1,3 +1,3 @@
1
- [![Build Status](https://secure.travis-ci.org/frantzmiccoli/Gimuby.png)](http://travis-ci.org/ frantzmiccoli/Gimuby)
1
+ [![Build Status](https://secure.travis-ci.org/frantzmiccoli/Gimuby.png)](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
- checked_representation = @check_strategy.check(get_solution_representation)
80
- set_solution_representation(checked_representation)
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
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.4
5
5
  platform: ruby
6
- authors:
7
- - "Fr\xC3\xA4ntz Miccoli"
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
- files:
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: "1.8"
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: "0"
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
107
101
  requirements: []
108
-
109
102
  rubyforge_project:
110
- rubygems_version: 2.0.3
103
+ rubygems_version: 2.2.2
111
104
  signing_key:
112
105
  specification_version: 4
113
- summary: "Gimuby: genetic algorithm and island model for Ruby"
106
+ summary: 'Gimuby: genetic algorithm and island model for Ruby'
114
107
  test_files: []
115
-