Welcome to mirror list, hosted at ThFree Co, Russian Federation.

init.lua - github.com/torch/graph.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4437df61d223631506c9a4ed374c9809db1b4552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
require 'torch'

graph = {}

torch.include('graph','graphviz.lua')
torch.include('graph','Node.lua')
torch.include('graph','Edge.lua')


--[[
	Defines a graph and general operations on grpahs like topsort, 
	connected components, ...
	uses two tables, one for nodes, one for edges
]]--
local Graph = torch.class('graph.Graph')

function Graph:__init()
	self.nodes = {}
	self.edges = {}
end

-- add a new edge into the graph.
-- an edge has two fields, from and to that are inserted into the
-- nodes table. the edge itself is inserted into the edges table.
function Graph:add(edge)
	if type(edge) ~= 'table' then
		error('graph.Edge or {graph.Edges} expected')
	end
	if torch.typename(edge) then
		-- add edge
		if not self.edges[edge] then
			table.insert(self.edges,edge)
			self.edges[edge] = #self.edges
		end
		-- add from node
		if not self.nodes[edge.from] then
			table.insert(self.nodes,edge.from)
			self.nodes[edge.from] = #self.nodes
		end
		-- add to node
		if not self.nodes[edge.to] then
			table.insert(self.nodes,edge.to)
			self.nodes[edge.to] = #self.nodes
		end
		-- add the edge to the node for parsing in nodes
		edge.from:add(edge.to)
		edge.from.id = self.nodes[edge.from]
		edge.to.id = self.nodes[edge.to]
	else
		for i,e in ipairs(edge) do
			self:add(e)
		end
	end
end

-- Clone a Graph
-- this will create new nodes, but will share the data.
-- Note that primitive data types like numbers can not be shared
function Graph:clone()
	local clone = graph.Graph()
	local nodes = {}
	for i,n in ipairs(self.nodes) do
		table.insert(nodes,n.new(n.data))
	end
	for i,e in ipairs(self.edges) do
		local from = nodes[self.nodes[e.from]]
		local to   = nodes[self.nodes[e.to]]
		clone:add(e.new(from,to))
	end
	return clone
end

-- It returns a new graph where the edges are reversed.
-- The nodes share the data. Note that primitive data types can
-- not be shared.
function Graph:reverse()
	local rg = graph.Graph()
	local mapnodes = {}
	for i,e in ipairs(self.edges) do
		mapnodes[e.from] = mapnodes[e.from] or e.from.new(e.from.data)
		mapnodes[e.to]   = mapnodes[e.to] or e.to.new(e.to.data)
		local from = mapnodes[e.from]
		local to   = mapnodes[e.to]
		rg:add(e.new(to,from))
	end
	return rg,mapnodes
end

--[[
	Topological Sort
	** This is not finished. OK for graphs with single root.
]]--
function Graph:topsort()

	-- reverse the graph
	local rg,map = self:reverse()
	local rmap = {}
	for k,v in pairs(map) do
		rmap[v] = k
	end

	-- work on the sorted graph
	local sortednodes = {}
	local rootnodes = rg:roots()

	if #rootnodes == 0 then
		error('Graph has cycles')
	end

	-- run
	for i,root in ipairs(rootnodes) do
		root:dfs(function(node) table.insert(sortednodes,rmap[node]) end)
	end

	if #sortednodes ~= #self.nodes then
		error('Graph has cycles')
	end
	return sortednodes,rg,rootnodes
end

-- find root nodes
function Graph:roots()
	local edges = self.edges
	local rootnodes = {}
	for i,edge in ipairs(edges) do
		--table.insert(rootnodes,edge.from)
		if not rootnodes[edge.from] then
			rootnodes[edge.from] = #rootnodes+1
		end
	end
	for i,edge in ipairs(edges) do
		if rootnodes[edge.to] then
			rootnodes[edge.to] = nil
		end
	end
	local roots = {}
	for root,i in pairs(rootnodes) do
		table.insert(roots, root)
	end
	table.sort(roots,function(a,b) return self.nodes[a] < self.nodes[b] end )
	return roots
end

-- find root nodes
function Graph:leaves()
	local edges = self.edges
	local leafnodes = {}
	for i,edge in ipairs(edges) do
		--table.insert(rootnodes,edge.from)
		if not leafnodes[edge.to] then
			leafnodes[edge.to] = #leafnodes+1
		end
	end
	for i,edge in ipairs(edges) do
		if leafnodes[edge.from] then
			leafnodes[edge.from] = nil
		end
	end
	local leaves = {}
	for leaf,i in pairs(leafnodes) do
		table.insert(leaves, leaf)
	end
	table.sort(leaves,function(a,b) return self.nodes[a] < self.nodes[b] end )
	return leaves
end


function graph._dotEscape(str)
  if string.find(str, '[^a-zA-Z]') then
    -- Escape newlines and quotes.
    local escaped = string.gsub(str, '\n', '\\n')
    escaped = string.gsub(escaped, '"', '\\"')
    str = '"' .. escaped .. '"'
  end
  return str
end


--[[ Generate a string like 'color=blue tailport=s' from a table
  (e.g. {color = 'blue', tailport = 's'}. Its up to the user to escape
  strings properly.
]]
local function makeAttributeString(attributes)
  local str = {}
  for k, v in pairs(attributes) do
    table.insert(str, tostring(k) .. '=' .. graph._dotEscape(tostring(v)))
  end
  return ' ' .. table.concat(str, ' ')
end


function Graph:todot(title)
	local nodes = self.nodes
	local edges = self.edges
	local str = {}
	table.insert(str,'digraph G {\n')
	if title then
		table.insert(str,'labelloc="t";\nlabel="' .. title .. '";\n')
	end
	table.insert(str,'node [shape = oval]; ')
	local nodelabels = {}
	for i,node in ipairs(nodes) do
                local nodeName
                if node.graphNodeName then
                  nodeName = node:graphNodeName()
                else
                  nodeName = 'Node' .. node.id
                end
		local l =  graph._dotEscape(nodeName .. '\n' .. node:label())
		nodelabels[node] = 'n' .. node.id
                local graphAttributes = ''
                if node.graphNodeAttributes then
                  graphAttributes = makeAttributeString(
                      node:graphNodeAttributes())
                end
		table.insert(str,
                             '\n' .. nodelabels[node] ..
                             '[label=' .. l .. graphAttributes .. '];')
	end
	table.insert(str,'\n')
	for i,edge in ipairs(edges) do
		table.insert(str,nodelabels[edge.from] .. ' -> ' .. nodelabels[edge.to] .. ';\n')
	end
	table.insert(str,'}')
	return table.concat(str,'')
end