packages feed

vector-space 0.10 → 0.10.1

raw patch · 2 files changed

+8/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

src/Data/LinearMap.hs view
@@ -1,4 +1,5 @@-{-# LANGUAGE CPP, TypeOperators, FlexibleContexts, TypeFamilies, GeneralizedNewtypeDeriving, StandaloneDeriving #-}+{-# LANGUAGE CPP, TypeOperators, FlexibleContexts, TypeFamilies+  , GeneralizedNewtypeDeriving, StandaloneDeriving, UndecidableInstances #-} {-# OPTIONS_GHC -Wall -fno-warn-orphans #-} ---------------------------------------------------------------------- -- |@@ -54,6 +55,11 @@          VectorSpace (u :-* v) where   type Scalar (u :-* v) = Scalar v   (*^) s = (inLMap.liftMS.fmap) (s *^)++-- In GHC 7.10:+-- Constraint is no smaller than the instance head+-- in the constraint: HasTrie (Basis u)+-- (Use UndecidableInstances to permit this)  firstL :: ( HasBasis u, HasBasis u', HasBasis v           , HasTrie (Basis u), HasTrie (Basis v) 
vector-space.cabal view
@@ -1,5 +1,5 @@ Name:                vector-space-Version:             0.10+Version:             0.10.1 Cabal-Version:       >= 1.6 Synopsis:            Vector & affine spaces, linear maps, and derivatives Category:            math