FeedbackVertexSetComputer.greedyFeedbackVertexSet() results should be memoized since it is called 4 times on separate threads, but will return the same result for each invocation. This will save time (and compute cost) for large graphs.
ModulatorComputer.computeBetweennessCentralityParallel() results should be memoized since it is called 2 times on separate threads, but will return the same result for each invocation. This will save time (and compute cost) for large graphs.