re-internal.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 23 Nov 2012 14:08:31 +0000
changeset 71 7717f20f0504
parent 49 d2c6852ca8da
permissions -rw-r--r--
updated


// measures the time a function needs
def time_needed[T](i: Int, code: => T) = {
  val start = System.nanoTime()
  for (j <- 1 to i) code
  val end = System.nanoTime()
  (end - start)/(i * 1.0e9)
}
 

for (i <- 1 to 10001 by 300) {
  val re = ("((a?){" + i + "})(a{" + i + "})")
  println(i + " " + "%.5f".format(time_needed(1, ("a" * i).matches(re))))  
}