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 May 29, 2024
1 parent 3b51a80 commit 768d895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/source/igraph
Submodule igraph updated 60 files
+14 −3 CHANGELOG.md
+1 −0 doc/adjlist.xxml
+1 −0 doc/generators.xxml
+1 −0 doc/iterators.xxml
+1 −0 doc/operators.xxml
+1 −0 doc/psumtree.xxml
+6 −2 doc/structural.xxml
+1 −1 examples/simple/cattributes3.c
+1 −1 examples/simple/cattributes4.c
+1 −1 examples/simple/igraph_attribute_combination.c
+81 −0 examples/simple/igraph_contract_vertices.c
+24 −24 examples/simple/igraph_is_loop.c
+8 −2 examples/simple/igraph_is_loop.out
+4 −4 examples/simple/igraph_simplify.c
+1 −1 fuzzing/centrality.cpp
+2 −0 fuzzing/linear_algos_directed.cpp
+2 −0 include/igraph_error.h
+3 −3 include/igraph_operators.h
+3 −0 include/igraph_structural.h
+0 −2 include/igraph_topology.h
+7 −0 interfaces/functions.yaml
+6 −2 src/centrality/eigenvector.c
+21 −4 src/centrality/hub_authority.c
+2 −0 src/connectivity/components.c
+1 −1 src/connectivity/separators.c
+13 −8 src/constructors/atlas.c
+1 −1 src/constructors/trees.c
+1 −1 src/core/bitset.c
+10 −6 src/core/vector.pmt
+1 −1 src/flow/st-cuts.c
+27 −22 src/games/chung_lu.c
+31 −4 src/games/degree_sequence.c
+111 −22 src/games/erdos_renyi.c
+4 −4 src/internal/qsort.c
+93 −112 src/isomorphism/lad.c
+3 −5 src/layout/sugiyama.c
+9 −5 src/linalg/arpack.c
+9 −7 src/misc/bipartite.c
+6 −5 src/misc/cocitation.c
+2 −0 src/operators/contract.c
+11 −11 src/operators/simplify.c
+11 −8 src/operators/subgraph.c
+72 −26 src/properties/basic_properties.c
+64 −5 src/properties/loops.c
+8 −8 src/random/rng_glibc2.c
+8 −8 src/random/rng_mt19937.c
+8 −8 src/random/rng_pcg32.c
+8 −8 src/random/rng_pcg64.c
+3 −0 tests/CMakeLists.txt
+50 −0 tests/benchmarks/lad.c
+1 −1 tests/unit/assortativity.c
+1 −1 tests/unit/cattributes5.c
+2 −2 tests/unit/erdos_renyi_game_gnm.c
+5 −15 tests/unit/erdos_renyi_game_gnp.c
+1 −1 tests/unit/igraph_betweenness.c
+1 −1 tests/unit/igraph_betweenness_subset.c
+1 −1 tests/unit/igraph_maximal_cliques.c
+59 −0 tests/unit/igraph_mean_degree.c
+1 −1 tests/unit/igraph_modularity.c
+2 −17 tests/unit/igraph_preference_game.c

0 comments on commit 768d895

Please sign in to comment.