diff options
Diffstat (limited to 'lib/Data/Packed/Internal/Matrix.hs')
-rw-r--r-- | lib/Data/Packed/Internal/Matrix.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Data/Packed/Internal/Matrix.hs b/lib/Data/Packed/Internal/Matrix.hs index b8ed18d..367c189 100644 --- a/lib/Data/Packed/Internal/Matrix.hs +++ b/lib/Data/Packed/Internal/Matrix.hs | |||
@@ -47,6 +47,7 @@ import Data.Complex(Complex) | |||
47 | import Foreign.C.Types | 47 | import Foreign.C.Types |
48 | import Foreign.C.String(newCString) | 48 | import Foreign.C.String(newCString) |
49 | import System.IO.Unsafe(unsafePerformIO) | 49 | import System.IO.Unsafe(unsafePerformIO) |
50 | import Control.DeepSeq | ||
50 | 51 | ||
51 | ----------------------------------------------------------------- | 52 | ----------------------------------------------------------------- |
52 | 53 | ||
@@ -459,3 +460,13 @@ size m = (rows m, cols m) | |||
459 | 460 | ||
460 | shSize m = "(" ++ show (rows m) ++"><"++ show (cols m)++")" | 461 | shSize m = "(" ++ show (rows m) ++"><"++ show (cols m)++")" |
461 | 462 | ||
463 | ---------------------------------------------------------------------- | ||
464 | |||
465 | instance (Storable t, NFData t) => NFData (Matrix t) | ||
466 | where | ||
467 | rnf m | d > 0 = rnf (v @> 0) | ||
468 | | otherwise = () | ||
469 | where | ||
470 | d = dim v | ||
471 | v = xdat m | ||
472 | |||