What's a good algorithm for determining the remaining time for something to complete? I know how many total lines there are, and how many have completed already, how should I estimate the time remaining?
|
|
|
Why not?
TimeLeft will then be expressed in whatever unit of time timeTaken is. Edit:Thanks for the comment you're right this should be: (TimeTaken / linesProcessed) * linesLeft=timeLeft so we have (10/100) * 200 = 20 Seconds now 10 seconds go past |
|||||||||||||||||
|
|
Make sure to manage perceived performance.
|
|||||||||
|
|
I'm surprised no one has answered this question with code! The simple way to calculate time, as answered by @JoshBurke, can be coded as follows:
This simple example works great for simple progress calculation. For example, when you're downloading a large file, the download speed could easily fluctuate. To calculate the most accurate "ETA", a good algorithm would be to only consider the past 10 seconds of progress. Check out ETACalculator.cs for an implementation of this algorithm! ETACalculator.cs is from Progression -- an open source library that I wrote. It defines a very easy-to-use structure for all kinds of "progress calculation". It makes it easy to have nested steps that report different types of progress. If you're concerned about Perceived Performance (as @JoshBurke suggested), it will help you immensely. |
|||
|
|
|
Generally, you know three things at any point in time while processing:
Given those items, the estimate (unless the time to process an item is constant) of the remaining time will be B * C / A |
|||||
|
|
It depends greatly on what the "something" is. If you can assume that the amount of time to process each line is similar, you can do a simple calculation:
|
|||
|
|
Not to revive a dead question but I kept coming back to reference this page.
Example:
Hopefully it will be of some use to somebody. ;)
|
||||
|
|
|
Where
|
||||
|
|
|
That really depends on what is being done... lines are not enough unless each individual line takes the same amount of time. The best way (if your lines are not similar) would probably be to look at logical sections of the code find out how long each section takes on average, then use those average timings to estimate progress. |
|||
|
|
If you know the percentage completed, and you can simply assume that the time scales linearly, something like timeLeft = timeSoFar * (1/Percentage) might work. |
|||
|
|
|
there is no standard algorithm i know of, my sugestion would be:
You probably seen programs where the load bar runs much faster in one point than in another. Well that's pretty much because this is how they do it. (though they probably just put increments at regular intervals in the main wrapper) |
|||
|
|