-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
Bug in DoublePriorityQueue.peek_min() #42
Comments
Are you able to reproduce the issue with a minimal example? |
use priority_queue::{DoublePriorityQueue, PriorityQueue}; fn main() { You can try this code. |
@testforvln Can I add your code, modified, to the test suite of DoublePriorityQueue? |
Of course, use the code as you wish. |
Thanks for your contribution. Version 1.3.1 has been released, that includes the fix for this bug |
Great! It's my pleasure to make subtle contribution to your project and the rust ecosystem. |
After thounds of loops using change_priority() functions, I met with result of peek_min() function not returning the min priority item.
Has anyone come across this situation?
The text was updated successfully, but these errors were encountered: