-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.py
61 lines (53 loc) · 2.02 KB
/
graph.py
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
class Vertex:
def __init__(self, id, prop):
self.id = id
self.prop = prop
class Edge:
def __init__(self, srcid, dstid, weight):
self.srcid = srcid
self.dstid = dstid
self.weight = weight
# BFS Custom Computation Specification
def Process_Edge(weight, src_prop, dst_prop):
return src_prop
def Reduce(temp, res, itercount):
return min(temp, itercount)
def Apply(vprop, temp, vconst):
return temp
def Run(Vertices, Edges, EdgeIDTable, VProperty, VTempProperty, VConst,
ActiveVertex, ActiveVertexCount, IterCount):
# Base Graph Processing Model
for it in range(1, IterCount):
# Processing Phase
for i in range(0, ActiveVertexCount):
src = ActiveVertex[i]
eid = EdgeIDTable[src.id]
e = Edges[eid]
while e.srcid == src.id:
# dst.prop = VProperty[e.dstid]
#print("Processing Edge: " + str(e.srcid) + " to " + str(e.dstid))
res = Process_Edge(e.weight, VProperty[e.srcid], VProperty[e.dstid])
temp = VTempProperty[e.dstid]
temp = Reduce(temp, res, it)
#print("Setting VTempProperty for edge " + str(e.dstid) + " to " + str(temp))
VTempProperty[e.dstid] = temp
eid = (eid + 1) % len(Edges)
e = Edges[eid]
# Reset ActiveVertex and ActiveVertexCount
ActiveVertex = []
ActiveVertexCount = 0
# Apply Phase
for i in range(0, len(Vertices)):
vprop = VProperty[i]
temp = VTempProperty[i]
vconst = VConst[i]
temp = Apply(vprop, temp, vconst)
#print("Setting VProperty[" + str(i) + "]" + " to " + str(temp))
VProperty[i] = temp
if temp != vprop:
#print("Adding vertex " + str(i) + " to ActiveVertex")
v = Vertex(i, temp)
ActiveVertex.append(v)
ActiveVertexCount += 1
print(VProperty)
return VProperty