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

Do not save fast edge removal property

This is not needed for further processing of the graph.
parent a2044ab2
No related branches found
No related tags found
No related merge requests found
...@@ -101,6 +101,7 @@ print("Number of edges:", g.num_edges()) ...@@ -101,6 +101,7 @@ print("Number of edges:", g.num_edges())
print("Internal properties:") print("Internal properties:")
g.list_properties() g.list_properties()
print('Saving graph...') print('Saving graph...')
g.set_fast_edge_removal(False)
g.save(sys.argv[2]) g.save(sys.argv[2])
t1 = time.perf_counter() t1 = time.perf_counter()
timings_file.write(f'Done saving in {t1 - t0:.0f} s\n') timings_file.write(f'Done saving in {t1 - t0:.0f} s\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment