gemnetic 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b1837e2240b7ecfbf7b6955a0fb1d98a53d27b74a1d837a10dfa0df9a02cc2b3
4
+ data.tar.gz: bf81ab58db6e1b1fd4d27a004fb77d93ee1126b1770d9835bd7b82e576c352e2
5
+ SHA512:
6
+ metadata.gz: e148b2e925f9395b653cabb4a903166958c21733d8a1dfd0297e5d04f8ea8d55e3e5b99bb3f2ed3ea0c4d9f45d2f76aab56bb4ba4d5d466ee48ae92908de2039
7
+ data.tar.gz: cc6b949879d33e433046cedc581ec948c6aee074338499155353cb0c866135bb4d6329a65f9a8c2471e657200ecfd3e005af33ba88e0940d266debf2210a0e03
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.1
7
+ before_install: gem install bundler -v 1.16.6
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at canedo@webgoal.com.br. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in gemnetic.gemspec
6
+ gemspec
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ gemnetic (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.3)
10
+ rake (10.5.0)
11
+ rspec (3.8.0)
12
+ rspec-core (~> 3.8.0)
13
+ rspec-expectations (~> 3.8.0)
14
+ rspec-mocks (~> 3.8.0)
15
+ rspec-core (3.8.0)
16
+ rspec-support (~> 3.8.0)
17
+ rspec-expectations (3.8.2)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.8.0)
20
+ rspec-mocks (3.8.0)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.8.0)
23
+ rspec-support (3.8.0)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ bundler (~> 1.16)
30
+ gemnetic!
31
+ rake (~> 10.0)
32
+ rspec (~> 3.0)
33
+
34
+ BUNDLED WITH
35
+ 1.17.2
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Canedo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,43 @@
1
+ # Gemnetic
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gemnetic`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'gemnetic'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install gemnetic
22
+
23
+ ## Usage
24
+
25
+ See the example [here](https://github.com/gknedo/gemnetic/blob/master/example/run.rb).
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/gknedo/gemnetic. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the Gemnetic project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/gknedo/gemnetic/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "gemnetic"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,6 @@
1
+ docker-compose run ruby26 rspec
2
+ docker-compose run ruby25 rspec
3
+ docker-compose run ruby24 rspec
4
+ docker-compose run ruby23 rspec
5
+ docker-compose run ruby22 rspec
6
+ docker-compose run ruby21 rspec
@@ -0,0 +1,33 @@
1
+ version: '3.7'
2
+ volumes:
3
+ gems:
4
+ services:
5
+ gem: &gem
6
+ image: ruby:latest
7
+ working_dir: /opt/app
8
+ volumes:
9
+ - gems:/usr/local/bundle
10
+ - .:/opt/app
11
+ ruby26:
12
+ <<: *gem
13
+ image: ruby:2.6-rc
14
+
15
+ ruby25:
16
+ <<: *gem
17
+ image: ruby:2.5
18
+
19
+ ruby24:
20
+ <<: *gem
21
+ image: ruby:2.4
22
+
23
+ ruby23:
24
+ <<: *gem
25
+ image: ruby:2.3
26
+
27
+ ruby22:
28
+ <<: *gem
29
+ image: ruby:2.2
30
+
31
+ ruby21:
32
+ <<: *gem
33
+ image: ruby:2.1
@@ -0,0 +1,37 @@
1
+ class Geo
2
+ CITIES = [
3
+ "SP",
4
+ "RJ",
5
+ "DF",
6
+ "BA",
7
+ "CE",
8
+ "MG",
9
+ "AM",
10
+ "PR",
11
+ "PE",
12
+ "RS"
13
+ ]
14
+
15
+ DISTANCES = [
16
+ [0, 429, 1015, 1962, 3127, 586, 3971, 408, 2660, 1109],
17
+ [-1, 0, 1148, 1209, 2805, 434, 4374, 852, 2338, 1553],
18
+ [-1, -1, 0, 1060, 1687, 716, 1932, 1081, 1657, 1619],
19
+ [-1, -1, -1, 0, 1028, 1372, 5009, 2385, 839, 3090],
20
+ [-1, -1, -1, -1, 0, 1893, 5763, 2670, 800, 4242],
21
+ [-1, -1, -1, -1, -1, 0, 3951, 1004, 2061, 1712],
22
+ [-1, -1, -1, -1, -1, -1, 0, 2734, 5698, 4563],
23
+ [-1, -1, -1, -1, -1, -1, -1, 0, 3078, 711],
24
+ [-1, -1, -1, -1, -1, -1, -1, -1, 0, 2977],
25
+ [-1, -1, -1, -1, -1, -1, -1, -1, -1, 0]
26
+ ]
27
+
28
+ def self.get_distance(index_a, index_b)
29
+ distance = DISTANCES[index_a][index_b]
30
+ return get_distance(index_b, index_a) if distance < 0
31
+ distance
32
+ end
33
+
34
+ def self.get_name(index)
35
+ return CITIES[index]
36
+ end
37
+ end
@@ -0,0 +1,44 @@
1
+ require 'gemnetic'
2
+ require_relative 'geo'
3
+
4
+ class MySpecimen < Gemnetic::Specimen
5
+
6
+ def evaluate
7
+ (0..9).map do |index|
8
+ next_index = (index+1) % 10
9
+ distance = Geo.get_distance(@gens[index], @gens[next_index])
10
+ end.sum * -1
11
+ end
12
+
13
+ def mutate
14
+ swap(rand(0..9), rand(0..9))
15
+ self
16
+ end
17
+
18
+ def randomize
19
+ (0..9).to_a.sample(10)
20
+ end
21
+
22
+ def crossover specimen
23
+ new_gens = []
24
+ self_enumerator = 0
25
+ specimen_enumerator = 0
26
+ crossover_probability = rand
27
+ while new_gens.count < 10
28
+ from_specimen = rand < crossover_probability
29
+ gen = from_specimen ? specimen.gens[specimen_enumerator] : @gens[self_enumerator]
30
+ next unless gen
31
+ new_gens.push(gen) unless new_gens.include?(gen)
32
+ self_enumerator = (self_enumerator + 1) % 10 unless from_specimen
33
+ specimen_enumerator = (specimen_enumerator + 1) % 10 if from_specimen
34
+ end
35
+ @gens = new_gens
36
+ self
37
+ end
38
+
39
+ private
40
+
41
+ def swap index_a, index_b
42
+ @gens[index_a], @gens[index_b] = @gens[index_b], @gens[index_a]
43
+ end
44
+ end
@@ -0,0 +1,13 @@
1
+ require 'gemnetic'
2
+ require_relative 'my_specimen'
3
+
4
+ world = Gemnetic::World.new(MySpecimen)
5
+ 150.times do
6
+ p "GEN: #{world.current_generation} "
7
+ p world.population_to_keep.map{|specimen| specimen.evaluate}
8
+ world.next_generation
9
+ end
10
+
11
+ p world.population_to_keep.map{ |specimen| specimen.gens }
12
+ p world.best_specimen
13
+ p world.best_specimen.evaluate
@@ -0,0 +1,28 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "gemnetic/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "gemnetic"
8
+ spec.version = Gemnetic::VERSION
9
+ spec.authors = ["Canedo"]
10
+ spec.email = ["canedo@webgoal.com.br"]
11
+
12
+ spec.summary = "A genetic algorithm implementation"
13
+ spec.homepage = "https://github.com/gknedo/gemnetic"
14
+ spec.license = "MIT"
15
+
16
+ # Specify which files should be added to the gem when it is released.
17
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
19
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
+ end
21
+ spec.bindir = "exe"
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ["lib"]
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.16"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rspec", "~> 3.0"
28
+ end
@@ -0,0 +1,6 @@
1
+ require "gemnetic/version"
2
+ require "gemnetic/world"
3
+ require "gemnetic/specimen"
4
+
5
+ module Gemnetic
6
+ end
@@ -0,0 +1,41 @@
1
+ module Gemnetic
2
+ class Specimen
3
+ attr_accessor :gens
4
+
5
+ def initialize(params = {})
6
+ @gens = params.fetch(:gens, randomize)
7
+ end
8
+
9
+ def crossover specimen
10
+ raise NotImplementedError, "You must override the crossover method to crossover two specimens in a new one"
11
+ end
12
+
13
+ def mutate
14
+ raise NotImplementedError, "You must override the mutate method to generate a new specimen based current specimen"
15
+ end
16
+
17
+ def evaluate
18
+ raise NotImplementedError, "You must override the evaluate method to calculate the fitness of the specimen"
19
+ end
20
+
21
+ def randomize
22
+ raise NotImplementedError, "You must override the randomize method to randomize the gens of the specimen"
23
+ end
24
+
25
+ def battle specimen
26
+ return self unless self.evaluate < specimen.evaluate
27
+ specimen
28
+ end
29
+
30
+ def dup
31
+ self.class.new(gens: @gens.dup)
32
+ end
33
+
34
+ def to_s
35
+ {
36
+ evaluation: evaluate,
37
+ gens: @gens
38
+ }.to_s
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,3 @@
1
+ module Gemnetic
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,85 @@
1
+ module Gemnetic
2
+ class World
3
+ attr_accessor :population_size, :population_keep, :population,
4
+ :crossover_probability, :mutate_probability, :tournament_probability
5
+ attr_reader :specimen_class, :current_generation
6
+
7
+ def initialize(specimen_class, params = {})
8
+ @specimen_class = specimen_class
9
+ @population_size = params.fetch(:population_size, 50)
10
+ @population_keep = params.fetch(:population_keep, @population_size/10)
11
+
12
+ probabilities = [
13
+ params.fetch(:crossover_probability, 0.4).to_f,
14
+ params.fetch(:mutate_probability, 0.1).to_f,
15
+ params.fetch(:tournament_probability, 0.5).to_f
16
+ ]
17
+ probabilities_sum = probabilities.sum
18
+ @crossover_probability = probabilities[0] * probabilities_sum
19
+ @mutate_probability = probabilities[1] * probabilities_sum
20
+ @tournament_probability = probabilities[2] * probabilities_sum
21
+
22
+ @current_generation = 0
23
+ @population = []
24
+
25
+ validate
26
+
27
+ initialize_population if params.fetch(:initialize_population, true)
28
+ end
29
+
30
+ def next_generation
31
+ new_population = population_to_keep
32
+ to_create = @population_size - @population_keep
33
+
34
+ (to_create*@tournament_probability).to_i.times do
35
+ new_population.push @population.sample.battle(@population.sample).dup
36
+ end
37
+
38
+ (to_create*@mutate_probability).to_i.times do
39
+ new_population.push @population.sample.dup.mutate
40
+ end
41
+
42
+ (to_create*@crossover_probability).to_i.times do
43
+ new_population.push @population.sample.dup.crossover(@population.sample.dup)
44
+ end
45
+
46
+ new_population.uniq! { |specimen| specimen.gens }
47
+ while new_population.count < @population_size do
48
+ new_population.push @population.sample.dup.mutate
49
+ new_population.uniq! { |specimen| specimen.gens }
50
+ end
51
+
52
+ @current_generation += 1
53
+ @population = new_population
54
+ end
55
+
56
+ def population_to_keep
57
+ keep = []
58
+ @population.each do |specimen|
59
+ next keep.push(specimen) if keep.count < @population_keep
60
+ keep.sort_by! { |specimen| specimen.evaluate }
61
+ keep[0] = specimen if specimen.evaluate > keep[0].evaluate
62
+ end
63
+
64
+ keep
65
+ end
66
+
67
+ def best_specimen
68
+ population_to_keep.last
69
+ end
70
+
71
+ private
72
+
73
+ def validate
74
+ raise ArgumentError.new("Specimen Class can't be nil") unless @specimen_class
75
+ raise ArgumentError.new("Specimen Class must be a kind of Gemnetic::Specimen") unless @specimen_class.ancestors.include?(Gemnetic::Specimen)
76
+ end
77
+
78
+ def initialize_population
79
+ @population_size.times do
80
+ @population.push @specimen_class.new
81
+ end
82
+ end
83
+
84
+ end
85
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gemnetic
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Canedo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-12-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description:
56
+ email:
57
+ - canedo@webgoal.com.br
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - Gemfile.lock
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - bin/console
72
+ - bin/setup
73
+ - bin/spec
74
+ - docker-compose.yml
75
+ - example/geo.rb
76
+ - example/my_specimen.rb
77
+ - example/run.rb
78
+ - gemnetic.gemspec
79
+ - lib/gemnetic.rb
80
+ - lib/gemnetic/specimen.rb
81
+ - lib/gemnetic/version.rb
82
+ - lib/gemnetic/world.rb
83
+ homepage: https://github.com/gknedo/gemnetic
84
+ licenses:
85
+ - MIT
86
+ metadata: {}
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.7.6
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: A genetic algorithm implementation
107
+ test_files: []