I have an ever-changing graph. Over time, a few number of vertices are added and a few new edges appear (nodes are not deleted). If i have a previous pagerank calculation result, how can i re-use it in order to improve speed?
The python igraph module seems nifty and all, but i can't find anything relevant. The specified improvement should be useful, as pr is a random algorithm. I have a prototype written in python, but i'd really like to use a C library wrapper for this. Anyone else experienced that?