You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should be able to get a big speed gain in GenericPriorityQueue if number comparison JITs into a single CMP instruction (the current method using Comparison<TPriority> does not).
In fact if that works, I might be able to move the generics over to FastPriorityQueue and get rid of GenericPriorityQueue altogether.
The text was updated successfully, but these errors were encountered:
Should be able to get a big speed gain in
GenericPriorityQueue
if number comparison JITs into a singleCMP
instruction (the current method usingComparison<TPriority>
does not).In fact if that works, I might be able to move the generics over to
FastPriorityQueue
and get rid ofGenericPriorityQueue
altogether.The text was updated successfully, but these errors were encountered: