C/igraph 0.10.4, the third bugfix release of the 0.10 series, has arrived.
The source can be obtained from the GitHub releases page.
This release adds support for finding a shortest path with the A* algorithm and for finding a greedy vertex coloring with the DSatur heuristics. It also adds interruption support for the Bellman-Ford and Floyd-Warshall shortest path finder algorithms.
Added
igraph_get_shortest_path_astar()finds a shortest path with the A* algorithm.igraph_vertex_coloring_greedy()now supports the DSatur heuristics (#2284, thanks to @professorcode1).
Changed
- The
testbuild target now only runs the unit tests, but it does not build them. In order to both build and run tests, use thechecktarget, which continues to behave as before (PR #2291). - The experimental function
igraph_distances_floyd_warshall()now hasfromandtoparameters for choosing source and target vertices. - The experimental function
igraph_distances_floyd_warshall()now has an additionalmethodparameter to select a specific algorithm. A faster “Tree” variant of the Floyd-Warshall algorithm is now available (#2267, thanks to @rfulekjames).
Fixed
- The Bellman-Ford shortest path finder is now interruptible.
- The Floyd-Warshall shortest path finder is now interruptible.
- Running CTest no longer builds the tests automatically, as this interfered with VSCode, which would invoke the
ctestexecutable after configuring a project in order to determine test executables. Use thebuild_teststarget to build the tests first, or use thechecktarget to both build and run all unit tests (PR #2291).
Other
- Improved the performance and memory usage of
igraph_widest_path_widths_floyd_warshall(). - Documentation improvements.