ocaml-bench / sandmark

A benchmark suite for the OCaml compiler
The Unlicense
82 stars 40 forks source link

Update mergesort with a faster implementation #356

Closed kayceesrk closed 2 years ago

kayceesrk commented 2 years ago

A simpler version of mergesort is available here: https://github.com/kayceesrk/ocaml5-tutorial/pull/4. Consider replacing the existing mergesort implementation with this.

moazzammoriani commented 2 years ago

I was discussing this @Sudha247 just yesterday. In fact, I was only just about to start working on an implementation of mergesort before I saw this. Your existing version will be quite useful.