HaskellForMaths 0.4.7 → 0.4.8
raw patch · 4 files changed
+4/−4 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- HaskellForMaths.cabal +1/−1
- Math/Algebras/AffinePlane.hs +1/−1
- Math/Algebras/GroupAlgebra.hs +1/−1
- Math/QuantumAlgebra/QuantumPlane.hs +1/−1
HaskellForMaths.cabal view
@@ -1,5 +1,5 @@ Name: HaskellForMaths - Version: 0.4.7 + Version: 0.4.8 Category: Math Description: A library of maths code in the areas of combinatorics, group theory, commutative algebra, and non-commutative algebra. The library is mainly intended as an educational resource, but does have efficient implementations of several fundamental algorithms. Synopsis: Combinatorics, group theory, commutative algebra, non-commutative algebra
Math/Algebras/AffinePlane.hs view
@@ -1,6 +1,6 @@ -- Copyright (c) 2010-2015, David Amos. All rights reserved. -{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances #-}+{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, FlexibleContexts #-} -- |A module defining the affine plane and its symmetries module Math.Algebras.AffinePlane where
Math/Algebras/GroupAlgebra.hs view
@@ -1,6 +1,6 @@ -- Copyright (c) 2010-2015, David Amos. All rights reserved. -{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, TypeSynonymInstances #-}+{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, FlexibleContexts, TypeSynonymInstances #-} -- ScopedTypeVariables -- |A module for doing arithmetic in the group algebra.
Math/QuantumAlgebra/QuantumPlane.hs view
@@ -1,6 +1,6 @@ -- Copyright (c) 2010, David Amos. All rights reserved. -{-# LANGUAGE TypeSynonymInstances, FlexibleInstances, MultiParamTypeClasses, NoMonomorphismRestriction #-}+{-# LANGUAGE TypeSynonymInstances, FlexibleInstances, FlexibleContexts, MultiParamTypeClasses, NoMonomorphismRestriction #-} -- |A module defining the quantum plane and its symmetries module Math.QuantumAlgebra.QuantumPlane where