summaryrefslogtreecommitdiff
path: root/test/benchmarking/AVL-insert.scala
Commit message (Collapse)AuthorAgeFilesLines
* Remove further references to forkjoinJason Zaugg2015-07-151-67/+0
| | | | | | | | | | | | | | | | | Use j.u.c.Forkjoin directly in active and disabled tests Remove bitrotted benchmarks code I was going to update these to use `java.util.concurrent.ForkJoin` directly, instead of our deprecated stubs. But most of them don't compile anymore (e.g. scala.testing.Benchmark has been removed, ClassTag imports missing). While I'm all for benchmarks, we should have large swathes of code checked in that isn't at compiled and run automatically. I'm happy to help someone resurrect these in a suitable form.
* Add mutable tree sets to the standard library.aleksandar2012-01-121-0/+67
This implementation is based on AVL trees. The current implementation is contributed by Lucien Pereira. Fixes #4147.