Skip to content
Snippets Groups Projects
Commit cc07c771 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Polish

parent 118b070a
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,6 @@ g = graph_tool.load_graph_from_csv(sys.argv[1],
t1 = time.perf_counter()
print(f'Loading done in {t1 - t0:.0f} s')
t0 = t1
g.set_fast_edge_removal()
#####################
# Set property maps #
......@@ -41,12 +40,12 @@ g.vp['last_av_rad'] = g.new_vp('float')
g.vp['last_av_ros'] = g.new_vp('float')
g.ep['nl_cost_function'] = g.new_ep('float')
print('Starting processing')
##############
# Processing #
##############
print('Starting processing')
g.set_fast_edge_removal()
verts_to_del = []
for v in g.vertices():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment