answer-factory 0.0.11 → 0.0.12

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.11
1
+ 0.0.12
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{answer-factory}
8
- s.version = "0.0.11"
8
+ s.version = "0.0.12"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bill Tozier", "Trek Glowacki", "Jesse Sielaff"]
@@ -9,20 +9,21 @@ require 'answers/answer'
9
9
  require 'answers/batch'
10
10
 
11
11
  require 'operators/infrastructure'
12
- require 'operators/random_guess_operator'
13
- require 'operators/resample_and_clone_operator'
14
- require 'operators/resample_values_operator'
15
- require 'operators/uniform_backbone_crossover_operator'
12
+
13
+ require 'operators/all_duplicated_genomes_sampler'
14
+ require 'operators/any_one_sampler'
15
+ require 'operators/dominated_quantile_selector'
16
+ require 'operators/most_dominated_subset_sampler'
17
+ require 'operators/nondominated_subset_selector'
16
18
  require 'operators/point_crossover_operator'
17
19
  require 'operators/point_delete_operator'
18
20
  require 'operators/point_mutation_operator'
19
-
20
- require 'operators/test_case_evaluator'
21
21
  require 'operators/program_point_count_evaluator'
22
-
23
-
24
-
25
- require 'operators/samplers_and_selectors'
22
+ require 'operators/random_guess_operator'
23
+ require 'operators/resample_and_clone_operator'
24
+ require 'operators/resample_values_operator'
25
+ require 'operators/test_case_evaluator'
26
+ require 'operators/uniform_backbone_crossover_operator'
26
27
 
27
28
  require 'factories/factory'
28
29
  require 'factories/workstation'
@@ -19,7 +19,6 @@ module AnswerFactory
19
19
  @timestamp = Time.now
20
20
  @couch_id = options[:couch_id] || ""
21
21
  @progress = options[:progress] || 0
22
- puts @progress
23
22
  @ancestors = options[:ancestors] || []
24
23
  @tags = Set.new(options[:tags]) || Set.new
25
24
 
@@ -44,7 +44,6 @@ module AnswerFactory
44
44
  begin
45
45
  response = db.view(design_doc)
46
46
  response["rows"].each do |hash|
47
- puts hash["values"]
48
47
  batch << Answer.from_serial_hash(hash)
49
48
  end
50
49
  rescue JSON::ParserError => e
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 11
9
- version: 0.0.11
8
+ - 12
9
+ version: 0.0.12
10
10
  platform: ruby
11
11
  authors:
12
12
  - Bill Tozier