Home
last modified time | relevance | path

Searched refs:nodes_to_calc (Results 1 – 14 of 14) sorted by relevance

/dports/math/igraph/igraph-0.9.5/src/centrality/
H A Dcloseness.c145 long int nodes_to_calc; in igraph_i_closeness_cutoff_weighted() local
172 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_i_closeness_cutoff_weighted()
175 igraph_vector_resize(reachable_count, nodes_to_calc); in igraph_i_closeness_cutoff_weighted()
191 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_i_closeness_cutoff_weighted()
422 long int nodes_to_calc; in igraph_closeness_cutoff() local
433 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_closeness_cutoff()
453 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_closeness_cutoff()
542 long int nodes_to_calc; in igraph_i_harmonic_centrality_unweighted() local
548 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_i_harmonic_centrality_unweighted()
638 long int nodes_to_calc; in igraph_i_harmonic_centrality_weighted() local
[all …]
H A Dprpack.cpp40 long int i, no_of_nodes = igraph_vcount(graph), nodes_to_calc; in igraph_i_personalized_pagerank_prpack() local
108 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_i_personalized_pagerank_prpack()
109 IGRAPH_CHECK(igraph_vector_resize(vector, nodes_to_calc)); in igraph_i_personalized_pagerank_prpack()
H A Dcentrality_other.c1546 long int nodes_to_calc; in igraph_i_personalized_pagerank_arpack() local
1555 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_i_personalized_pagerank_arpack()
1557 IGRAPH_CHECK(igraph_vector_resize(vector, nodes_to_calc)); in igraph_i_personalized_pagerank_arpack()
/dports/math/igraph/igraph-0.9.5/src/properties/
H A Dtriangles_template1.h27 long int nodes_to_calc; variable
37 nodes_to_calc = IGRAPH_VIT_SIZE(vit);
39 if (nodes_to_calc == 0) {
52 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc));
H A Dtriangles.c135 long int nodes_to_calc, affected_nodes; in igraph_transitivity_local_undirected2() local
144 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_transitivity_local_undirected2()
151 IGRAPH_CHECK(igraph_vector_reserve(&avids, nodes_to_calc)); in igraph_transitivity_local_undirected2()
153 for (i = 0; i < nodes_to_calc; IGRAPH_VIT_NEXT(vit), i++) { in igraph_transitivity_local_undirected2()
251 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_transitivity_local_undirected2()
253 for (i = 0; i < nodes_to_calc; i++, IGRAPH_VIT_NEXT(vit)) { in igraph_transitivity_local_undirected2()
656 long int nodes_to_calc; in igraph_i_transitivity_barrat1() local
671 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_i_transitivity_barrat1()
685 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_i_transitivity_barrat1()
H A Dconstraint.c83 long int nodes_to_calc; in igraph_constraint() local
104 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_constraint()
119 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_constraint()
122 for (a = 0; a < nodes_to_calc; a++, IGRAPH_VIT_NEXT(vit)) { in igraph_constraint()
/dports/math/R-cran-igraph/igraph/src/
H A Dprpack.cpp42 long int i, no_of_nodes = igraph_vcount(graph), nodes_to_calc; in igraph_personalized_pagerank_prpack() local
86 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_personalized_pagerank_prpack()
87 IGRAPH_CHECK(igraph_vector_resize(vector, nodes_to_calc)); in igraph_personalized_pagerank_prpack()
H A Dtriangles_template1.h27 long int nodes_to_calc; variable
37 nodes_to_calc = IGRAPH_VIT_SIZE(vit);
45 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc));
H A Dtriangles.c195 long int nodes_to_calc, affected_nodes; in igraph_transitivity_local_undirected2() local
204 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_transitivity_local_undirected2()
212 IGRAPH_CHECK(igraph_vector_reserve(&avids, nodes_to_calc)); in igraph_transitivity_local_undirected2()
214 for (i = 0; i < nodes_to_calc; IGRAPH_VIT_NEXT(vit), i++) { in igraph_transitivity_local_undirected2()
312 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_transitivity_local_undirected2()
314 for (i = 0; i < nodes_to_calc; i++, IGRAPH_VIT_NEXT(vit)) { in igraph_transitivity_local_undirected2()
743 long int nodes_to_calc; in igraph_transitivity_barrat1() local
762 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_transitivity_barrat1()
776 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_transitivity_barrat1()
H A Dcentrality.c1518 long int nodes_to_calc; in igraph_personalized_pagerank_arpack() local
1527 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_personalized_pagerank_arpack()
1529 IGRAPH_CHECK(igraph_vector_resize(vector, nodes_to_calc)); in igraph_personalized_pagerank_arpack()
2602 long int nodes_to_calc; in igraph_i_closeness_estimate_weighted() local
2631 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_i_closeness_estimate_weighted()
2642 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_i_closeness_estimate_weighted()
2707 for (i = 0; i < nodes_to_calc; i++) { in igraph_i_closeness_estimate_weighted()
2803 long int nodes_to_calc; in igraph_closeness_estimate() local
2816 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_closeness_estimate()
2829 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_closeness_estimate()
[all …]
H A Dtype_indexededgelist.c937 long int nodes_to_calc; in igraph_degree() local
948 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_degree()
953 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_degree()
H A Dstructural_properties.c1408 long int i, j, n, nodes_to_calc; in igraph_pagerank_old() local
1432 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_pagerank_old()
1434 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_pagerank_old()
2598 long int nodes_to_calc; in igraph_constraint() local
2619 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_constraint()
2634 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_constraint()
2637 for (a = 0; a < nodes_to_calc; a++, IGRAPH_VIT_NEXT(vit)) { in igraph_constraint()
/dports/math/igraph/igraph-0.9.5/src/paths/
H A Dshortest_paths.c707 long int nodes_to_calc; /* no. of vertices includes in computation */ in igraph_local_efficiency() local
728 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_local_efficiency()
730 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_local_efficiency()
/dports/math/igraph/igraph-0.9.5/src/graph/
H A Dtype_indexededgelist.c1003 long int nodes_to_calc; in igraph_degree() local
1014 nodes_to_calc = IGRAPH_VIT_SIZE(vit); in igraph_degree()
1019 IGRAPH_CHECK(igraph_vector_resize(res, nodes_to_calc)); in igraph_degree()