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
{{ message }}
This repository was archived by the owner on May 29, 2023. It is now read-only.
Currently, the sort function in Data.Algebra.Array is roughly equivalent to an insertion sort. This leads to a lot of duplicated comparisons. Ideally, this could be avoided by implementing something like an in-place heap sort. Open to suggestions, though :)
Currently, the
sortfunction inData.Algebra.Arrayis roughly equivalent to an insertion sort. This leads to a lot of duplicated comparisons. Ideally, this could be avoided by implementing something like an in-place heap sort. Open to suggestions, though :)