summaryrefslogtreecommitdiff
path: root/lib/sampling/double_blind.rb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-27 01:50:33 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-27 01:50:33 -0400
commit79b903fc5632242a6ab1ee0f7732dec168331703 (patch)
tree986bcf16f681b5b23b27b12797b74ba1b960b57a /lib/sampling/double_blind.rb
parent353e0b387b8e76d407f9451c236efbb4bd3a19ef (diff)
Added 3 new seeding algorithms.
Diffstat (limited to 'lib/sampling/double_blind.rb')
-rw-r--r--lib/sampling/double_blind.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/sampling/double_blind.rb b/lib/sampling/double_blind.rb
new file mode 100644
index 0000000..4a5201c
--- /dev/null
+++ b/lib/sampling/double_blind.rb
@@ -0,0 +1,7 @@
+module Sampling
+ module DoubleBlind
+ def works_with?(game)
+ return true
+ end
+ end
+end