Sha256: 3d87d59bc28b856cd499acfb27f5024f7911b061298cac4ff003b16f383f54d4

Contents?: true

Size: 1.71 KB

Versions: 7

Compression:

Stored size: 1.71 KB

Contents

$:.unshift( "../../lib" )
require 'graphviz'
require 'graphviz/theory'

g = GraphViz.digraph( "G", :path => "/usr/local/bin" ) do |g|
  g.a[:label => "1"]
  g.b[:label => "2"]
  g.c[:label => "3"]
  g.d[:label => "4"]
  g.e[:label => "5"]
  g.f[:label => "6"]
  
#   g.a << g.a
  g.a << g.b
  g.a << g.d
  (g.a << g.f)[:weight => 6, :label => "6"]
  g.b << g.c
  g.b << g.d
  g.b << g.e
  g.c << g.d
  (g.c << g.f)[:weight => 2, :label => "2"]
  g.d << g.e
#  g.e << g.c
end
g.output( :png => "matrix.png" )

t = GraphViz::Theory.new( g )

puts "Adjancy matrix : "
puts t.adjancy_matrix
# => [ 0 1 0 1 0 1]
#    [ 0 0 1 1 1 0]
#    [ 0 0 0 1 0 1]
#    [ 0 0 0 0 1 0]
#    [ 0 0 0 0 0 0]
#    [ 0 0 0 0 0 0]

puts "Symmetric ? #{t.symmetric?}"

puts "Incidence matrix :"
puts t.incidence_matrix
# => [  1  1  1  1  0  0  0  0  0  0]
#    [  0 -1  0  0  1  1  1  0  0  0]
#    [  0  0  0  0 -1  0  0  1  1  0]
#    [  0  0 -1  0  0 -1  0 -1  0  1]
#    [  0  0  0  0  0  0 -1  0  0 -1]
#    [  0  0  0 -1  0  0  0  0 -1  0]

g.each_node do |name, node|
  puts "Degree of node `#{name}' = #{t.degree(node)}"
end

puts "Laplacian matrix :"
puts t.laplacian_matrix
# => [  3 -1  0 -1  0 -1]
#    [  0  4 -1 -1 -1  0]
#    [  0  0  3 -1  0 -1]
#    [  0  0  0  4 -1  0]
#    [  0  0  0  0  2  0]
#    [  0  0  0  0  0  2]

puts "Dijkstra between a and f"
r = t.moore_dijkstra(g.a, g.f)
if r.nil?
  puts "No way !"
else
  print "\tPath : "; p r[:path]
  puts "\tDistance : #{r[:distance]}"
end
# => Path : ["a", "b", "c", "f"]
#    Distance : 4.0

print "Ranges : "
rr = t.range
p rr
puts "Your graph contains circuits" if rr.include?(nil)

puts "Critical path : "
rrr = t.critical_path
print "\tPath "; p rrr[:path]
puts "\tDistance : #{rrr[:distance]}"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ruby-graphviz-1.0.1 examples/theory/tests.rb
ruby-graphviz-1.0.0 examples/theory/tests.rb
ruby-graphviz-0.9.21 examples/theory/tests.rb
ruby-graphviz-0.9.20 examples/theory/tests.rb
ruby-graphviz-0.9.19 examples/theory/tests.rb
ruby-graphviz-0.9.18 examples/theory/tests.rb
ruby-graphviz-0.9.17 examples/theory/tests.rb