[Haskell-cafe] Strange GC timings

2011-11-12 Thread Artyom Kazak
Hello! The following program executes 1.5 seconds on my computer: ---CODE BEGIN- module Main where import Data.Array.IArray main = print (answers ! 100) nextAns :: (Int, Int, Float) - (Int, Int, Float) nextAns (a, n, r) = if

Re: [Haskell-cafe] Strange GC timings

2011-11-12 Thread Daniel Fischer
On Saturday 12 November 2011, 20:36:04, Artyom Kazak wrote: Hello! The following program executes 1.5 seconds on my computer: ---CODE BEGIN- module Main where import Data.Array.IArray main = print (answers ! 100)