summaryrefslogtreecommitdiff
path: root/test/benchmarking/TreeSetRemove.scala
diff options
context:
space:
mode:
authorLucien Pereira <pereira.lucien@laposte.net>2012-01-28 14:43:45 +0100
committerLucien Pereira <pereira.lucien@laposte.net>2012-01-28 14:47:35 +0100
commit2616dd6348a87d3d9cd306d3ab76d039c15d10c4 (patch)
treeda5ad09e91453cccf06db47143c3760e935f1741 /test/benchmarking/TreeSetRemove.scala
parent1c963535daf42a636030f6e905c7c4529744e0c3 (diff)
downloadscala-2616dd6348a87d3d9cd306d3ab76d039c15d10c4.tar.gz
scala-2616dd6348a87d3d9cd306d3ab76d039c15d10c4.tar.bz2
scala-2616dd6348a87d3d9cd306d3ab76d039c15d10c4.zip
Added benchmarking files, in order to easily compare various
implementations performances.
Diffstat (limited to 'test/benchmarking/TreeSetRemove.scala')
-rw-r--r--test/benchmarking/TreeSetRemove.scala66
1 files changed, 66 insertions, 0 deletions
diff --git a/test/benchmarking/TreeSetRemove.scala b/test/benchmarking/TreeSetRemove.scala
new file mode 100644
index 0000000000..68c07ce70a
--- /dev/null
+++ b/test/benchmarking/TreeSetRemove.scala
@@ -0,0 +1,66 @@
+
+object TreeSetRemove {
+
+ def main(args: Array[String]): Unit = {
+ val n = 500000
+ new JavaUtilTS(n).main(args)
+ new MutableTS(n).main(args)
+ new ImmutableTS(n).main(args)
+ }
+}
+
+class Dummy(val a: Int) extends math.Ordered[Dummy] {
+ def compare(other: Dummy) = this.a - other.a
+
+ override def toString = a.toString
+ }
+
+
+class JavaUtilTS(val length: Int) extends testing.Benchmark {
+ var data: Array[Dummy] = (0 until length) map { a => new Dummy(a) } toArray
+ var t: java.util.TreeSet[Dummy] = null
+
+ def run = {
+ t = new java.util.TreeSet[Dummy]()
+ data foreach { a => t add a }
+
+ var i = 0
+ while (i < length) {
+ val elem = data(i)
+ t remove elem
+ i += 1
+ }
+ }
+}
+
+class MutableTS(val length: Int) extends testing.Benchmark {
+ var data: Array[Dummy] = (0 until length) map { a => new Dummy(a) } toArray
+ var t: collection.mutable.TreeSet[Dummy] = null
+
+ def run = {
+ t = collection.mutable.TreeSet[Dummy](data: _*)
+
+ var i = 0
+ while (i < length) {
+ val elem = data(i)
+ t -= elem
+ i += 1
+ }
+ }
+}
+
+class ImmutableTS(val length: Int) extends testing.Benchmark {
+ var data: Array[Dummy] = (0 until length) map { a => new Dummy(a) } toArray
+ var t: collection.immutable.TreeSet[Dummy] = null
+
+ def run = {
+ t = collection.immutable.TreeSet[Dummy](data: _*)
+
+ var i = 0
+ while (i < length) {
+ val elem = data(i)
+ t -= elem
+ i += 1
+ }
+ }
+}