-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule igraph
updated
18 files
+2 −2 | .github/workflows/build-cmake.yml | |
+6 −0 | CHANGELOG.md | |
+3 −3 | examples/simple/igraph_write_graph_pajek.c | |
+2 −2 | examples/simple/igraph_write_graph_pajek.out | |
+26 −27 | src/community/leading_eigenvector.c | |
+1 −0 | src/core/matrix.pmt | |
+44 −62 | src/core/vector.pmt | |
+3 −0 | src/io/pajek-header.h | |
+69 −45 | src/io/pajek-lexer.l | |
+336 −293 | src/io/pajek-parser.y | |
+138 −148 | src/io/pajek.c | |
+15 −12 | src/properties/basic_properties.c | |
+14 −6 | src/properties/girth.c | |
+14 −14 | tests/unit/igraph_eigenvector_centrality.c | |
+7 −7 | tests/unit/igraph_rewire_directed_edges.c | |
+13 −0 | tests/unit/pajek.c | |
+3 −3 | tests/unit/prop_caching.c | |
+18 −0 | tests/unit/utf8_with_bom.net |