blas-0.5: tests/HermMatrix.hs
{-# OPTIONS -fglasgow-exts -fno-excess-precision -cpp #-}
-----------------------------------------------------------------------------
-- |
-- Copyright : Copyright (c) 2008, Patrick Perry <patperry@stanford.edu>
-- License : BSD3
-- Maintainer : Patrick Perry <patperry@stanford.edu>
-- Stability : experimental
--
import Data.AEq
import Numeric.IEEE
import System.Environment ( getArgs )
import Test.QuickCheck.Parallel hiding ( vector )
import qualified Test.QuickCheck as QC
import qualified BLAS.Elem as E
import Data.Complex ( Complex(..) )
import Data.Matrix.Herm.Dense
import Data.Matrix.Dense
import Data.Vector.Dense
import Test.QuickCheck.Complex
import Test.QuickCheck.Matrix.Herm.Dense
#ifdef COMPLEX
field = "Complex Double"
type E = Complex Double
#else
field = "Double"
type E = Double
#endif
type V = Vector Int E
type M = Matrix (Int,Int) E
type HM = Herm Matrix (Int,Int) E
instance (Arbitrary e, RealFloat e) => Arbitrary (Complex e) where
arbitrary = arbitrary >>= \(TestComplex x) -> return x
coarbitrary = coarbitrary . TestComplex
prop_herm_apply (HermMatrixMV (h :: HM) a x) =
h <*> x ~== a <*> x
prop_herm_sapply k (HermMatrixMV (h :: HM) a x) =
sapply k h x ~== sapply k a x
prop_herm_herm_apply (HermMatrixMV (h :: HM) a x) =
herm h <*> x ~== h <*> x
prop_herm_applyMat (HermMatrixMM (h :: HM) a b) =
h <**> b ~== a <**> b
prop_herm_sapplyMat k (HermMatrixMM (h :: HM) a b) =
sapplyMat k h b ~== sapplyMat k a b
prop_herm_herm_applyMat (HermMatrixMM (h :: HM) _ b) =
herm h <**> b ~== h <**> b
properties =
[ ("herm apply" , pDet prop_herm_apply)
, ("herm sapply" , pDet prop_herm_sapply)
, ("herm herm apply" , pDet prop_herm_herm_apply)
, ("herm applyMat" , pDet prop_herm_applyMat)
, ("herm sapplyMat" , pDet prop_herm_sapplyMat)
, ("herm herm applyMat" , pDet prop_herm_herm_applyMat)
]
main = do
args <- getArgs
n <- case args of
(a:_) -> readIO a
_ -> return 1
main' n
main' n = do
putStrLn $ "Running tests for " ++ field
pRun n 400 properties