We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For a graph that i am testing, it takes almost twice as long to generate the graphlets as it does to to count the orbits.
The underlying code converts from orbits to graphlets, so we just need to speed up the conversion. Timings:
Orbit Counts
tic(); q12 = netdist::count_orbits_per_node(G,4); toc() 0.379 sec elapsed tic(); q12 = netdist::count_orbits_per_node(G,5); toc() 1.425 sec elapsed
graphlets Counts tic(); q12 = netdist::count_graphlets_per_node(G,4); toc() 0.653 sec elapsed tic(); q12 = netdist::count_graphlets_per_node(G,5); toc() 2.306 sec elapsed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For a graph that i am testing, it takes almost twice as long to generate the graphlets as it does to to count the orbits.
The underlying code converts from orbits to graphlets, so we just need to speed up the conversion. Timings:
Orbit Counts
graphlets Counts
tic(); q12 = netdist::count_graphlets_per_node(G,4); toc()
0.653 sec elapsed
tic(); q12 = netdist::count_graphlets_per_node(G,5); toc()
2.306 sec elapsed
The text was updated successfully, but these errors were encountered: