The attached code gives different results in one run and another in my computer. Only merge function is tested.
Versions:
sortednp 0.2.0
numpy 1.16.2
python 3.6.7
I could not replicate the problem with arrays created directly from lists. It might be caused by the slice but sadly I found my level too low to follow the sortednp source code to narrow down the scope of the issue myself.
tl;dr The issue is caused by incorrect reference count handling in connection with non-c-contiguous (array.flags) arrays. As a quick fix, warp the array with a = numpy.array(a). I will work on a proper fix today.
long version
I could reproduce the underlying issue with a minimal script:
When executed, this script prints [0 1 0 1] which is not sorted. Looking deeper into the issue reveals that the values from the second array are garbage. It turns out the issue is buried in these two lines.
My initial understanding of the reference count of PyArray_FROM_OF was not complete. I assumed that the method simply increments the reference count to the initial array. Since there is always the reference from the caller, I assumed that I can decrement the reference count right away and be safe to exit on error.
However, with non-c-contiguous or not aligned arrays, PyArray_FROM_OF returns a new object with a single reference to it. Deceasing the reference in that case deletes the object. The actual merge algorithm was then reading random values from a memory location that was already freed.
The solution is to decrease the reference count only once the merge/intersect is done or an error occurred.
I guess that the origin of the issue is the same, but just to point it out, I find problems with "intersect" function as well. a = numpy.array(a) works to fix the issues with merge and intersect.