binary_decision_tree 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 61ea2ac1f016a28ef9c96ce8e61f08231876764a
4
+ data.tar.gz: a4bcc60c2d5df5ebdb587708fb659ab357fe3333
5
+ SHA512:
6
+ metadata.gz: b15ee21a0e80ef48c4864159959f3916f17816c3d9148c6c9fb4c7b815b16d8bc580808846f291d97e600fbbeaf86478437e31565641b8bbcccd28fad9479710
7
+ data.tar.gz: 2fcec32b0ba97197c44db1446003f3dda074b164c4d68f3a1309f20527de0d25789c29e05bf7abb155217cb275ebc789c33bcfeef442533907a73b3132af6aa2
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in binary_decision_tree.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Jason Haruska
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # BinaryDecisionTree
2
+
3
+ A binary tree designed to record decisions based on child nodes. This data structure is useful
4
+ in things like single elimination tournaments. They can be marshalled and unmarshalled to two
5
+ numbers.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'binary_decision_tree'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install binary_decision_tree
20
+
21
+ ## Usage
22
+
23
+ This tree assumes a fix depth and fully populated (dense, not sparse.) It provides some nice
24
+ properties around calulating parent and child node IDs based on the current node ID.
25
+
26
+ ## Contributing
27
+
28
+ 1. Fork it ( http://github.com/haruska/binary_decision_tree/fork )
29
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
30
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
31
+ 4. Push to the branch (`git push origin my-new-feature`)
32
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'binary_decision_tree/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "binary_decision_tree"
8
+ spec.version = BinaryDecisionTree::VERSION
9
+ spec.authors = ["Jason Haruska"]
10
+ spec.email = ["jason@haruska.com"]
11
+ spec.summary = %q{A binary decision tree}
12
+ spec.description = %q{A binary decision tree useful for brackets of single elimination tournaments.}
13
+ spec.homepage = "http://github.com/haruska/binary_decision_tree"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,8 @@
1
+ require "binary_decision_tree/version"
2
+ require "binary_decision_tree/node"
3
+ require "binary_decision_tree/tree"
4
+ require "binary_decision_tree/marshalled_tree"
5
+
6
+ module BinaryDecisionTree
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,45 @@
1
+ class BinaryDecisionTree::MarshalledTree
2
+ attr_reader :depth
3
+ attr_reader :decisions
4
+ attr_reader :mask
5
+
6
+ def initialize(depth, decisions, mask)
7
+ @depth = depth
8
+ @decisions = decisions
9
+ @mask = mask
10
+ end
11
+
12
+ def self.from_tree(tree)
13
+ depth = tree.depth
14
+ decisions = 0
15
+ mask = 0
16
+
17
+ (2**tree.depth).times do |i|
18
+ next if i == 0
19
+ node = tree.at(i)
20
+ if !node.decision.nil?
21
+ mask |= 1 << i
22
+ decisions |= node.decision << i
23
+ end
24
+ end
25
+
26
+ new(depth, decisions, mask)
27
+ end
28
+
29
+ def to_tree
30
+ tree = Tree.new(depth)
31
+
32
+ (2**tree.depth).times do |i|
33
+ next if i == 0
34
+
35
+ current_position = 1 << i
36
+
37
+ if (mask & current_position) != 0
38
+ node = tree.at(i)
39
+ node.decision = (decisions & current_position) == 0 ? 0 : 1
40
+ end
41
+ end
42
+
43
+ tree
44
+ end
45
+ end
@@ -0,0 +1,43 @@
1
+ class BinaryDecisionTree::Node
2
+ attr_accessor :decision #nil, 0, or 1
3
+
4
+ attr_reader :slot #bit position
5
+ attr_reader :tree
6
+
7
+ def initialize(tree, slot, decision: nil)
8
+ @tree = tree
9
+ @slot = slot
10
+ @decision = decision
11
+ end
12
+
13
+ def value
14
+ case decision
15
+ when 0
16
+ left.nil? ? left_position : left.value
17
+ when 1
18
+ right.nil? ? right_position : right.value
19
+ else
20
+ nil
21
+ end
22
+ end
23
+
24
+ def leaf?
25
+ left.nil? && right.nil?
26
+ end
27
+
28
+ def left_position
29
+ slot * 2
30
+ end
31
+
32
+ def right_position
33
+ left_position + 1
34
+ end
35
+
36
+ def left
37
+ tree.at(left_position)
38
+ end
39
+
40
+ def right
41
+ tree.at(right_position)
42
+ end
43
+ end
@@ -0,0 +1,16 @@
1
+ class BinaryDecisionTree::Tree
2
+ attr_reader :depth
3
+
4
+ def initialize(depth)
5
+ @depth = depth
6
+ @nodes = Array.new(2**depth) {|i| i == 0 ? nil : Node.new(self, i)}
7
+ end
8
+
9
+ def root
10
+ @nodes[1]
11
+ end
12
+
13
+ def at(position)
14
+ @nodes[position]
15
+ end
16
+ end
@@ -0,0 +1,3 @@
1
+ module BinaryDecisionTree
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: binary_decision_tree
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jason Haruska
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-29 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.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: A binary decision tree useful for brackets of single elimination tournaments.
42
+ email:
43
+ - jason@haruska.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - binary_decision_tree.gemspec
54
+ - lib/binary_decision_tree.rb
55
+ - lib/binary_decision_tree/marshalled_tree.rb
56
+ - lib/binary_decision_tree/node.rb
57
+ - lib/binary_decision_tree/tree.rb
58
+ - lib/binary_decision_tree/version.rb
59
+ homepage: http://github.com/haruska/binary_decision_tree
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.0.14
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: A binary decision tree
83
+ test_files: []