[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [igraph] Getting verticies ids' after igraph_delete_vertices()
From: |
Sergey Aleynikov |
Subject: |
Re: [igraph] Getting verticies ids' after igraph_delete_vertices() |
Date: |
Sat, 3 Jan 2009 21:26:18 +0800 |
2009/1/3 Gábor Csárdi <address@hidden>
> You can write a "handler" function in C (or call back to Perl if you
> like, the R interface does this), and this function will be called
> whenever vertices are to be deleted from the graph. E.g. in R,
> arbitrary R objects can be assigned as attributes; these are stored in
> lists and the R attribute handler only does an R indexing operation
> when vertices are deleted. (The same for edges.) This is simple enough
> in theory and not that difficult to code in practice.
>
> Does this help?
delete_vertices ? That's exactly what i need. Thanks.