summaryrefslogtreecommitdiff
path: root/test/files/run/spec-matrix.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/spec-matrix.scala')
-rw-r--r--test/files/run/spec-matrix.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/run/spec-matrix.scala b/test/files/run/spec-matrix.scala
index 81e3eaf212..2acf6204ff 100644
--- a/test/files/run/spec-matrix.scala
+++ b/test/files/run/spec-matrix.scala
@@ -3,7 +3,7 @@
class Matrix[@specialized A: ClassManifest](val rows: Int, val cols: Int) {
private val arr: Array[Array[A]] = new Array[Array[A]](rows, cols)
-
+
def apply(i: Int, j: Int): A = {
if (i < 0 || i >= rows || j < 0 || j >= cols)
throw new NoSuchElementException("Indexes out of bounds: " + (i, j))
@@ -36,7 +36,7 @@ object Test {
def randomMatrix(n: Int, m: Int) = {
val r = new util.Random(10)
- val x = new Matrix[Int](n, m)
+ val x = new Matrix[Int](n, m)
for (i <- 0 until n; j <- 0 until m)
x(i, j) = r.nextInt
x
@@ -47,7 +47,7 @@ object Test {
val p = new Matrix[T](m.rows, n.cols)
import num._
- for (i <- 0 until m.rows)
+ for (i <- 0 until m.rows)
for (j <- 0 until n.cols) {
var sum = num.zero
for (k <- 0 until n.rows)
@@ -59,7 +59,7 @@ object Test {
def mult(m: Matrix[Int], n: Matrix[Int]) {
val p = new Matrix[Int](m.rows, n.cols)
- for (i <- 0 until m.rows)
+ for (i <- 0 until m.rows)
for (j <- 0 until n.cols) {
var sum = 0
for (k <- 0 until n.rows)