Skip to content

Commit

Permalink
chore: updated vendored C core
Browse files Browse the repository at this point in the history
  • Loading branch information
ntamas committed Sep 4, 2023
1 parent c5422ea commit f01bd6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/source/igraph
Submodule igraph updated 99 files
+2 −2 .github/workflows/build-cmake.yml
+1 −1 .github/workflows/stimulus.yml
+26 −2 CHANGELOG.md
+57 −0 CITATION.cff
+8 −0 README.md
+1 −0 azure-pipelines.yml
+3 −1 doc/bipartite.xxml
+2 −2 doc/igraph-docs.xml
+4 −1 doc/structural.xxml
+8 −0 etc/cmake/compilers.cmake
+0 −4 include/igraph.h
+26 −9 include/igraph_attributes.h
+8 −6 include/igraph_bipartite.h
+1 −1 include/igraph_memory.h
+7 −0 include/igraph_paths.h
+1 −1 include/igraph_random.h
+0 −4 include/igraph_types.h
+1 −2 include/igraph_vector_pmt.h
+10 −1 interfaces/functions.yaml
+1 −1 src/CMakeLists.txt
+22 −20 src/centrality/closeness.c
+1 −1 src/centrality/eigenvector.c
+9 −3 src/centrality/pagerank.c
+91 −103 src/cliques/cliques.c
+15 −10 src/cliques/glet.c
+1 −1 src/cliques/maximal_cliques.c
+3 −3 src/community/community_misc.c
+1 −1 src/community/label_propagation.c
+1 −1 src/community/modularity.c
+5 −5 src/connectivity/cohesive_blocks.c
+3 −3 src/connectivity/components.c
+24 −31 src/connectivity/separators.c
+2 −2 src/constructors/circulant.c
+1 −1 src/constructors/lattices.c
+2 −3 src/core/buckets.c
+2 −2 src/core/estack.c
+3 −3 src/core/indheap.c
+3 −5 src/core/math.h
+1 −1 src/core/strvector.c
+2 −2 src/core/trie.c
+11 −2 src/core/vector.pmt
+7 −5 src/f2c.h
+17 −17 src/flow/flow.c
+5 −5 src/flow/st-cuts.c
+3 −3 src/games/barabasi.c
+8 −8 src/games/degree_sequence.c
+1 −1 src/games/static_fitness.c
+2 −2 src/games/tree.c
+20 −5 src/games/watts_strogatz.c
+1 −1 src/graph/adjlist.c
+8 −10 src/graph/iterators.c
+3 −3 src/graph/type_indexededgelist.c
+3 −3 src/internal/glpk_support.c
+5 −4 src/internal/glpk_support.h
+5 −0 src/internal/hacks.h
+156 −140 src/internal/lsap.c
+1 −2 src/io/dimacs.c
+55 −42 src/io/dot.c
+2 −2 src/io/gml.c
+8 −2 src/io/graphml.c
+2 −2 src/io/lgl.c
+2 −2 src/io/ncol.c
+5 −5 src/io/pajek.c
+1 −1 src/io/parse_utils.c
+26 −26 src/isomorphism/lad.c
+4 −4 src/isomorphism/vf2.c
+2 −2 src/linalg/arpack.c
+44 −45 src/linalg/arpack_internal.h
+6 −7 src/linalg/blas_internal.h
+25 −27 src/linalg/lapack_internal.h
+2 −2 src/math/complex.c
+151 −72 src/misc/bipartite.c
+8 −2 src/misc/coloring.c
+35 −25 src/misc/motifs.c
+2 −2 src/misc/spanning_trees.c
+11 −9 src/operators/contract.c
+143 −8 src/paths/distances.c
+13 −7 src/paths/shortest_paths.c
+7 −10 src/paths/widest_paths.c
+2 −2 src/properties/multiplicity.c
+6 −6 src/properties/trees.c
+2 −2 src/random/random.c
+125 −4 tests/unit/igraph_bipartite_game.c
+3 −5 tests/unit/igraph_complex.c
+186 −7 tests/unit/igraph_graph_center.c
+77 −7 tests/unit/igraph_graph_center.out
+2 −2 tests/unit/igraph_perfect.c
+56 −21 tests/unit/igraph_static_power_law_game.c
+2 −0 tests/unit/igraph_write_graph_dot.c
+2 −2 tests/unit/igraph_write_graph_dot.out
+1 −1 tests/unit/test_utilities.c
+1 −0 vendor/f2c/derf_.c
+1 −0 vendor/f2c/derfc_.c
+1 −0 vendor/f2c/erf_.c
+1 −0 vendor/f2c/erfc_.c
+1 −0 vendor/f2c/exit_.c
+1 −0 vendor/f2c/s_paus.c
+1 −0 vendor/f2c/s_stop.c
+7 −2 vendor/plfit/hzeta.c

0 comments on commit f01bd6e

Please sign in to comment.