{-# language FlexibleContexts, TypeFamilies #-}
{-# language DeriveFunctor, DeriveFoldable #-}
-----------------------------------------------------------------------------
-- |
-- Copyright : (C) 2016 Marco Zocca
-- License : GPL-3 (see LICENSE)
-- Maintainer : zocca.marco gmail
-- Stability : provisional
-- Portability : portable
--
-----------------------------------------------------------------------------
module Data.Sparse.SpVector where
import Control.Exception
import Control.Monad.Catch (MonadThrow (..))
import Control.Exception.Common
import GHC.Exts
import Data.Sparse.Utils
import Data.Sparse.Types
import Data.Sparse.Internal.IntM
import Numeric.Eps
import Numeric.LinearAlgebra.Class
import Data.Complex
import Data.Maybe
import Text.Printf
import qualified Data.IntMap.Strict as IM
import qualified Data.Foldable as F
import qualified Data.Vector as V
-- * Sparse Vector
data SpVector a = SV { svDim :: {-# UNPACK #-} !Int ,
svData :: !(IntM a)} deriving (Eq, Functor, Foldable)
instance Show a => Show (SpVector a) where
show (SV d x) = "SV (" ++ show d ++ ") "++ show (toList x)
-- | SpVector density
spySV :: Fractional b => SpVector a -> b
spySV s = fromIntegral (size (dat s)) / fromIntegral (dim s)
-- | Number of nonzeros
nzSV :: SpVector a -> Int
nzSV sv = size (dat sv)
sizeStrSV :: SpVector a -> String
sizeStrSV sv = unwords ["(",show (dim sv),"elements ) , ",show (nzSV sv),"NZ ( density", sys,")"] where
sy = spy sv :: Double
sys = printf "%1.3f %%" (sy * 100) :: String
instance Set SpVector where
liftU2 f2 (SV n1 x1) (SV n2 x2) = SV (max n1 n2) (liftU2 f2 x1 x2)
liftI2 f2 (SV n1 x1) (SV n2 x2) = SV (max n1 n2) (liftI2 f2 x1 x2)
foldlWithKeySV, foldlWithKeySV' :: (a -> IM.Key -> b -> a) -> a -> SpVector b -> a
foldlWithKeySV f d v = foldlWithKey f d (svData v)
foldlWithKeySV' f d v = foldlWithKey' f d (svData v)
-- | 'SpVector's form a vector space because they can be multiplied by a scalar
-- | 'SpVector's are finite-dimensional vectors
instance FiniteDim (SpVector a) where
type FDSize (SpVector a) = Int
dim = svDim
instance HasData (SpVector a) where
type HDData (SpVector a) = IntM a
dat = svData
nnz (SV _ x) = length x
instance Sparse (SpVector a) where
spy = spySV
-- | 'SpVector's are sparse containers too, i.e. any specific component may be missing (so it is assumed to be 0)
instance Elt a => SpContainer (SpVector a) where
type ScIx (SpVector a) = Int
type ScElem (SpVector a) = a
scInsert = insertSpVector
scLookup v i = lookupSV i v
scToList = toListSV
v @@ i = lookupDenseSV i v
-- instance (Elt e, RealFloat e) => SparseVector SpVector e where
-- type SpvIx SpVector = Int
-- svFromList = fromListSV
-- svFromListDense = fromListDenseSV
-- svConcat = foldr concatSV zero
instance AdditiveGroup a => AdditiveGroup (SpVector a) where
zeroV = SV 0 zeroV
(^+^) = liftU2 (^+^)
negateV v = fmap negateV v
instance VectorSpace a => VectorSpace (SpVector a) where
type Scalar (SpVector a) = Scalar a
n .* v = fmap (n .*) v
instance InnerSpace a => InnerSpace (SpVector a) where
v <.> w = sum $ liftI2 (<.>) v w
instance (Normed a, Magnitude a ~ RealScalar a, RealScalar a ~ Scalar a) => Normed (SpVector a) where
type Magnitude (SpVector a) = Magnitude a
type RealScalar (SpVector a) = RealScalar a
norm1 = sum . fmap norm1
norm2Sq = sum . fmap norm2Sq
normP p v = (sum (fmap (\x -> normP p x ** p) v)) ** (1 / p)
normalize p v = v ./ normP p v
normalize2 v = v ./ norm2 v
normalize2' v = v ./ norm2' v
norm2 c = sqrt (norm2Sq c)
norm2' c = sqrt (norm2Sq c)
dotS :: InnerSpace t => SpVector t -> SpVector t -> Scalar (IntM t)
(SV m a) `dotS` (SV n b)
| n == m = a <.> b
| otherwise = error $ unwords ["<.> : Incompatible dimensions:", show m, show n]
-- dotSSafe :: (MonadThrow m, InnerSpace (IM.IntMap t)) =>
-- SpVector t -> SpVector t -> m (Scalar (IM.IntMap t))
dotSSafe :: (InnerSpace t, MonadThrow m) =>
SpVector t -> SpVector t -> m (Scalar (IntM t))
dotSSafe (SV m a) (SV n b)
| n == m = return $ a <.> b
| otherwise = throwM (DotSizeMismatch m n)
-- ** Creation
-- | Empty sparse vector (length n, no entries)
zeroSV :: Int -> SpVector a
zeroSV n = SV n empty
-- | Singleton sparse vector (length 1)
singletonSV :: a -> SpVector a
singletonSV x = SV 1 (singleton 0 x)
-- | Canonical basis vector in R^n
ei :: Num a => Int -> IM.Key -> SpVector a
ei n i = SV n (insert (i - 1) 1 empty)
-- | Sparse vector from an association list while discarding all zero entries
mkSpVector :: Epsilon a => Int -> IM.IntMap a -> SpVector a
mkSpVector d im = SV d $ IntM $ IM.filterWithKey (\k v -> isNz v && inBounds0 d k) im
-- ", don't filter zero elements
mkSpVector1 :: Int -> IM.IntMap a -> SpVector a
mkSpVector1 d ll = SV d $ IntM $ IM.filterWithKey (\ k _ -> inBounds0 d k) ll
-- | Dense real SpVector (monomorphic Double)
mkSpVR :: Int -> [Double] -> SpVector Double
mkSpVR d ll = SV d $ mkIm ll
-- | Dense complex SpVector (monomorphic Double)
mkSpVC :: Int -> [Complex Double] -> SpVector (Complex Double)
mkSpVC d ll = SV d $ mkImC ll
-- | Create new sparse vector, assumin 0-based, contiguous indexing
fromListDenseSV :: Int -> [a] -> SpVector a
fromListDenseSV d ll = SV d (fromList $ indexed (take d ll))
-- | Map a function over a range of indices and filter the result (indices and values) to fit in a `n`-long SpVector
spVectorDenseIx :: Epsilon a => (Int -> a) -> UB -> [Int] -> SpVector a
spVectorDenseIx f n ix =
fromListSV n $ filter q $ zip ix $ map f ix where
q (i, v) = inBounds0 n i && isNz v
-- | ", using just the integer bounds of the interval
spVectorDenseLoHi :: Epsilon a => (Int -> a) -> UB -> Int -> Int -> SpVector a
spVectorDenseLoHi f n lo hi = spVectorDenseIx f n [lo .. hi]
-- | one-hot encoding : `oneHotSV n k` produces a SpVector of length n having 1 at the k-th position
oneHotSVU :: Num a => Int -> IxRow -> SpVector a
oneHotSVU n k = SV n (singleton k 1)
oneHotSV :: Num a => Int -> IxRow -> SpVector a
oneHotSV n k |inBounds0 n k = oneHotSVU n k
|otherwise = error "`oneHotSV n k` must satisfy 0 <= k <= n"
-- | DENSE vector of `1`s
onesSV :: Num a => Int -> SpVector a
onesSV d = constv d 1
-- | DENSE vector of `0`s
zerosSV :: Num a => Int -> SpVector a
zerosSV d = constv d 0
-- | DENSE vector with constant elements
constv :: Int -> a -> SpVector a
constv d x = SV d $ fromList $ indexed $ replicate d x
-- *** Vector-related
-- | Populate a SpVector with the contents of a Vector.
fromVector :: V.Vector a -> SpVector a
fromVector qv = V.ifoldl' ins (zeroSV n) qv where
n = V.length qv
ins vv i x = insertSpVector i x vv
-- | Populate a Vector with the entries of a SpVector, discarding the indices (NB: loses sparsity information).
toVector :: SpVector a -> V.Vector a
toVector = V.fromList . snd . unzip . toListSV
-- | Populate a Vector with the entries of a SpVector, replacing the missing entries with 0
toVectorDense :: Num a => SpVector a -> V.Vector a
toVectorDense = V.fromList . toDenseListSV
-- ** Element insertion
-- |insert element `x` at index `i` in a preexisting SpVector; discards out-of-bounds entries
insertSpVector :: IM.Key -> a -> SpVector a -> SpVector a
insertSpVector i x (SV d xim) | inBounds0 d i = SV d (insert i x xim)
insertSpVectorSafe :: MonadThrow m => Int -> a -> SpVector a -> m (SpVector a)
insertSpVectorSafe i x (SV d xim)
| inBounds0 d i = return $ SV d (insert i x xim)
| otherwise = throwM (OOBIxError "insertSpVector" i)
-- ** fromList
-- | Create new SpVector using data from a Foldable (e.g. a list) in (index, value) form
fromListSV :: Foldable t => Int -> t (Int, a) -> SpVector a
fromListSV d iix = SV d $ foldr insf empty iix where
insf (i, x) xacc | inBounds0 d i = insert i x xacc
| otherwise = xacc
createv :: [a] -> SpVector a
createv ll = fromListSV n $ indexed ll where n = length ll
-- | Create a /dense/ SpVector from a list of Double's
vr :: [Double] -> SpVector Double
vr = createv
-- | Create a /dense/ SpVector from a list of Complex Double's
vc :: [Complex Double] -> SpVector (Complex Double)
vc = createv
-- ** toList
-- | Populate a list with SpVector contents
toListSV :: SpVector a -> [(Int, a)]
toListSV sv = toList (dat sv)
-- |To dense list (default = 0)
toDenseListSV :: Num b => SpVector b -> [b]
toDenseListSV (SV d (IntM im)) = fmap (\i -> IM.findWithDefault 0 i im) [0 .. d-1]
-- | Indexed fold over SpVector
ifoldSV :: (IM.Key -> a -> b -> b) -> b -> SpVector a -> b
ifoldSV f e (SV _ (IntM im)) = IM.foldrWithKey f e im
-- ** Lookup
-- | Lookup an index in a SpVector
lookupSV :: IM.Key -> SpVector a -> Maybe a
lookupSV i (SV _ (IntM im)) = IM.lookup i im
-- | Lookup an index, return a default value if lookup fails
lookupDefaultSV :: a -> IM.Key -> SpVector a -> a
lookupDefaultSV def i (SV _ (IntM im)) = IM.findWithDefault def i im
-- |Lookup an index in a SpVector, returns 0 if lookup fails
lookupDenseSV :: Num a => IM.Key -> SpVector a -> a
lookupDenseSV = lookupDefaultSV 0
-- ** Sub-vectors
-- | Tail elements
tailSV :: SpVector a -> SpVector a
tailSV (SV n (IntM sv)) = SV (n-1) $ IntM ta where
ta = IM.mapKeys (\i -> i - 1) $ IM.delete 0 sv
-- | Head element
headSV :: Num a => SpVector a -> a
headSV (SV _ (IntM im)) = fromMaybe 0 (IM.lookup 0 im)
-- | Keep the first n components of the SpVector (like `take` for lists)
takeSV, dropSV :: Int -> SpVector a -> SpVector a
takeSV n (SV _ sv) = SV n $ filterWithKey (\i _ -> i < n) sv
-- | Discard the first n components of the SpVector and rebalance the keys (like `drop` for lists)
dropSV n (SV n0 (IntM sv)) = SV (n0 - n) $ IntM $ IM.mapKeys (subtract n) $ IM.filterWithKey (\i _ -> i >= n) sv
-- | Keep a range of entries
rangeSV :: (IM.Key, IM.Key) -> SpVector a -> SpVector a
rangeSV (rmin, rmax) (SV n (IntM sv))
| len > 0 && len <= n = SV len $ IntM sv'
| otherwise = error $ unwords ["rangeSV : invalid bounds", show (rmin, rmax) ] where
len = rmax - rmin
sv' = IM.mapKeys (subtract rmin) $ IM.filterWithKey (\i _ -> i >= rmin && i <= rmax) sv
-- | Concatenate two sparse vectors
concatSV :: SpVector a -> SpVector a -> SpVector a
concatSV (SV n1 (IntM s1)) (SV n2 (IntM s2)) = SV (n1+n2) $ IntM (IM.union s1 s2') where
s2' = IM.mapKeys (+ n1) s2
-- | Filter
filterSV :: (a -> Bool) -> SpVector a -> SpVector a
filterSV q sv = SV (dim sv) $ IntM (IM.filter q (unIM $ dat sv))
-- | Indexed filter
ifilterSV :: (Int -> a -> Bool) -> SpVector a -> SpVector a
ifilterSV q sv = SV (dim sv) (filterWithKey q (dat sv))
-- * Sparsify : remove almost-0 elements (|x| < eps)
-- | Sparsify an SpVector
sparsifySV :: Epsilon a => SpVector a -> SpVector a
sparsifySV = filterSV isNz
-- * Orthogonal vector
-- | Generate an arbitrary (not random) vector `u` such that `v dot u = 0`
orthogonalSV :: (Scalar (SpVector t) ~ t, InnerSpace (SpVector t), Fractional t) =>
SpVector t -> SpVector t
orthogonalSV v = u where
(h, t) = (headSV v, tailSV v)
n = dim v
v2 = onesSV (n - 1)
yn = singletonSV $ - (v2 `dot` t)/h
u = concatSV yn v2