Commit 8c10051
File tree
3 files changed
+25
-6
lines changed- src
- _igraph
- igraph
- vendor/source
3 files changed
+25
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13611 | 13611 | | |
13612 | 13612 | | |
13613 | 13613 | | |
13614 | | - | |
| 13614 | + | |
13615 | 13615 | | |
13616 | 13616 | | |
13617 | 13617 | | |
13618 | 13618 | | |
| 13619 | + | |
13619 | 13620 | | |
13620 | 13621 | | |
13621 | 13622 | | |
| |||
13624 | 13625 | | |
13625 | 13626 | | |
13626 | 13627 | | |
13627 | | - | |
| 13628 | + | |
13628 | 13629 | | |
13629 | 13630 | | |
13630 | 13631 | | |
13631 | 13632 | | |
13632 | 13633 | | |
13633 | | - | |
13634 | | - | |
| 13634 | + | |
| 13635 | + | |
13635 | 13636 | | |
13636 | 13637 | | |
13637 | 13638 | | |
| |||
13654 | 13655 | | |
13655 | 13656 | | |
13656 | 13657 | | |
| 13658 | + | |
| 13659 | + | |
| 13660 | + | |
| 13661 | + | |
| 13662 | + | |
| 13663 | + | |
| 13664 | + | |
13657 | 13665 | | |
13658 | 13666 | | |
13659 | 13667 | | |
| |||
13696 | 13704 | | |
13697 | 13705 | | |
13698 | 13706 | | |
13699 | | - | |
| 13707 | + | |
13700 | 13708 | | |
13701 | 13709 | | |
13702 | 13710 | | |
| |||
13710 | 13718 | | |
13711 | 13719 | | |
13712 | 13720 | | |
| 13721 | + | |
| 13722 | + | |
| 13723 | + | |
| 13724 | + | |
13713 | 13725 | | |
13714 | 13726 | | |
13715 | 13727 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
461 | 461 | | |
462 | 462 | | |
463 | 463 | | |
| 464 | + | |
464 | 465 | | |
465 | 466 | | |
466 | 467 | | |
| |||
491 | 492 | | |
492 | 493 | | |
493 | 494 | | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
494 | 500 | | |
495 | 501 | | |
496 | 502 | | |
| |||
512 | 518 | | |
513 | 519 | | |
514 | 520 | | |
| 521 | + | |
515 | 522 | | |
516 | 523 | | |
517 | 524 | | |
| |||
- .all-contributorsrc+27
- .github/copilot-instructions.md+7-5
- .github/workflows/arch-emu.yml+8-2
- CHANGELOG.md+7-1
- CONTRIBUTORS.md+3
- CONTRIBUTORS.txt+3
- doc/CMakeLists.txt+1
- doc/coloring.xxml+5
- doc/glossary.md+2-2
- doc/igraph-docs.xml+2
- doc/spatial.xxml+18
- doc/structural.xxml+1
- examples/simple/coloring.c+7-11
- examples/simple/igraph_community_leiden.c+59-8
- examples/simple/igraph_community_leiden.out+3
- fuzzing/build.sh+3-3
- fuzzing/community.cpp+2-1
- fuzzing/linear_algos_undirected.cpp+4
- fuzzing/weighted_community.cpp+2-1
- include/igraph.h+1
- include/igraph_coloring.h+4
- include/igraph_community.h+12-10
- include/igraph_spatial.h+55
- include/igraph_structural.h+10
- include/igraph_types.h-2
- interfaces/functions.yaml+38-12
- interfaces/types.yaml+5
- src/CMakeLists.txt+3
- src/centrality/pagerank.c+2-2
- src/centrality/prpack.cpp+4-3
- src/community/community_misc.c+89-32
- src/community/fluid.c+22-19
- src/community/infomap.cpp+26-11
- src/community/leiden.c+522-307
- src/connectivity/percolation.c+8-1
- src/constructors/mycielskian.c+5-5
- src/core/sparsemat.c+9-9
- src/games/barabasi.c+2-2
- src/layout/align.c+1-1
- src/layout/davidson_harel.c+2-2
- src/layout/layout_random.c+10-10
- src/layout/reingold_tilford.c+4-4
- src/misc/bipartite.c+3
- src/misc/coloring.c+216-1
- src/misc/embedding.c+1-1
- src/misc/feedback_arc_set.c+4-4
- src/misc/sir.c+4-4
- src/operators/permute.c+3-5
- src/paths/sparsifier.c+3-3
- src/paths/widest_paths.c+13-13
- src/properties/rich_club.c+166
- src/spatial/nearest_neighbor.cpp+283
- tests/CMakeLists.txt+14-3
- tests/benchmarks/coloring.c
- tests/benchmarks/community.c+1-1
- tests/benchmarks/igraph_nearest_neighbor_graph.c+77
- tests/unit/coloring.c
- tests/unit/community_indexing.c+17-1
- tests/unit/community_leiden.c+63-10
- tests/unit/community_leiden.out+31-16
- tests/unit/igraph_almost_equals.c+9-9
- tests/unit/igraph_community_optimal_modularity.c+24-7
- tests/unit/igraph_full_bipartite.c+11-11
- tests/unit/igraph_maximal_cliques.c+2-11
- tests/unit/igraph_nearest_neighbor_graph.c+278
- tests/unit/igraph_nearest_neighbor_graph.out+809
- tests/unit/igraph_product.c+2-2
- tests/unit/igraph_reindex_membership.c+86
- tests/unit/igraph_split_join_distance.c+2-9
- tests/unit/igraph_split_join_distance.out-1
- tests/unit/is_coloring.c+294
- tests/unit/null_communities.c+2-2
- tests/unit/rich_club.c+288
- tests/unit/rich_club.out+35
- vendor/infomap/.clang-format-29
- vendor/infomap/.gitignore-50
- vendor/infomap/CHANGELOG.md-525
- vendor/infomap/CITATION.cff+3-3
- vendor/infomap/CMakeLists.txt+17-3
- vendor/infomap/LICENSE_GPLv3.txt+83-70
- vendor/infomap/README.rst+3-3
- vendor/infomap/src/main.cpp-48
- vendor/nanoflann/nanoflann.hpp+2.7k
0 commit comments