我在 ruby 1.8 中运行 Jruby 1.6.7
我可以安装 gem:https ://github.com/consti/tupalo-kdtree 。
我有以下代码:
require 'kdtree'
require 'benchmark'
def setup_tree(len)
@points = (0...len).map { |i| [rand_coord, rand_coord, i ] }
@kdtree = KDTree.new(@points)
end
def distance(a, b)
x, y = a[0] - b[0], a[1] - b[1]
x * x + y * y
end
def rand_coord
rand(0) * 10 - 5
end
def test_nearestk
pt = []
@list = []
20000.times do
pt = [rand_coord, rand_coord]
# kdtree search
@list << @kdtree.nearest(pt[0],pt[1]) #puts pt
end
puts "Points from search #{@list.size}"
puts "Points in graph #{@kdsize}"
end
@kdsize = 50000
setup_tree(@kdsize)
Benchmark.bm do |x|
x.report do
test_nearestk
end
end
但是,当我在 Jruby 中运行它时 - 我得到了错误
LoadError: no such file to load -- kdtree
require at org/jruby/RubyKernel.java:982
require at /home/charlie/.rvm/rubies/jruby-head/lib/ruby/shared/rubygems/custom_require.rb:36
(root) at newtest.rb:2
它很奇怪,因为它甚至无法找到 kdtree - 当我知道它在那里时 - 安装了 gem。我已经清理了 gemset 并在 RVM 下创建了一个新的,但仍然是同样的错误。在 jruby 下是否有不同的“要求”方式?还是有其他问题?