Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
get_proof_positions: call sort less often
Every call to sort takes a big chunk of CPU time as the vectors can get really long, and as std's merge sort is unstable. We aren't supposed to get the vector unsorted while working inside a row, so we can call sort only after finishing a row.
- Loading branch information