Tamás Nepusz
Tamás Nepusz
The first comment on that SO question claims that all the answers are wrong ([blog post](https://alexreinking.com/blog/building-a-dual-shared-and-static-library-with-cmake.html)); I haven't read it in detail yet but it looks like the situation is...
For the time being I restored the old behaviour as suggested [here](https://github.com/igraph/igraph/issues/1749#issuecomment-812674100) so we now have `libigraph.so.0.0.0` again. There is an internal discussion going on between the developers about how...
Okay, so as we are nearing 0.10.0 it's worth looking at this issue again and decide how this should be handled. The state of things are as follows: * 0.10.0...
Got it, and it seems a bit more logical now than before :) So yes, `current:revision:age` will go from `2:0:0` to `3:0:0` in Debian with the release of 0.10. Ubuntu...
Note to ourselves: [this page](https://cmake.org/cmake/help/latest/prop_tgt/VERSION.html#prop_tgt:VERSION) documents how CMake handles the `VERSION` and `SOVERSION` properties of a library target; if my understanding is correct `SOVERSION` becomes the `current` part in Linux...
> Which are the tools that actually look at the version number and make a decision based on it that affects functionality? On Linux, when building / linking an app...
Docs about the Rand index are added in 3d2322076.
> am I missing an existing function? I don't think so. There's `igraph_bfs`, which you can call with a set of vertices to start the BFS from, but note that...
Thanks for the heads up! I won't have time for this in the foreseeable future, but I have added labels to denote that I am happy to accept PRs for...
Cannot reproduce; this is what I've tried: ``` from igraph import Graph g = Graph(3) g.vs["value"] = [4, 1.7, None] g.write_graphml("test.graphml") ``` and this is what I've got: ``` 4...