The loop is executed in time $O(n^2(e+n))$, which makes a polynomial delay for the output of the data.
I’ve tried searching a bit but I can only seem to find other papers and no definition.
Asked By : Martin Lavoie
Answered By : mdxn
- Initialization (perhaps generating your first solution)
- Computing the next solution for the purpose of enumeration.
For example, you might use a polynomial space or exponential time algorithm to initialize and preprocess your data. To find or generate multiple solutions to a problem, you may only need to do a little bit of extra work. The time complexity with generating that next solution is the time delay complexity measure that you encountered in that paper. In particular, the time delay between enumerations is polynomial in respect to the input. Jan Ramon mentions this and other time complexity measures in his talk on “General Graph Refinement with Polynomial Delay”: http://videolectures.net/mlg07_ramon_ggr/
Best Answer from StackOverflow
Question Source : http://cs.stackexchange.com/questions/14614