, 1 min read

SyncSort Sort is Not Stable

A colleague of mine noticed some strange behaviours in his programs. It was later discovered that this is due to SyncSort not conducting a stable sort. Stable sort means that the sequence of elements in input is not changed if there is no strict need to change them.

Unfortunately, the documentation of SyncSort apparently does not contain a hint on that.