summaryrefslogtreecommitdiff
path: root/pt_bloom
diff options
context:
space:
mode:
Diffstat (limited to 'pt_bloom')
-rwxr-xr-xpt_bloom4
1 files changed, 2 insertions, 2 deletions
diff --git a/pt_bloom b/pt_bloom
index 2c3928f..5c2cf01 100755
--- a/pt_bloom
+++ b/pt_bloom
@@ -6,12 +6,12 @@ require 'trollop'
STDIN.set_encoding 'utf-8'
STDOUT.set_encoding 'utf-8'
-cfg = Trollop::options do
+conf = Trollop::options do
opt :size, "number of entries in the filter", :type => :int, :required => true
opt :error_rate, "error rate", :type => :float, :default => 0.01
end
-f = BloomFilter.new cfg[:size], cfg[:error_rate]
+f = BloomFilter.new conf[:size], conf[:error_rate]
while line = STDIN.gets
src, tgt = splitpipe(line)[0..1]
src.strip!