Class: Gem::Resolver::Stats
Constant Summary collapse
- PATTERN =
"%20s: %d\n".freeze
Instance Method Summary collapse
- #backtracking! ⇒ Object
- #display ⇒ Object
-
#initialize ⇒ Stats
constructor
A new instance of Stats.
- #iteration! ⇒ Object
- #record_depth(stack) ⇒ Object
- #record_requirements(reqs) ⇒ Object
- #requirement! ⇒ Object
Constructor Details
#initialize ⇒ Stats
Returns a new instance of Stats.
3 4 5 6 7 8 9 |
# File 'lib/rubygems/resolver/stats.rb', line 3 def initialize @max_depth = 0 @max_requirements = 0 @requirements = 0 @backtracking = 0 @iterations = 0 end |
Instance Method Details
#backtracking! ⇒ Object
27 28 29 |
# File 'lib/rubygems/resolver/stats.rb', line 27 def backtracking! @backtracking += 1 end |
#display ⇒ Object
37 38 39 40 41 42 43 44 |
# File 'lib/rubygems/resolver/stats.rb', line 37 def display $stdout.puts "=== Resolver Statistics ===" $stdout.printf PATTERN, "Max Depth", @max_depth $stdout.printf PATTERN, "Total Requirements", @requirements $stdout.printf PATTERN, "Max Requirements", @max_requirements $stdout.printf PATTERN, "Backtracking #", @backtracking $stdout.printf PATTERN, "Iteration #", @iterations end |
#iteration! ⇒ Object
31 32 33 |
# File 'lib/rubygems/resolver/stats.rb', line 31 def iteration! @iterations += 1 end |
#record_depth(stack) ⇒ Object
11 12 13 14 15 |
# File 'lib/rubygems/resolver/stats.rb', line 11 def record_depth(stack) if stack.size > @max_depth @max_depth = stack.size end end |
#record_requirements(reqs) ⇒ Object
17 18 19 20 21 |
# File 'lib/rubygems/resolver/stats.rb', line 17 def record_requirements(reqs) if reqs.size > @max_requirements @max_requirements = reqs.size end end |
#requirement! ⇒ Object
23 24 25 |
# File 'lib/rubygems/resolver/stats.rb', line 23 def requirement! @requirements += 1 end |