Boost C++ Libraries: Ticket #2985: Progress Display Remaining Time https://svn.boost.org/trac10/ticket/2985 <p> It would be nice if the progress bar could calculate the estimated time remaining. There would have to be some kind of assumption about the uniformity of the remaining computations, but often I have a simple loop for(i = 0; i &lt; 1e6; i++) </p> <p> where I am doing the same thing in each iteration, so if I am 50% complete after 10 minutes, I expect to be done in about another 10 minutes. </p> <p> Of course this is not the case with all loops, but if the thing being timed is known not to exhibit that behavior, then this shouldn't be used. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/2985 Trac 1.4.3 Steven Watanabe Mon, 04 May 2009 20:06:32 GMT <link>https://svn.boost.org/trac10/ticket/2985#comment:1 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/2985#comment:1</guid> <description> <p> What progress bar are you referring to? </p> </description> <category>Ticket</category> </item> <item> <author>David Doria <daviddoria@…></author> <pubDate>Mon, 04 May 2009 20:08:46 GMT</pubDate> <title/> <link>https://svn.boost.org/trac10/ticket/2985#comment:2 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/2985#comment:2</guid> <description> <p> This one: </p> <p> boost::progress_display show_progress(<a class="missing wiki">NumIters</a>); for(unsigned int i = 0; i &lt; <a class="missing wiki">NumIters</a>; i++) { <em>Do something ++show_progress; } </em></p> <p> ~Dave </p> </description> <category>Ticket</category> </item> </channel> </rss>