Tamás Nepusz

Results 691 comments of Tamás Nepusz

Which one should be consolidated into the other one and which one should be deprecated?

On the other hand: - `igraph_get_edgelist()` does not return the edge list of the graph if the edge selector that you pass to it refers to a subset of the...

In the end I decided to add a `bycol` argument to `igraph_edges()` but to keep `igraph_get_edgelist()` without deprecation. Getting the entire edge list is a very common operation and it...

Does this error appear when trying to activate the add-on? Are you sure you have installed the add-on correctly? (Instructions [here](https://doc.collmot.com/public/skybrush-studio-for-blender/latest/install.html#_installation)). The class that Blender is looking for is in...

My two cents: * I'd rather not let CRAN's idiosyncrasies determine how the C core of igraph is developed, so I'd rather not add the `_pv` functions to the C...

> Are there any hooks in the attribute handler that would allow updating such attributes upon vertex deletion/addition? No, not until we implement some kind of a generic event emitter...

Probably a consequence of R's vector recycling behaviour? The graph attribute named `layout` is special in the sense that you can assign a matrix there and igraph's `layout_nicely()` layout algorithm...

@krlmlr Feel free to re-assign it to one of your teammates if needed.

Vertex attributes `x` and `y` are already treated this way if a graph-level `layout` attribute is not present. See the source code of `layout_nicely` -- if there is no graph...

Can't we simply keep on using `$x` and `$y` instead of adding support for `$layout` on the vertex level? (Note that there's also an optional `$z` vertex attribute that is...