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

Change type of property to `vector<int>`

This allows readability of the property in graphml format. As vector
of integers is more specific than python object, I suspect this commit
also makes the code more efficient.
parent 7f99160c
Branches
Tags
No related merge requests found
......@@ -35,7 +35,7 @@ t0 = t1
# Processing:
g.vp['inst_eddies'] = g.new_vp('object') # this object will be a list
g.vp['inst_eddies'] = g.new_vp('vector<int>')
print('Collapsing into segments...')
g.set_fast_edge_removal()
verts_to_del = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment