Skip to content

Commit

Permalink
chore: update C core
Browse files Browse the repository at this point in the history
  • Loading branch information
szhorvat committed Jan 29, 2024
1 parent 412310f commit e258247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/source/igraph
Submodule igraph updated 83 files
+18 −0 .all-contributorsrc
+2 −2 .github/workflows/build-cmake.yml
+2 −2 .github/workflows/codeql-analysis.yml
+21 −1 CHANGELOG.md
+4 −0 CONTRIBUTORS.md
+2 −0 CONTRIBUTORS.txt
+2 −2 azure-pipelines.yml
+76 −26 doc/CMakeLists.txt
+9 −6 doc/installation.xml
+2 −1 etc/cmake/dependencies.cmake
+1 −0 etc/cmake/summary.cmake
+9 −9 examples/simple/cattributes.c
+1 −1 examples/simple/igraph_strvector.c
+3 −3 fuzzing/build.sh
+30 −7 include/igraph_decls.h
+2 −2 include/igraph_dqueue_pmt.h
+10 −0 include/igraph_error.h
+1 −1 include/igraph_heap_pmt.h
+3 −3 include/igraph_interface.h
+14 −14 include/igraph_iterators.h
+17 −17 include/igraph_matrix_pmt.h
+2 −2 include/igraph_psumtree.h
+1 −1 include/igraph_stack_pmt.h
+9 −5 include/igraph_strvector.h
+2 −2 include/igraph_typed_list_pmt.h
+26 −26 include/igraph_vector_pmt.h
+5 −5 include/igraph_visitor.h
+14 −14 interfaces/functions.yaml
+1 −1 src/CMakeLists.txt
+2 −2 src/centrality/prpack/prpack_base_graph.cpp
+7 −7 src/centrality/prpack/prpack_igraph_graph.cpp
+5 −9 src/centrality/prpack/prpack_utils.cpp
+2 −3 src/cliques/cliquer/cliquer_graph.c
+14 −12 src/community/fast_modularity.c
+3 −2 src/community/infomap/infomap.cc
+2 −1 src/community/walktrap/walktrap_communities.cpp
+4 −0 src/community/walktrap/walktrap_graph.cpp
+4 −4 src/connectivity/components.c
+3 −8 src/constructors/atlas.c
+5 −2 src/constructors/prufer.c
+1 −1 src/constructors/regular.c
+3 −8 src/core/grid.c
+1 −3 src/core/printing.c
+10 −12 src/core/sparsemat.c
+32 −49 src/core/strvector.c
+3 −9 src/games/sbm.c
+4 −4 src/graph/cattributes.c
+47 −53 src/graph/visitors.c
+84 −101 src/hrg/dendro.h
+41 −53 src/hrg/graph.h
+37 −55 src/hrg/graph_simp.h
+133 −191 src/hrg/hrg.cc
+308 −444 src/hrg/hrg_types.cc
+27 −43 src/hrg/rbtree.h
+25 −40 src/hrg/splittree_eq.h
+1 −1 src/io/dl-parser.y
+2 −6 src/io/gml-tree.c
+7 −15 src/io/gml.c
+9 −10 src/io/graphml.c
+2 −2 src/io/leda.c
+4 −8 src/layout/fruchterman_reingold.c
+4 −4 src/layout/large_graph.c
+4 −0 src/layout/layout_random.c
+26 −0 src/misc/bipartite.c
+26 −27 src/misc/cocitation.c
+2 −2 src/misc/conversion.c
+9 −9 src/paths/bellman_ford.c
+11 −5 src/paths/dijkstra.c
+18 −14 src/paths/unweighted.c
+1 −0 tests/CMakeLists.txt
+3 −6 tests/benchmarks/igraph_qsort.c
+90 −0 tests/benchmarks/igraph_tree_game.c
+14 −14 tests/unit/cattributes6.c
+2 −2 tests/unit/constructor-failure.c
+28 −0 tests/unit/igraph_community_fastgreedy.c
+9 −0 tests/unit/igraph_community_fastgreedy.out
+18 −13 tests/unit/igraph_hrg.c
+24 −0 tests/unit/igraph_hrg.out
+2 −2 tests/unit/igraph_hrg2.c
+1 −1 tests/unit/igraph_hrg3.c
+27 −1 tests/unit/igraph_is_bipartite.c
+2 −2 tests/unit/igraph_strvector.c
+12 −12 tests/unit/test_utilities.c

0 comments on commit e258247

Please sign in to comment.