QuantumSavory.jl
QuantumSavory.jl copied to clipboard
Tags should use a fast priority queue that resolves ties in FIFO order
DataStructures.PriorityQueue does not properly resolve ties (see https://github.com/JuliaCollections/DataStructures.jl/issues/498 ), hence we are using a slow simple Vector implementation currently (since #69 ). Implementing (and benchmarking) a potential new FIFO-tie-breaking priority queue might greatly increase tagging performance.
related to #80