diff options
Diffstat (limited to 'packages/hmatrix/examples/error.hs')
-rw-r--r-- | packages/hmatrix/examples/error.hs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/hmatrix/examples/error.hs b/packages/hmatrix/examples/error.hs deleted file mode 100644 index 5efae7c..0000000 --- a/packages/hmatrix/examples/error.hs +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | import Numeric.GSL | ||
2 | import Numeric.GSL.Special | ||
3 | import Numeric.LinearAlgebra | ||
4 | import Prelude hiding (catch) | ||
5 | import Control.Exception | ||
6 | |||
7 | test x = catch | ||
8 | (print x) | ||
9 | (\e -> putStrLn $ "captured ["++ show (e :: SomeException) ++"]") | ||
10 | |||
11 | main = do | ||
12 | setErrorHandlerOff | ||
13 | |||
14 | test $ log_e (-1) | ||
15 | test $ 5 + (fst.exp_e) 1000 | ||
16 | test $ bessel_zero_Jnu_e (-0.3) 2 | ||
17 | |||
18 | test $ (linearSolve 0 4 :: Matrix Double) | ||
19 | test $ (linearSolve 5 (sqrt (-1)) :: Matrix Double) | ||
20 | |||
21 | putStrLn "Bye" \ No newline at end of file | ||