12 Jul 2012 13:14
Problems using the dijktstra search
josubg <josubg <at> gmail.com>
2012-07-12 11:14:22 GMT
2012-07-12 11:14:22 GMT
Hi all.
I'm trying to use the dijktstra search But I have a exception.The property
that is used a int32_t and the GraphViews aren't empty. Any clue of what is
my error?
This is the code:
referents_graph = GraphView(graph, vfilt= lambda v:
graph.vertex_properties["type"][v]=="referent")
navigable_graph = GraphView(graph, reversed=True)
referents = referents_graph.vertices()
weight = navigable_graph.edge_properties["weight"]
for base_referent in referents:
# Calculate the distance of all accessible referents
distances, predecessors =
graph_tool.search.dijkstra_search(navigable_graph,base_referent,weight)
This is the trace:
File "/data/workspace/stanford-corenlp-python/contextgenerator.py", line
218, in resolve_corefenrence
distances, predecessors =
graph_tool.search.dijkstra_search(navigable_graph,base_referent,weight)
File "/usr/local/lib/python2.7/dist-packages/graph_tool/decorators.pyc",
line 2, in dijkstra_search
Bq�Oc
File
(Continue reading)
RSS Feed