1
0
mirror of https://github.com/gsi-upm/soil synced 2024-11-13 06:52:28 +00:00

gexf now working, end value added

This commit is contained in:
Alberto Pascual 2017-05-04 14:11:22 +02:00
parent 23fc9671c3
commit 59ec790820

View File

@ -21,7 +21,7 @@ def visualization(graph_name):
for t_step in models.networkStatus["agent_%s" % x][attribute]:
prec = 2
output = math.floor(models.networkStatus["agent_%s" % x][attribute][t_step] * (10 ** prec)) / (10 ** prec) # 2 decimals
emotionStatusAux.append((output, t_step,None))
emotionStatusAux.append((output, t_step, t_step+settings.timeout))
attributes = {}
attributes[attribute] = emotionStatusAux
G.add_node(x, attributes)