We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems like the ProgressUnknown display is sometimes broken when the number of digits in the counter increases.
ProgressUnknown
For example:
using ProgressMeter prog = ProgressUnknown("Working:") while true ProgressMeter.next!(prog) rand(1:2*10^8) == 1 && break end ProgressMeter.finish!(prog)
outputs
Working: 263805411 me: 0 Time: 0:00:13
It doesn't always happen — e.g. running the code above a second time gives
Working: 93336116 Time: 0:00:04
which looks okay.
The text was updated successfully, but these errors were encountered:
fixed by #274
Sorry, something went wrong.
No branches or pull requests
It seems like the
ProgressUnknown
display is sometimes broken when the number of digits in the counter increases.For example:
outputs
It doesn't always happen — e.g. running the code above a second time gives
which looks okay.
The text was updated successfully, but these errors were encountered: