igraph 0.1.1 → 0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +14 -2
- data/Manifest.txt +17 -0
- data/README.txt +16 -11
- data/ext/cIGraph.c +197 -61
- data/ext/cIGraph.h +155 -8
- data/ext/cIGraph_add_delete.c +146 -66
- data/ext/cIGraph_attribute_handler.c +758 -0
- data/ext/cIGraph_centrality.c +264 -0
- data/ext/cIGraph_components.c +154 -0
- data/ext/cIGraph_file.c +213 -0
- data/ext/cIGraph_layout.c +77 -0
- data/ext/cIGraph_matrix.c +241 -0
- data/ext/cIGraph_selectors.c +95 -7
- data/ext/cIGraph_shortest_paths.c +196 -2
- data/ext/cIGraph_topological_sort.c +43 -0
- data/ext/cIGraph_utility.c +29 -14
- data/ext/cIGraph_vertex_neighbourhood.c +158 -0
- data/test/tc_add_delete.rb +37 -0
- data/test/tc_attributes.rb +29 -0
- data/test/tc_basic_properties.rb +1 -1
- data/test/tc_centrality.rb +33 -0
- data/test/tc_components.rb +25 -0
- data/test/tc_copy.rb +13 -0
- data/test/tc_file_read_write.rb +161 -0
- data/test/tc_layout.rb +26 -0
- data/test/tc_matrix.rb +32 -0
- data/test/tc_selectors.rb +15 -0
- data/test/tc_shortest_paths.rb +25 -2
- data/test/tc_topological_sort.rb +10 -0
- data/test/tc_vertex_neighbourhood.rb +29 -0
- data/test/test_all.rb +9 -0
- metadata +21 -4
data/test/tc_layout.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'igraph'
|
3
|
+
|
4
|
+
class TestGraph < Test::Unit::TestCase
|
5
|
+
def test_random
|
6
|
+
g = IGraph.new([1,2,3,4],true)
|
7
|
+
l = g.layout_random
|
8
|
+
assert_instance_of IGraphMatrix, l
|
9
|
+
assert_equal g.vcount, l.nrow
|
10
|
+
assert_equal 2, l.ncol
|
11
|
+
end
|
12
|
+
def test_circle
|
13
|
+
g = IGraph.new([1,2,3,4],true)
|
14
|
+
l = g.layout_circle
|
15
|
+
assert_instance_of IGraphMatrix, l
|
16
|
+
assert_equal g.vcount, l.nrow
|
17
|
+
assert_equal 2, l.ncol
|
18
|
+
end
|
19
|
+
def test_fruchterman_reingold
|
20
|
+
g = IGraph.new([1,2,3,4],true)
|
21
|
+
l = g.layout_fruchterman_reingold(10,1,1,2,1,false)
|
22
|
+
assert_instance_of IGraphMatrix, l
|
23
|
+
assert_equal g.vcount, l.nrow
|
24
|
+
assert_equal 2, l.ncol
|
25
|
+
end
|
26
|
+
end
|
data/test/tc_matrix.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'igraph'
|
3
|
+
|
4
|
+
class TestGraph < Test::Unit::TestCase
|
5
|
+
def test_matrix
|
6
|
+
m = IGraphMatrix.new([1,2],[3,4])
|
7
|
+
assert_equal 1, m[0,0]
|
8
|
+
assert_equal 3, m[1,0]
|
9
|
+
end
|
10
|
+
def test_set
|
11
|
+
m = IGraphMatrix.new([1,2],[3,4])
|
12
|
+
m[0,0] = 6
|
13
|
+
assert_equal 6, m[0,0]
|
14
|
+
end
|
15
|
+
def test_prop
|
16
|
+
m = IGraphMatrix.new([1,2],[3,4])
|
17
|
+
assert_equal 4, m.size
|
18
|
+
assert_equal 2, m.nrow
|
19
|
+
assert_equal 2, m.ncol
|
20
|
+
assert_equal 4, m.max
|
21
|
+
end
|
22
|
+
def test_op
|
23
|
+
m = IGraphMatrix.new([1,2],[3,4])
|
24
|
+
n = m * 2
|
25
|
+
assert_equal 1, m[0,0]
|
26
|
+
assert_equal 2, n[0,0]
|
27
|
+
end
|
28
|
+
def test_to_a
|
29
|
+
m = IGraphMatrix.new([1,2],[3,4])
|
30
|
+
assert_equal [[1,2],[3,4]], m.to_a
|
31
|
+
end
|
32
|
+
end
|
data/test/tc_selectors.rb
CHANGED
@@ -11,4 +11,19 @@ class TestGraph < Test::Unit::TestCase
|
|
11
11
|
graph = IGraph.new(['A','B','C','D'],true)
|
12
12
|
assert_equal ['B'], graph.adjacent_vertices('A',IGraph::ALL)
|
13
13
|
end
|
14
|
+
def test_non_adj
|
15
|
+
graph = IGraph.new(['A','B','C','D'],true)
|
16
|
+
assert_equal ['A','C','D'], graph.nonadjacent_vertices('A',IGraph::ALL)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_e_all
|
20
|
+
graph = IGraph.new(['A','B','C','D'],true)
|
21
|
+
assert_equal [0,1], graph.edges(IGraph::EDGEORDER_ID)
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_e_adj
|
25
|
+
graph = IGraph.new(['A','B','C','D'],true,[1,2])
|
26
|
+
assert_equal [0], graph.adjacent_edges('B',IGraph::ALL)
|
27
|
+
end
|
28
|
+
|
14
29
|
end
|
data/test/tc_shortest_paths.rb
CHANGED
@@ -13,9 +13,32 @@ class TestGraph < Test::Unit::TestCase
|
|
13
13
|
|
14
14
|
def test_get_shortest_paths
|
15
15
|
graph = IGraph.new(['A','B','C','D'],true)
|
16
|
-
m = graph.get_shortest_paths('A',['B'
|
16
|
+
m = graph.get_shortest_paths('A',['B'],IGraph::ALL)
|
17
17
|
assert_equal ['A','B'], m[0]
|
18
|
-
assert_equal [], m[1]
|
18
|
+
#assert_equal [], m[1]
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_get_all_shortest_paths
|
22
|
+
graph = IGraph.new(['A','B','A','C','B','D','C','D'],true)
|
23
|
+
m = graph.get_all_shortest_paths('A',['D'],IGraph::ALL)
|
24
|
+
assert_equal 2, m.length
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_average_path_length
|
28
|
+
graph = IGraph.new(['A','B','A','C','B','D','C','D'],true)
|
29
|
+
m = graph.average_path_length(true,true)
|
30
|
+
assert_equal 1.2, m
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_diameter_girth
|
34
|
+
graph = IGraph.new(['A','B','A','C','B','D'],true)
|
35
|
+
m = graph.diameter(true,true)
|
36
|
+
assert_equal 3, m.length
|
37
|
+
assert_raises IGraphError do
|
38
|
+
graph.girth
|
39
|
+
end
|
40
|
+
graph = IGraph.new(['A','B','A','C','B','D','C','D'],true)
|
41
|
+
assert_equal 4, graph.girth.length
|
19
42
|
end
|
20
43
|
|
21
44
|
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'igraph'
|
3
|
+
|
4
|
+
class TestGraph < Test::Unit::TestCase
|
5
|
+
def test_neighbourhood_size
|
6
|
+
graph = IGraph.new(['A','B','C','D'],true)
|
7
|
+
assert_equal [1], graph.neighbourhood_size(['A'],0,IGraph::ALL)
|
8
|
+
assert_equal [2], graph.neighbourhood_size(['A'],1,IGraph::ALL)
|
9
|
+
end
|
10
|
+
def test_neighbourhood
|
11
|
+
graph = IGraph.new(['A','B','B','C','C','D'],true)
|
12
|
+
assert_equal [['A']], graph.neighborhood(['A'],0,IGraph::ALL)
|
13
|
+
assert_equal [['A','B']], graph.neighborhood(['A'],1,IGraph::ALL)
|
14
|
+
assert_equal [['A','B','C']], graph.neighborhood(['A'],2,IGraph::ALL)
|
15
|
+
end
|
16
|
+
def test_neighborhood_graph
|
17
|
+
graph = IGraph.new(['A','B','B','C','C','D'],true,[1,2,3])
|
18
|
+
assert_instance_of IGraph, graph.neighbourhood_graphs(['A'],0,IGraph::ALL)[0]
|
19
|
+
assert_equal ['A'],
|
20
|
+
graph.neighbourhood_graphs(['A'],0,IGraph::ALL)[0].to_a
|
21
|
+
assert_equal ['A','B'],
|
22
|
+
graph.neighbourhood_graphs(['A'],1,IGraph::ALL)[0].to_a
|
23
|
+
assert_equal 1, graph.neighbourhood_graphs(['A'],1,IGraph::ALL)[0]['A','B']
|
24
|
+
assert_equal ['A','B','C'],
|
25
|
+
graph.neighbourhood_graphs(['A'],2,IGraph::ALL)[0].to_a
|
26
|
+
assert_equal 2, graph.neighbourhood_graphs(['A'],2,IGraph::ALL)[0]['B','C']
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
data/test/test_all.rb
CHANGED
@@ -2,11 +2,20 @@
|
|
2
2
|
|
3
3
|
require 'test/unit'
|
4
4
|
|
5
|
+
require 'tc_attributes'
|
5
6
|
require 'tc_create'
|
6
7
|
require 'tc_iterators'
|
7
8
|
require 'tc_selectors'
|
8
9
|
require 'tc_add_delete'
|
9
10
|
require 'tc_basic_query'
|
10
11
|
require 'tc_basic_properties'
|
12
|
+
require 'tc_centrality'
|
13
|
+
require 'tc_components'
|
14
|
+
require 'tc_copy'
|
11
15
|
require 'tc_error_handling'
|
16
|
+
require 'tc_file_read_write'
|
17
|
+
require 'tc_layout'
|
18
|
+
require 'tc_matrix'
|
12
19
|
require 'tc_shortest_paths'
|
20
|
+
require 'tc_topological_sort'
|
21
|
+
require 'tc_vertex_neighbourhood'
|
metadata
CHANGED
@@ -3,15 +3,15 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: igraph
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date: 2007-
|
8
|
-
summary: IGraph
|
6
|
+
version: "0.3"
|
7
|
+
date: 2007-08-16 00:00:00 +09:00
|
8
|
+
summary: IGraph is a Ruby extension for interfacing with the C igraph library (http://cneurocvs.rmki.kfki.hu/igraph/). igraph is a library for creating and manipulating graphs with a particular emphasis on network analysis functions.
|
9
9
|
require_paths:
|
10
10
|
- test
|
11
11
|
email: alexg@kuicr.kyoto-u.ac.jp
|
12
12
|
homepage: http://igraph.rubyforge.org/
|
13
13
|
rubyforge_project: igraph
|
14
|
-
description: IGraph
|
14
|
+
description: IGraph is a Ruby extension for interfacing with the C igraph library (http://cneurocvs.rmki.kfki.hu/igraph/). igraph is a library for creating and manipulating graphs with a particular emphasis on network analysis functions.
|
15
15
|
autorequire:
|
16
16
|
default_executable:
|
17
17
|
bindir: bin
|
@@ -36,22 +36,39 @@ files:
|
|
36
36
|
- ext/cIGraph.c
|
37
37
|
- ext/cIGraph.h
|
38
38
|
- ext/cIGraph_add_delete.c
|
39
|
+
- ext/cIGraph_attribute_handler.c
|
39
40
|
- ext/cIGraph_basic_properties.c
|
40
41
|
- ext/cIGraph_basic_query.c
|
42
|
+
- ext/cIGraph_centrality.c
|
43
|
+
- ext/cIGraph_components.c
|
41
44
|
- ext/cIGraph_error_handlers.c
|
45
|
+
- ext/cIGraph_file.c
|
42
46
|
- ext/cIGraph_iterators.c
|
47
|
+
- ext/cIGraph_layout.c
|
48
|
+
- ext/cIGraph_matrix.c
|
43
49
|
- ext/cIGraph_operators.c
|
44
50
|
- ext/cIGraph_selectors.c
|
45
51
|
- ext/cIGraph_shortest_paths.c
|
52
|
+
- ext/cIGraph_topological_sort.c
|
46
53
|
- ext/cIGraph_utility.c
|
54
|
+
- ext/cIGraph_vertex_neighbourhood.c
|
47
55
|
- test/tc_add_delete.rb
|
56
|
+
- test/tc_attributes.rb
|
48
57
|
- test/tc_basic_properties.rb
|
49
58
|
- test/tc_basic_query.rb
|
59
|
+
- test/tc_centrality.rb
|
60
|
+
- test/tc_components.rb
|
61
|
+
- test/tc_copy.rb
|
50
62
|
- test/tc_create.rb
|
51
63
|
- test/tc_error_handling.rb
|
64
|
+
- test/tc_file_read_write.rb
|
52
65
|
- test/tc_iterators.rb
|
66
|
+
- test/tc_layout.rb
|
67
|
+
- test/tc_matrix.rb
|
53
68
|
- test/tc_selectors.rb
|
54
69
|
- test/tc_shortest_paths.rb
|
70
|
+
- test/tc_topological_sort.rb
|
71
|
+
- test/tc_vertex_neighbourhood.rb
|
55
72
|
- test/test_all.rb
|
56
73
|
test_files:
|
57
74
|
- test/test_all.rb
|