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 |
||||||||||
|
|
|
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) |
||
|
|
|
|
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:
|
||
|
|
|
|
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 |
||||
|
|
|
Make sure to manage perceived performance.
|
||||||
|
