I have a very large igraph object so that calculation of shortest paths takes a long time.
I am only interested in the length of the shortest path between a very small set of pairs of vertices.
Let's say the (undirected) graph consists of 10,000 vertices and has 500,000 edges, there are shortest paths for 10,000 * 10,000 / 2
pairs of vertices, but I only need the paths between 10,000 pairs of vertices.
Is there any possibility to define not only vertices, but pairs of vertices (meaning: start and end point of the path to be calculated)?