Hi, a question about performance. Reading your blogpost http://ochafik.com/blog/?p=806
you have slow code as such:
for (iteration <- 0 until iterations) {
for (i <- 0 until n) {
}
}
Is the performance affected if you change it to:
for (iteration <- 0 until iterations; i <- 0 until n) {
...
}