# File lib/bn4r/bn.rb, line 95 def siblings(v) return roots if v.root? v.parents.map do |p| childs(p) end.flatten.uniq end