Hello,
I have written a script for adding edges manually:
def createEdges(node_src, destinations):
node1 = eval( 'v' + str(node_src) )
n = len(destinations)
for i in range(n):
node2 = eval( 'v' +str(destinations[i]) )
try:
addEdge(node1,node2)
except:
a=None
Does anyone know why it is much slower than adding edges using a GDF
file?
Does addEdge() do some verifications ?
Thanks,
Massoud
Thank you Eytan for your fast reply.
Is there any way to do a batch LOAD operation using a script?
I couldn't find the source code of makeFromGDF() function to find out how it works.