summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/parallel-collections/ParallelVectorCheck.scala
blob: a2b6cef96dae2db2824ba119410d628aee7a4deb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package scala.collection
package parallel.immutable



import org.scalacheck._
import org.scalacheck.Gen
import org.scalacheck.Gen._
import org.scalacheck.Prop._
import org.scalacheck.Properties
import org.scalacheck.Arbitrary._

import scala.collection._
import scala.collection.parallel.ops._


import immutable.Vector
import immutable.VectorBuilder




abstract class ParallelVectorCheck[T](tp: String) extends collection.parallel.ParallelSeqCheck[T]("ParVector[" + tp + "]") {
  // ForkJoinTasks.defaultForkJoinPool.setMaximumPoolSize(Runtime.getRuntime.availableProcessors * 2)
  // ForkJoinTasks.defaultForkJoinPool.setParallelism(Runtime.getRuntime.availableProcessors * 2)

  type CollType = ParVector[T]

  def isCheckingViews = false

  def hasStrictOrder = true

  def ofSize(vals: Seq[Gen[T]], sz: Int) = {
    val vb = new immutable.VectorBuilder[T]()
    val gen = vals(rnd.nextInt(vals.size))
    for (i <- 0 until sz) vb += sample(gen)
    vb.result
  }

  def fromSeq(a: Seq[T]) = {
    val pa = ParVector.newCombiner[T]
    for (elem <- a.toList) pa += elem
    pa.result
  }

}



object IntParallelVectorCheck extends ParallelVectorCheck[Int]("Int") with IntSeqOperators with IntValues {
  override def instances(vals: Seq[Gen[Int]]) = oneOf(super.instances(vals), sized { sz =>
    (0 until sz).toArray.toSeq
  }, sized { sz =>
    (-sz until 0).toArray.toSeq
  })
}