Hi,

I'm trying igraph v 0.6. I have a script I was using to calculate network modularity which I wrote based on igraph's previous version.

    igraph_t graph;
    igraph_vector_t result;
    igraph_vector_t eb;
    igraph_vector_t bridges;
    igraph_matrix_t merges;

The call:

igraph_community_edge_betweenness(&graph,&result,&eb,&merges,&bridges,IGRAPH_UNDIRECTED);

now fails at build time with the following:

error: too few arguments to function ‘igraph_community_edge_betweenness’
/usr/local/include/igraph/igraph_community.h:111:5: note: declared here
make: *** [src/test.o] Error 1

However I cannot find any difference in the interface of igraph_community_edge_betweenness. Can you help?

Thanks
G

--
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.


_______________________________________________
igraph-help mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/igraph-help

Reply via email to