packages feed

poly 0.4.0.0 → 0.5.1.0

raw patch · 43 files changed

Files

README.md view
@@ -1,20 +1,30 @@-# poly [![Build Status](https://travis-ci.org/Bodigrim/poly.svg)](https://travis-ci.org/Bodigrim/poly) [![Hackage](http://img.shields.io/hackage/v/poly.svg)](https://hackage.haskell.org/package/poly) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/poly/badge)](https://matrix.hackage.haskell.org/package/poly) [![Stackage LTS](http://stackage.org/package/poly/badge/lts)](http://stackage.org/lts/package/poly) [![Stackage Nightly](http://stackage.org/package/poly/badge/nightly)](http://stackage.org/nightly/package/poly)--+# poly [![Hackage](https://img.shields.io/hackage/v/poly.svg)](https://hackage.haskell.org/package/poly) [![Stackage LTS](https://www.stackage.org/package/poly/badge/lts)](https://www.stackage.org/lts/package/poly) [![Stackage Nightly](https://www.stackage.org/package/poly/badge/nightly)](https://www.stackage.org/nightly/package/poly) [![Coverage Status](https://coveralls.io/repos/github/Bodigrim/poly/badge.svg)](https://coveralls.io/github/Bodigrim/poly) -Haskell library for univariate polynomials, backed by `Vector`.+Haskell library for univariate and multivariate polynomials, backed by `Vector`s.  ```haskell+> -- Univariate polynomials > (X + 1) + (X - 1) :: VPoly Integer-2 * X + 0-+2 * X > (X + 1) * (X - 1) :: UPoly Int-1 * X^2 + 0 * X + (-1)+1 * X^2 + (-1)++> -- Multivariate polynomials+> (X + Y) * (X - Y) :: VMultiPoly 2 Integer+1 * X^2 + (-1) * Y^2+> (X + Y + Z) ^ 2 :: UMultiPoly 3 Int+1 * X^2 + 2 * X * Y + 2 * X * Z + 1 * Y^2 + 2 * Y * Z + 1 * Z^2++> -- Laurent polynomials+> (X^-2 + 1) * (X - X^-1) :: VLaurent Integer+1 * X + (-1) * X^-3+> (X^-1 + Y) * (X + Y^-1) :: UMultiLaurent 2 Int+1 * X * Y + 2 + 1 * X^-1 * Y^-1 ```  ## Vectors -`Poly v a` is polymorphic over a container `v`, implementing `Vector` interface, and coefficients of type `a`. Usually `v` is either a boxed vector from `Data.Vector` or an unboxed vector from `Data.Vector.Unboxed`. Use unboxed vectors whenever possible, e. g., when coefficients are `Int` or `Double`.+`Poly v a` is polymorphic over a container `v`, implementing the `Vector` interface, and coefficients of type `a`. Usually `v` is either a boxed vector from [`Data.Vector`](https://hackage.haskell.org/package/vector/docs/Data-Vector.html) or an unboxed vector from [`Data.Vector.Unboxed`](https://hackage.haskell.org/package/vector/docs/Data-Vector-Unboxed.html). Use unboxed vectors whenever possible, e. g., when the coefficients are `Int`s or `Double`s.  There are handy type synonyms: @@ -64,7 +74,7 @@ 1 * X^4 + 0 * X^3 + 0 * X^2 + 0 * X + (-1) ``` -One can also find convenient to `scale` by monomial (cf. `monomial` above):+One can also find it convenient to `scale` by a monomial (cf. `monomial` above):  ```haskell > scale 2 3.5 (X^2 + 1) :: UPoly Double@@ -72,8 +82,8 @@ ```  While `Poly` cannot be made an instance of `Integral` (because there is no meaningful `toInteger`),-it is an instance of `GcdDomain` and `Euclidean` from `semirings` package. These type classes-cover main functionality of `Integral`, providing division with remainder and `gcd` / `lcm`:+it is an instance of `GcdDomain` and `Euclidean` from the [`semirings`](https://hackage.haskell.org/package/semirings) package. These type classes+cover the main functionality of `Integral`, providing division with remainder and `gcd` / `lcm`:  ```haskell > Data.Euclidean.gcd (X^2 + 7 * X + 6) (X^2 - 5 * X - 6) :: UPoly Int@@ -83,8 +93,8 @@ (1.0 * X + 0.0,1.0 * X + 2.0) ``` -Miscellaneous utilities include `eval` for evaluation at a given value of indeterminate,-and reciprocals `deriv` / `integral`:+Miscellaneous utilities include `eval` for evaluation at a given point,+and `deriv` / `integral` for taking the derivative and an indefinite integral, respectively:  ```haskell > eval (X^2 + 1 :: UPoly Int) 3@@ -116,26 +126,34 @@  ## Flavours -The same API is exposed in four flavours:--* `Data.Poly` provides dense polynomials with `Num`-based interface.+* `Data.Poly` provides dense univariate polynomials with a `Num`-based interface.   This is a default choice for most users. -* `Data.Poly.Semiring` provides dense polynomials with `Semiring`-based interface.+* `Data.Poly.Semiring` provides dense univariate polynomials with a `Semiring`-based interface. -* `Data.Poly.Sparse` provides sparse polynomials with `Num`-based interface.-  Besides that, you may find it easier to use in REPL+* `Data.Poly.Laurent` provides dense univariate Laurent polynomials with a `Semiring`-based interface.++* `Data.Poly.Sparse` provides sparse univariate polynomials with a `Num`-based interface.+  Besides that, you may find it easier to use in the REPL   because of a more readable `Show` instance, skipping zero coefficients. -* `Data.Poly.Sparse.Semiring` provides sparse polynomials with `Semiring`-based interface.+* `Data.Poly.Sparse.Semiring` provides sparse univariate polynomials with a `Semiring`-based interface. +* `Data.Poly.Sparse.Laurent` provides sparse univariate Laurent polynomials with a `Semiring`-based interface.++* `Data.Poly.Multi` provides sparse multivariate polynomials with a `Num`-based interface.++* `Data.Poly.Multi.Semiring` provides sparse multivariate polynomials with a `Semiring`-based interface.++* `Data.Poly.Multi.Laurent` provides sparse multivariate Laurent polynomials with a `Semiring`-based interface.+ All flavours are available backed by boxed or unboxed vectors.  ## Performance -As a rough guide, `poly` is at least 20x-40x faster than [`polynomial`](http://hackage.haskell.org/package/polynomial) library.-Multiplication is implemented via Karatsuba algorithm.-Here is a couple of benchmarks for `UPoly Int`.+As a rough guide, `poly` is at least 20x-40x faster than the [`polynomial`](http://hackage.haskell.org/package/polynomial) library.+Multiplication is implemented via the Karatsuba algorithm.+Here are a couple of benchmarks for `UPoly Int`:  | Benchmark                     | polynomial, μs  | poly, μs | speedup | :---------------------------- | --------------: | -------: | ------:@@ -144,3 +162,11 @@ | addition, 10000 coeffs.       |            6545 |     167  |  39x | multiplication, 100 coeffs.   |            1733 |      33  |  52x | multiplication, 1000 coeffs.  |          442000 |    1456  | 303x++Due to being polymorphic by multiple axis, the performance of `poly` crucially depends on specialisation of instances. Clients are strongly recommended to compile with `ghc-options: -fspecialise-aggressively` and suggested to enable `-O2`.++## Additional resources++* __Polynomials in Haskell__, MuniHac, 12.09.2020:+  [slides](https://github.com/Bodigrim/my-talks/raw/master/munihac2020/slides.pdf),+  [video](https://youtu.be/NAs3ExQZUjA).
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
bench/Bench.hs view
@@ -1,13 +1,18 @@+{-# LANGUAGE CPP        #-} {-# LANGUAGE RankNTypes #-}  module Main where  import Gauge.Main import qualified DenseBench as Dense+#ifdef SupportSparse import qualified SparseBench as Sparse+#endif  main :: IO () main = defaultMain   [ Dense.benchSuite+#ifdef SupportSparse   , Sparse.benchSuite+#endif   ]
bench/DenseBench.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE RankNTypes                 #-} {-# LANGUAGE TypeApplications           #-} @@ -8,7 +7,7 @@  import Prelude hiding (quotRem, gcd) import Gauge.Main-import Data.Euclidean (Euclidean(..), GcdDomain(..), Field)+import Data.Euclidean (Euclidean(..), GcdDomain(..)) import Data.Poly import qualified Data.Poly.Semiring as S (toPoly) import Data.Semiring (Semiring(..), Ring, Mod2(..))@@ -23,10 +22,10 @@   , map benchEval     [100, 1000, 10000]   , map benchDeriv    [100, 1000, 10000]   , map benchIntegral [100, 1000, 10000]-  , map benchQuotRem    [10, 100]-  , map benchGcd        [10, 100]-  , map benchGcdFracRat [10, 20, 40]-  , map benchGcdFracM   [10, 100, 1000]+  , map benchQuotRem  [10, 100]+  , map benchGcd      [10, 100]+  , map benchGcdRat   [10, 20, 40]+  , map benchGcdM     [10, 100, 1000]   ]  benchAdd :: Int -> Benchmark@@ -48,13 +47,13 @@ benchQuotRem k = bench ("quotRem/" ++ show k) $ nf doQuotRem k  benchGcd :: Int -> Benchmark-benchGcd k = bench ("gcd/" ++ show k) $ nf doGcd k+benchGcd k = bench ("gcd/Integer/" ++ show k) $ nf (doGcd @Integer) k -benchGcdFracRat :: Int -> Benchmark-benchGcdFracRat k = bench ("gcdFrac/Rational/" ++ show k) $ nf (doGcdFrac @Rational) k+benchGcdRat :: Int -> Benchmark+benchGcdRat k = bench ("gcd/Rational/" ++ show k) $ nf (doGcd @Rational) k -benchGcdFracM :: Int -> Benchmark-benchGcdFracM k = bench ("gcdFrac/Mod2/" ++ show k) $ nf (getMod2 . doGcdFrac @Mod2) k+benchGcdM :: Int -> Benchmark+benchGcdM k = bench ("gcd/Mod2/" ++ show k) $ nf (getMod2 . doGcd @Mod2) k  doBinOp :: (forall a. Num a => a -> a -> a) -> Int -> Int doBinOp op n = U.sum zs@@ -94,16 +93,9 @@     ys = toPoly $ U.generate n       gen2     (qs, rs) = xs `quotRem` ys -doGcd :: Int -> Integer-doGcd n = V.sum gs+doGcd :: (Eq a, Ring a, GcdDomain a) => Int -> a+doGcd n = V.foldl' plus zero gs   where-    xs = toPoly $ V.generate n gen1-    ys = toPoly $ V.generate n gen2+    xs = S.toPoly $ V.generate n gen1+    ys = S.toPoly $ V.generate n gen2     gs = unPoly $ xs `gcd` ys--doGcdFrac :: (Eq a, Field a) => Int -> a-doGcdFrac n = V.foldl' plus zero gs-  where-    xs = PolyOverField $ S.toPoly $ V.generate n gen1-    ys = PolyOverField $ S.toPoly $ V.generate n gen2-    gs = unPoly $ unPolyOverField $ xs `gcd` ys
bench/SparseBench.hs view
@@ -12,11 +12,12 @@  benchSuite :: Benchmark benchSuite = bgroup "sparse" $ concat-  [ map benchAdd      $ zip3 tabs vecs2 vecs3-  , map benchMul      $ take 2 $ zip3 tabs vecs2 vecs3-  , map benchEval     $ zip tabs vecs2-  , map benchDeriv    $ zip tabs vecs2-  , map benchIntegral $ zip tabs vecs2'+  [ zipWith3 benchAdd tabs vecs2 vecs3+  , take 2+  $ zipWith3 benchMul tabs vecs2 vecs3+  , zipWith benchEval tabs vecs2+  , zipWith benchDeriv tabs vecs2+  , zipWith benchIntegral tabs vecs2'   ]  tabs :: [Int]@@ -34,20 +35,20 @@ vecs3 = flip map tabs $   \n -> toPoly $ U.generate n (\i -> (fromIntegral i ^ 3, i * 3)) -benchAdd :: (Int, UPoly Int, UPoly Int) -> Benchmark-benchAdd (k, xs, ys) = bench ("add/" ++ show k) $ nf (doBinOp (+) xs) ys+benchAdd :: Int -> UPoly Int -> UPoly Int -> Benchmark+benchAdd k xs ys = bench ("add/" ++ show k) $ nf (doBinOp (+) xs) ys -benchMul :: (Int, UPoly Int, UPoly Int) -> Benchmark-benchMul (k, xs, ys) = bench ("mul/" ++ show k) $ nf (doBinOp (*) xs) ys+benchMul :: Int -> UPoly Int -> UPoly Int -> Benchmark+benchMul k xs ys = bench ("mul/" ++ show k) $ nf (doBinOp (*) xs) ys -benchEval :: (Int, UPoly Int) -> Benchmark-benchEval (k, xs) = bench ("eval/" ++ show k) $ nf doEval xs+benchEval :: Int -> UPoly Int -> Benchmark+benchEval k xs = bench ("eval/" ++ show k) $ nf doEval xs -benchDeriv :: (Int, UPoly Int) -> Benchmark-benchDeriv (k, xs) = bench ("deriv/" ++ show k) $ nf doDeriv xs+benchDeriv :: Int -> UPoly Int -> Benchmark+benchDeriv k xs = bench ("deriv/" ++ show k) $ nf doDeriv xs -benchIntegral :: (Int, UPoly Double) -> Benchmark-benchIntegral (k, xs) = bench ("integral/" ++ show k) $ nf doIntegral xs+benchIntegral :: Int -> UPoly Double -> Benchmark+benchIntegral k xs = bench ("integral/" ++ show k) $ nf doIntegral xs  doBinOp :: (forall a. Num a => a -> a -> a) -> UPoly Int -> UPoly Int -> Int doBinOp op xs ys = U.foldl' (\acc (_, x) -> acc + x) 0 zs
changelog.md view
@@ -1,3 +1,20 @@+# 0.5.1.0++* Add function `timesRing`.+* Tweak inlining pragmas.++# 0.5.0.0++* Change definition of `Data.Euclidean.degree`+  to coincide with the degree of polynomial.+* Implement multivariate polynomials (usual and Laurent).+* Reimplement sparse univariate polynomials as a special case of multivariate ones.+* Speed up `gcd` calculations for all flavours of polynomials.+* Decomission `PolyOverField` and `LaurentOverField`: they do not improve performance any more.+* Add function `quotRemFractional`.+* Add an experimental implementation of the discrete Fourier transform.+* Add conversion functions between dense and sparse polynomials.+ # 0.4.0.0  * Implement Laurent polynomials.@@ -31,9 +48,13 @@  # 0.2.0.0 +* Parametrize `Poly` by underlying vector type.+* Introduce `Data.Poly.Semiring` module. * Fix a bug in `Num.(-)`. * Add functions `constant`, `eval`, `deriv`, `integral`. * Add a handy pattern synonym `X`.+* Add type synonyms `VPoly` and `UPoly`.+* Remove function `toPoly'`.  # 0.1.0.0 
poly.cabal view
@@ -1,8 +1,8 @@ name: poly-version: 0.4.0.0+version: 0.5.1.0 synopsis: Polynomials description:-  Polynomials backed by `Vector`.+  Polynomials backed by `Vector`s. homepage: https://github.com/Bodigrim/poly#readme license: BSD3 license-file: LICENSE@@ -11,8 +11,8 @@ copyright: 2019-2020 Andrew Lelechenko category: Math, Numerical build-type: Simple-cabal-version: >=1.10-tested-with: GHC ==8.0.2 GHC ==8.2.2 GHC ==8.4.4 GHC ==8.6.5 GHC ==8.8.3 GHC ==8.10.1+cabal-version: 2.0+tested-with: GHC ==8.6.5 GHC ==8.8.4 GHC ==8.10.7 GHC ==9.0.2 GHC ==9.2.5 GHC ==9.4.4 extra-source-files:   changelog.md   README.md@@ -21,72 +21,124 @@   type: git   location: https://github.com/Bodigrim/poly +flag sparse+  description:+    Enable sparse and multivariate polynomials, incurring a larger dependency footprint.+  default: True+  manual: True+ library   hs-source-dirs: src   exposed-modules:     Data.Poly     Data.Poly.Laurent-    Data.Poly.Orthogonal     Data.Poly.Semiring-    Data.Poly.Sparse-    Data.Poly.Sparse.Laurent-    Data.Poly.Sparse.Semiring+    Data.Poly.Orthogonal++  if flag(sparse)+    exposed-modules:+      Data.Poly.Sparse+      Data.Poly.Sparse.Laurent+      Data.Poly.Sparse.Semiring++      Data.Poly.Multi+      Data.Poly.Multi.Laurent+      Data.Poly.Multi.Semiring+   other-modules:     Data.Poly.Internal.Dense     Data.Poly.Internal.Dense.Field+    Data.Poly.Internal.Dense.DFT     Data.Poly.Internal.Dense.GcdDomain-    Data.Poly.Internal.PolyOverField-    Data.Poly.Internal.Sparse-    Data.Poly.Internal.Sparse.Field-    Data.Poly.Internal.Sparse.GcdDomain+    Data.Poly.Internal.Dense.Laurent++  if flag(sparse)+    other-modules:+      Data.Poly.Internal.Convert+      Data.Poly.Internal.Multi+      Data.Poly.Internal.Multi.Core+      Data.Poly.Internal.Multi.Field+      Data.Poly.Internal.Multi.GcdDomain+      Data.Poly.Internal.Multi.Laurent+   build-depends:-    base >= 4.9 && < 5,+    base >= 4.12 && < 5,     deepseq >= 1.1 && < 1.5,     primitive >= 0.6,     semirings >= 0.5.2,-    vector >= 0.12.0.2,-    vector-algorithms >= 0.8.0.3+    vector >= 0.12.0.2++  if flag(sparse)+    build-depends:+      finite-typelits >= 0.1,+      vector-algorithms >= 0.8.0.3,+      vector-sized >= 1.1+   default-language: Haskell2010-  ghc-options: -Wall -Wcompat+  other-extensions: QuantifiedConstraints+  ghc-options: -Wall -Wcompat -Wredundant-constraints +  if flag(sparse)+    cpp-options: -DSupportSparse+ test-suite poly-tests   type: exitcode-stdio-1.0   main-is: Main.hs   other-modules:     Dense     DenseLaurent+    DFT     Orthogonal     Quaternion-    Sparse-    SparseLaurent     TestUtils+  if flag(sparse)+    other-modules:+      Multi+      MultiLaurent+      Sparse+      SparseLaurent   build-depends:-    base >=4.9 && <5,-    mod,+    base >=4.10 && <5,+    mod >=0.1.2,     poly,     QuickCheck >=2.12,+    quickcheck-classes-base,     quickcheck-classes >=0.6.3,     semirings >= 0.5.2,     tasty >= 0.11,     tasty-quickcheck >= 0.8,     vector >= 0.12.0.2+  if flag(sparse)+    build-depends:+      finite-typelits,+      vector-sized >= 1.4.2   default-language: Haskell2010   hs-source-dirs: test   ghc-options: -Wall -Wcompat -threaded -rtsopts+  if flag(sparse)+    cpp-options: -DSupportSparse -benchmark poly-gauge+benchmark poly-bench   build-depends:-    base >=4.9 && <5,+    base >=4.10 && <5,     deepseq >= 1.1 && < 1.5,-    gauge >= 0.1,+    mod >=0.1.2,     poly,     semirings >= 0.2,     vector >= 0.12.0.2+  build-depends:+    tasty-bench+  mixins:+    tasty-bench (Test.Tasty.Bench as Gauge.Main)   type: exitcode-stdio-1.0   main-is: Bench.hs   other-modules:     DenseBench-    SparseBench+  if flag(sparse)+    other-modules:+      SparseBench   default-language: Haskell2010   hs-source-dirs: bench-  ghc-options: -Wall -Wcompat+  ghc-options: -Wall -Wcompat -O2 -fspecialise-aggressively+  if flag(sparse)+    cpp-options: -DSupportSparse
src/Data/Poly.hs view
@@ -6,7 +6,10 @@ -- -- Dense polynomials and a 'Num'-based interface. --+-- @since 0.1.0.0+-- +{-# LANGUAGE CPP             #-} {-# LANGUAGE PatternSynonyms #-}  module Data.Poly@@ -23,10 +26,16 @@   , subst   , deriv   , integral-  , PolyOverField(..)+  , quotRemFractional+#ifdef SupportSparse+  , denseToSparse+  , sparseToDense+#endif   ) where +#ifdef SupportSparse+import Data.Poly.Internal.Convert+#endif import Data.Poly.Internal.Dense-import Data.Poly.Internal.Dense.Field ()+import Data.Poly.Internal.Dense.Field (quotRemFractional) import Data.Poly.Internal.Dense.GcdDomain ()-import Data.Poly.Internal.PolyOverField
+ src/Data/Poly/Internal/Convert.hs view
@@ -0,0 +1,92 @@+-- |+-- Module:      Data.Poly.Internal.Convert+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- Conversions between polynomials.+--++{-# LANGUAGE DataKinds        #-}+{-# LANGUAGE FlexibleContexts #-}++module Data.Poly.Internal.Convert+  ( denseToSparse+  , denseToSparse'+  , sparseToDense+  , sparseToDense'+  ) where++import Control.Monad.ST+import Data.Semiring (Semiring(..))+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Mutable as MG+import qualified Data.Vector.Unboxed.Sized as SU++import qualified Data.Poly.Internal.Dense as Dense+import qualified Data.Poly.Internal.Multi as Sparse++-- | Convert from dense to sparse polynomials.+--+-- >>> :set -XFlexibleContexts+-- >>> denseToSparse (1 + Data.Poly.X^2) :: Data.Poly.Sparse.UPoly Int+-- 1 * X^2 + 1+--+-- @since 0.5.0.0+denseToSparse+  :: (Eq a, Num a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => Dense.Poly v a+  -> Sparse.Poly v a+denseToSparse = denseToSparseInternal 0++denseToSparse'+  :: (Eq a, Semiring a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => Dense.Poly v a+  -> Sparse.Poly v a+denseToSparse' = denseToSparseInternal zero++denseToSparseInternal+  :: (Eq a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => a+  -> Dense.Poly v a+  -> Sparse.Poly v a+denseToSparseInternal z = Sparse.MultiPoly . G.imapMaybe (\i c -> if c == z then Nothing else Just (fromIntegral i, c)) . Dense.unPoly++-- | Convert from sparse to dense polynomials.+--+-- >>> :set -XFlexibleContexts+-- >>> sparseToDense (1 + Data.Poly.Sparse.X^2) :: Data.Poly.UPoly Int+-- 1 * X^2 + 0 * X + 1+--+-- @since 0.5.0.0+sparseToDense+  :: (Num a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => Sparse.Poly v a+  -> Dense.Poly v a+sparseToDense = sparseToDenseInternal 0++sparseToDense'+  :: (Semiring a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => Sparse.Poly v a+  -> Dense.Poly v a+sparseToDense' = sparseToDenseInternal zero++sparseToDenseInternal+  :: (G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => a+  -> Sparse.Poly v a+  -> Dense.Poly v a+sparseToDenseInternal z (Sparse.MultiPoly xs)+  | G.null xs = Dense.Poly G.empty+  | otherwise = runST $ do+  let len = fromIntegral (SU.head (fst (G.unsafeLast xs)) + 1)+  ys <- MG.unsafeNew len+  MG.set ys z+  let go xi yi+        | xi >= G.length xs = pure ()+        | (yi', c) <- G.unsafeIndex xs xi+        , yi == fromIntegral (SU.head yi')+        = MG.unsafeWrite ys yi c >> go (xi + 1) (yi + 1)+        | otherwise = go xi (yi + 1)+  go 0 0+  Dense.Poly <$> G.unsafeFreeze ys
src/Data/Poly/Internal/Dense.hs view
@@ -11,6 +11,7 @@ {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE PatternSynonyms            #-} {-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE TypeApplications           #-} {-# LANGUAGE TypeFamilies               #-} {-# LANGUAGE ViewPatterns               #-} @@ -40,17 +41,18 @@   , deriv'   , unscale'   , integral'+  , timesRing   ) where -import Prelude hiding (quotRem, quot, rem, gcd, lcm, (^))+import Prelude hiding (quotRem, quot, rem, gcd, lcm) import Control.DeepSeq (NFData) import Control.Monad-import Control.Monad.Primitive import Control.Monad.ST import Data.Bits import Data.Euclidean (Euclidean, Field, quot)+import Data.Kind import Data.List (foldl', intersperse)-import Data.Semiring (Semiring(..), Ring())+import Data.Semiring (Semiring(..), Ring(), minus) import qualified Data.Semiring as Semiring import qualified Data.Vector as V import qualified Data.Vector.Generic as G@@ -61,7 +63,7 @@ -- | Polynomials of one variable with coefficients from @a@, -- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.). ----- Use pattern 'X' for construction:+-- Use the pattern 'X' for construction: -- -- >>> (X + 1) + (X - 1) :: VPoly Integer -- 2 * X + 0@@ -71,16 +73,27 @@ -- Polynomials are stored normalized, without leading -- zero coefficients, so 0 * 'X' + 1 equals to 1. ----- 'Ord' instance does not make much sense mathematically,+-- The 'Ord' instance does not make much sense mathematically, -- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc. ---newtype Poly v a = Poly+-- Due to being polymorphic by multiple axis, the performance of `Poly` crucially+-- depends on specialisation of instances. Clients are strongly recommended+-- to compile with @ghc-options:@ @-fspecialise-aggressively@ and suggested to enable @-O2@.+--+-- @since 0.1.0.0+newtype Poly (v :: Type -> Type) (a :: Type) = Poly   { unPoly :: v a-  -- ^ Convert 'Poly' to a vector of coefficients-  -- (first element corresponds to a constant term).+  -- ^ Convert a 'Poly' to a vector of coefficients+  -- (first element corresponds to the constant term).+  --+  -- @since 0.1.0.0   }-  deriving (Eq, NFData, Ord)+  deriving+  ( Eq, Ord+  , NFData -- ^ @since 0.3.2.0+  ) +-- | @since 0.3.1.0 instance (Eq a, Semiring a, G.Vector v a) => IsList (Poly v a) where   type Item (Poly v a) = a   fromList = toPoly' . G.fromList@@ -99,65 +112,85 @@       $ intersperse (showString " + ")       $ G.ifoldl (\acc i c -> showCoeff i c : acc) [] xs     where+      -- Powers are guaranteed to be non-negative+      showCoeff :: Int -> a -> String -> String       showCoeff 0 c = showsPrec 7 c       showCoeff 1 c = showsPrec 7 c . showString " * X"-      showCoeff i c = showsPrec 7 c . showString " * X^" . showsPrec 7 i+      showCoeff i c = showsPrec 7 c . showString (" * X^" ++ show i)  -- | Polynomials backed by boxed vectors.+--+-- @since 0.2.0.0 type VPoly = Poly V.Vector  -- | Polynomials backed by unboxed vectors.+--+-- @since 0.2.0.0 type UPoly = Poly U.Vector --- | Make 'Poly' from a list of coefficients--- (first element corresponds to a constant term).+-- | Make a 'Poly' from a list of coefficients+-- (first element corresponds to the constant term). -- -- >>> :set -XOverloadedLists -- >>> toPoly [1,2,3] :: VPoly Integer -- 3 * X^2 + 2 * X + 1 -- >>> toPoly [0,0,0] :: UPoly Int -- 0+--+-- @since 0.1.0.0 toPoly :: (Eq a, Num a, G.Vector v a) => v a -> Poly v a toPoly = Poly . dropWhileEnd (== 0)+{-# INLINABLE toPoly #-}  toPoly' :: (Eq a, Semiring a, G.Vector v a) => v a -> Poly v a toPoly' = Poly . dropWhileEnd (== zero)+{-# INLINABLE toPoly' #-} --- | Return a leading power and coefficient of a non-zero polynomial.+-- | Return the leading power and coefficient of a non-zero polynomial. -- -- >>> leading ((2 * X + 1) * (2 * X^2 - 1) :: UPoly Int) -- Just (3,4) -- >>> leading (0 :: UPoly Int) -- Nothing+--+-- @since 0.3.0.0 leading :: G.Vector v a => Poly v a -> Maybe (Word, a) leading (Poly v)   | G.null v  = Nothing   | otherwise = Just (fromIntegral (G.length v - 1), G.last v)+{-# INLINABLE leading #-}  -- | Note that 'abs' = 'id' and 'signum' = 'const' 1. instance (Eq a, Num a, G.Vector v a) => Num (Poly v a) where-  Poly xs + Poly ys = toPoly $ plusPoly (+) xs ys-  Poly xs - Poly ys = toPoly $ minusPoly negate (-) xs ys+  (+) = (toPoly .) . coerce (plusPoly @v @a (+))+  (-) = (toPoly .) . coerce (minusPoly @v @a negate (-))+  (*) = (toPoly .) . coerce (inline (karatsuba @v @a 0 (+) (-) (*)))+   negate (Poly xs) = Poly $ G.map negate xs   abs = id   signum = const 1   fromInteger n = case fromInteger n of     0 -> Poly G.empty     m -> Poly $ G.singleton m-  Poly xs * Poly ys = toPoly $ karatsuba xs ys+   {-# INLINE (+) #-}   {-# INLINE (-) #-}   {-# INLINE negate #-}   {-# INLINE fromInteger #-}   {-# INLINE (*) #-} +-- | Note that 'times' is significantly slower than '(*)' for large polynomials,+-- because Karatsuba multiplication algorithm requires subtraction, which is not+-- provided by 'Semiring' class. Use 'timesRing' instead. instance (Eq a, Semiring a, G.Vector v a) => Semiring (Poly v a) where   zero = Poly G.empty   one     | (one :: a) == zero = zero     | otherwise = Poly $ G.singleton one-  plus (Poly xs) (Poly ys) = toPoly' $ plusPoly plus xs ys-  times (Poly xs) (Poly ys) = toPoly' $ convolution zero plus times xs ys++  plus  = (toPoly' .) . coerce (plusPoly @v @a plus)+  times = (toPoly' .) . coerce (inline (convolution @v @a zero plus times))+   {-# INLINE zero #-}   {-# INLINE one #-}   {-# INLINE plus #-}@@ -171,7 +204,13 @@  instance (Eq a, Ring a, G.Vector v a) => Ring (Poly v a) where   negate (Poly xs) = Poly $ G.map Semiring.negate xs+  {-# INLINABLE negate #-} +-- | Karatsuba multiplication algorithm for polynomials over rings.+timesRing :: forall v a. (Eq a, Ring a, G.Vector v a) => Poly v a -> Poly v a -> Poly v a+timesRing = (toPoly' .) . coerce (inline (karatsuba @v @a zero plus minus times))+{-# INLINE timesRing #-}+ dropWhileEnd   :: G.Vector v a   => (a -> Bool)@@ -184,10 +223,10 @@ {-# INLINE dropWhileEnd #-}  dropWhileEndM-  :: (PrimMonad m, G.Vector v a)+  :: G.Vector v a   => (a -> Bool)-  -> G.Mutable v (PrimState m) a-  -> m (G.Mutable v (PrimState m) a)+  -> G.Mutable v s a+  -> ST s (G.Mutable v s a) dropWhileEndM p xs = go (MG.length xs)   where     go 0 = pure $ MG.unsafeSlice 0 0 xs@@ -249,50 +288,57 @@ karatsubaThreshold = 32  karatsuba-  :: (Eq a, Num a, G.Vector v a)-  => v a+  :: G.Vector v a+  => a+  -> (a -> a -> a)+  -> (a -> a -> a)+  -> (a -> a -> a)   -> v a   -> v a-karatsuba xs ys-  | lenXs <= karatsubaThreshold || lenYs <= karatsubaThreshold-  = convolution 0 (+) (*) xs ys-  | otherwise = runST $ do-    zs <- MG.unsafeNew lenZs-    forM_ [0 .. lenZs - 1] $ \k -> do-      let z0 = if k < G.length zs0-               then G.unsafeIndex zs0 k-               else 0-          z11 = if k - m >= 0 && k - m < G.length zs11-               then G.unsafeIndex zs11 (k - m)-               else 0-          z10 = if k - m >= 0 && k - m < G.length zs0-               then G.unsafeIndex zs0 (k - m)-               else 0-          z12 = if k - m >= 0 && k - m < G.length zs2-               then G.unsafeIndex zs2 (k - m)-               else 0-          z2 = if k - 2 * m >= 0 && k - 2 * m < G.length zs2-               then G.unsafeIndex zs2 (k - 2 * m)-               else 0-      MG.unsafeWrite zs k (z0 + (z11 - z10 - z12) + z2)-    G.unsafeFreeze zs+  -> v a+karatsuba zer add sub mul = go   where-    lenXs = G.length xs-    lenYs = G.length ys-    lenZs = lenXs + lenYs - 1+    conv = inline convolution zer add mul+    go xs ys+      | lenXs <= karatsubaThreshold || lenYs <= karatsubaThreshold+      = conv xs ys+      | otherwise = runST $ do+        zs <- MG.unsafeNew lenZs+        forM_ [0 .. lenZs - 1] $ \k -> do+          let z0 = if k < G.length zs0+                   then G.unsafeIndex zs0 k+                   else zer+              z11 = if k - m >= 0 && k - m < G.length zs11+                   then G.unsafeIndex zs11 (k - m)+                   else zer+              z10 = if k - m >= 0 && k - m < G.length zs0+                   then G.unsafeIndex zs0 (k - m)+                   else zer+              z12 = if k - m >= 0 && k - m < G.length zs2+                   then G.unsafeIndex zs2 (k - m)+                   else zer+              z2 = if k - 2 * m >= 0 && k - 2 * m < G.length zs2+                   then G.unsafeIndex zs2 (k - 2 * m)+                   else zer+          MG.unsafeWrite zs k (z0 `add` (z11 `sub` (z10 `add` z12)) `add` z2)+        G.unsafeFreeze zs+      where+        lenXs = G.length xs+        lenYs = G.length ys+        lenZs = lenXs + lenYs - 1 -    m    = ((lenXs `min` lenYs) + 1) `shiftR` 1+        m    = ((lenXs `min` lenYs) + 1) `shiftR` 1 -    xs0  = G.slice 0 m xs-    xs1  = G.slice m (lenXs - m) xs-    ys0  = G.slice 0 m ys-    ys1  = G.slice m (lenYs - m) ys+        xs0  = G.slice 0 m xs+        xs1  = G.slice m (lenXs - m) xs+        ys0  = G.slice 0 m ys+        ys1  = G.slice m (lenYs - m) ys -    xs01 = plusPoly (+) xs0 xs1-    ys01 = plusPoly (+) ys0 ys1-    zs0  = karatsuba xs0 ys0-    zs2  = karatsuba xs1 ys1-    zs11 = karatsuba xs01 ys01+        xs01 = plusPoly add xs0 xs1+        ys01 = plusPoly add ys0 ys1+        zs0  = go xs0 ys0+        zs2  = go xs1 ys1+        zs11 = go xs01 ys01 {-# INLINABLE karatsuba #-}  convolution@@ -303,19 +349,21 @@   -> v a   -> v a   -> v a-convolution zer add mul xs ys-  | lenXs == 0 || lenYs == 0 = G.empty-  | otherwise = G.generate lenZs $ \k -> foldl'+convolution zer add mul = \xs ys ->+  let lenXs = G.length xs+      lenYs = G.length ys+      lenZs = lenXs + lenYs - 1 in+  if lenXs == 0 || lenYs == 0+  then G.empty+  else G.generate lenZs $ \k -> foldl'     (\acc i -> acc `add` mul (G.unsafeIndex xs i) (G.unsafeIndex ys (k - i)))     zer     [max (k - lenYs + 1) 0 .. min k (lenXs - 1)]-  where-    lenXs = G.length xs-    lenYs = G.length ys-    lenZs = lenXs + lenYs - 1 {-# INLINABLE convolution #-}  -- | Create a monomial from a power and a coefficient.+--+-- @since 0.3.0.0 monomial :: (Eq a, Num a, G.Vector v a) => Word -> a -> Poly v a monomial _ 0 = Poly G.empty monomial p c = Poly $ G.generate (fromIntegral p + 1) (\i -> if i == fromIntegral p then c else 0)@@ -328,7 +376,7 @@ {-# INLINE monomial' #-}  scaleInternal-  :: (Eq a, G.Vector v a)+  :: G.Vector v a   => a   -> (a -> a -> a)   -> Word@@ -349,6 +397,8 @@ -- -- >>> scale 2 3 (X^2 + 1) :: UPoly Int -- 3 * X^4 + 0 * X^3 + 3 * X^2 + 0 * X + 0+--+-- @since 0.3.0.0 scale :: (Eq a, Num a, G.Vector v a) => Word -> a -> Poly v a -> Poly v a scale yp yc (Poly xs) = toPoly $ scaleInternal 0 (*) yp yc xs @@ -371,10 +421,12 @@ fst' :: StrictPair a b -> a fst' (a :*: _) = a --- | Evaluate at a given point.+-- | Evaluate the polynomial at a given point. -- -- >>> eval (X^2 + 1 :: UPoly Int) 3 -- 10+--+-- @since 0.2.0.0 eval :: (Num a, G.Vector v a) => Poly v a -> a -> a eval = substitute (*) {-# INLINE eval #-}@@ -387,6 +439,8 @@ -- -- >>> subst (X^2 + 1 :: UPoly Int) (X + 1 :: UPoly Int) -- 1 * X^2 + 2 * X + 2+--+-- @since 0.3.3.0 subst :: (Eq a, Num a, G.Vector v a, G.Vector w a) => Poly v a -> Poly w a -> Poly w a subst = substitute (scale 0) {-# INLINE subst #-}@@ -405,10 +459,12 @@   G.foldl' (\(acc :*: xn) cn -> acc `plus` f cn xn :*: x `times` xn) (zero :*: one) cs {-# INLINE substitute' #-} --- | Take a derivative.+-- | Take the derivative of the polynomial. -- -- >>> deriv (X^3 + 3 * X) :: UPoly Int -- 3 * X^2 + 0 * X + 3+--+-- @since 0.2.0.0 deriv :: (Eq a, Num a, G.Vector v a) => Poly v a -> Poly v a deriv (Poly xs)   | G.null xs = Poly G.empty@@ -421,11 +477,13 @@   | otherwise = toPoly' $ G.imap (\i x -> fromNatural (fromIntegral (i + 1)) `times` x) $ G.tail xs {-# INLINE deriv' #-} --- | Compute an indefinite integral of a polynomial,--- setting constant term to zero.+-- | Compute an indefinite integral of the polynomial,+-- setting the constant term to zero. -- -- >>> integral (3 * X^2 + 3) :: UPoly Double -- 1.0 * X^3 + 0.0 * X^2 + 3.0 * X + 0.0+--+-- @since 0.2.0.0 integral :: (Eq a, Fractional a, G.Vector v a) => Poly v a -> Poly v a integral (Poly xs)   | G.null xs = Poly G.empty@@ -452,24 +510,40 @@       lenXs = G.length xs {-# INLINABLE integral' #-} --- | Create an identity polynomial.-pattern X :: (Eq a, Num a, G.Vector v a, Eq (v a)) => Poly v a-pattern X <- ((==) var -> True)+-- | The polynomial 'X'.+--+-- > X == monomial 1 1+--+-- @since 0.2.0.0+pattern X :: (Eq a, Num a, G.Vector v a) => Poly v a+pattern X <- (isVar -> True)   where X = var -var :: forall a v. (Eq a, Num a, G.Vector v a, Eq (v a)) => Poly v a+var :: forall a v. (Eq a, Num a, G.Vector v a) => Poly v a var   | (1 :: a) == 0 = Poly G.empty   | otherwise     = Poly $ G.fromList [0, 1] {-# INLINE var #-} +isVar :: forall v a. (Eq a, Num a, G.Vector v a) => Poly v a -> Bool+isVar (Poly xs)+  | (1 :: a) == 0 = G.null xs+  | otherwise     = G.length xs == 2 && xs G.! 0 == 0 && xs G.! 1 == 1+{-# INLINE isVar #-}+ -- | Create an identity polynomial.-pattern X' :: (Eq a, Semiring a, G.Vector v a, Eq (v a)) => Poly v a-pattern X' <- ((==) var' -> True)+pattern X' :: (Eq a, Semiring a, G.Vector v a) => Poly v a+pattern X' <- (isVar' -> True)   where X' = var' -var' :: forall a v. (Eq a, Semiring a, G.Vector v a, Eq (v a)) => Poly v a+var' :: forall a v. (Eq a, Semiring a, G.Vector v a) => Poly v a var'   | (one :: a) == zero = Poly G.empty   | otherwise          = Poly $ G.fromList [zero, one] {-# INLINE var' #-}++isVar' :: forall v a. (Eq a, Semiring a, G.Vector v a) => Poly v a -> Bool+isVar' (Poly xs)+  | (one :: a) == zero = G.null xs+  | otherwise          = G.length xs == 2 && xs G.! 0 == zero && xs G.! 1 == one+{-# INLINE isVar' #-}
+ src/Data/Poly/Internal/Dense/DFT.hs view
@@ -0,0 +1,86 @@+-- |+-- Module:      Data.Poly.Internal.Dense.FFT+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- Discrete Fourier transform.+--++{-# LANGUAGE BangPatterns        #-}+{-# LANGUAGE ScopedTypeVariables #-}++module Data.Poly.Internal.Dense.DFT+  ( dft+  , inverseDft+  ) where++import Prelude hiding (recip, fromIntegral)+import Control.Monad.ST+import Data.Bits hiding (shift)+import Data.Foldable+import Data.Semiring (Semiring(..), Ring(..), minus, fromIntegral)+import Data.Field (Field, recip)+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Mutable as MG++-- | <https://en.wikipedia.org/wiki/Fast_Fourier_transform Discrete Fourier transform>+-- \( y_k = \sum_{j=0}^{N-1} x_j \sqrt[N]{1}^{jk} \).+--+-- @since 0.5.0.0+dft+  :: (Ring a, G.Vector v a)+  => a   -- ^ primitive root \( \sqrt[N]{1} \), otherwise behaviour is undefined+  -> v a -- ^ \( \{ x_k \}_{k=0}^{N-1} \) (currently only  \( N = 2^n \) is supported)+  -> v a -- ^ \( \{ y_k \}_{k=0}^{N-1} \)+dft primRoot (xs :: v a)+  | popCount nn /= 1 = error "dft: only vectors of length 2^n are supported"+  | otherwise = go 0 0+  where+    nn = G.length xs+    n = countTrailingZeros nn++    roots :: v a+    roots = G.iterateN+      (1 `unsafeShiftL` (n - 1))+      (\x -> x `seq` (x `times` primRoot))+      one++    go !offset !shift+      | shift >= n = G.unsafeSlice offset 1 xs+      | otherwise = runST $ do+        let halfLen = 1 `unsafeShiftL` (n - shift - 1)+            ys0 = go offset (shift + 1)+            ys1 = go (offset + 1 `unsafeShiftL` shift) (shift + 1)+        ys <- MG.new (halfLen `unsafeShiftL` 1)++        -- This corresponds to k = 0 in the loop below.+        -- It improves performance by avoiding multiplication+        -- by roots V.! 0 = 1.+        let y00 = G.unsafeIndex ys0 0+            y10 = G.unsafeIndex ys1 0+        MG.unsafeWrite ys 0       $! y00 `plus`  y10+        MG.unsafeWrite ys halfLen $! y00 `minus` y10++        forM_ [1..halfLen - 1] $ \k -> do+          let y0 = G.unsafeIndex ys0 k+              y1 = G.unsafeIndex ys1 k `times`+                   G.unsafeIndex roots (k `unsafeShiftL` shift)+          MG.unsafeWrite ys k             $! y0 `plus`  y1+          MG.unsafeWrite ys (k + halfLen) $! y0 `minus` y1+        G.unsafeFreeze ys+{-# INLINABLE dft #-}++-- | Inverse <https://en.wikipedia.org/wiki/Fast_Fourier_transform discrete Fourier transform>+-- \( x_k = {1\over N} \sum_{j=0}^{N-1} y_j \sqrt[N]{1}^{-jk} \).+--+-- @since 0.5.0.0+inverseDft+  :: (Field a, G.Vector v a)+  => a   -- ^ primitive root \( \sqrt[N]{1} \), otherwise behaviour is undefined+  -> v a -- ^ \( \{ y_k \}_{k=0}^{N-1} \) (currently only  \( N = 2^n \) is supported)+  -> v a -- ^ \( \{ x_k \}_{k=0}^{N-1} \)+inverseDft primRoot ys = G.map (`times` invN) $ dft (recip primRoot) ys+  where+    invN = recip $ fromIntegral $ G.length ys+{-# INLINABLE inverseDft #-}
src/Data/Poly/Internal/Dense/Field.hs view
@@ -4,28 +4,25 @@ -- Licence:     BSD3 -- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com> ----- GcdDomain for Field underlying+-- 'Euclidean' instance with a 'Field' constraint on the coefficient type. --  {-# LANGUAGE ConstraintKinds            #-} {-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE PatternSynonyms            #-} {-# LANGUAGE ScopedTypeVariables        #-} {-# LANGUAGE TypeFamilies               #-}  {-# OPTIONS_GHC -fno-warn-orphans #-}  module Data.Poly.Internal.Dense.Field-  ( fieldGcd+  ( quotRemFractional   ) where -import Prelude hiding (quotRem, quot, rem, gcd, recip)+import Prelude hiding (quotRem, quot, rem, gcd) import Control.Exception import Control.Monad-import Control.Monad.Primitive import Control.Monad.ST import Data.Euclidean (Euclidean(..), Field)-import Data.Field (recip) import Data.Semiring (times, minus, zero, one) import qualified Data.Vector.Generic as G import qualified Data.Vector.Generic.Mutable as MG@@ -33,42 +30,64 @@ import Data.Poly.Internal.Dense import Data.Poly.Internal.Dense.GcdDomain () -instance (Eq a, Eq (v a), Field a, G.Vector v a) => Euclidean (Poly v a) where-  degree (Poly xs) = fromIntegral (G.length xs)+-- | Note that 'degree' 0 = 0.+--+-- @since 0.3.0.0+instance (Eq a, Field a, G.Vector v a) => Euclidean (Poly v a) where+  degree (Poly xs)+    | G.null xs = 0+    | otherwise = fromIntegral (G.length xs - 1)    quotRem (Poly xs) (Poly ys) = (toPoly' qs, toPoly' rs)     where-      (qs, rs) = quotientAndRemainder xs ys+      (qs, rs) = quotientAndRemainder zero (== one) minus times (one `quot`) xs ys   {-# INLINE quotRem #-}    rem (Poly xs) (Poly ys) = toPoly' $ remainder xs ys   {-# INLINE rem #-} +-- | Polynomial division with remainder.+--+-- >>> quotRemFractional (X^3 + 2) (X^2 - 1 :: UPoly Double)+-- (1.0 * X + 0.0,1.0 * X + 2.0)+--+-- @since 0.5.0.0+quotRemFractional :: (Eq a, Fractional a, G.Vector v a) => Poly v a -> Poly v a -> (Poly v a, Poly v a)+quotRemFractional (Poly xs) (Poly ys) = (toPoly qs, toPoly rs)+  where+    (qs, rs) = quotientAndRemainder 0 (== 1) (-) (*) recip xs ys+{-# INLINE quotRemFractional #-}+ quotientAndRemainder-  :: (Eq a, Field a, G.Vector v a)-  => v a-  -> v a+  :: (Eq a, G.Vector v a)+  => a             -- ^ zero+  -> (a -> Bool)   -- ^ is one?+  -> (a -> a -> a) -- ^ subtract+  -> (a -> a -> a) -- ^ multiply+  -> (a -> a)      -- ^ invert+  -> v a           -- ^ dividend+  -> v a           -- ^ divisor   -> (v a, v a)-quotientAndRemainder xs ys+quotientAndRemainder zer isOne sub mul inv xs ys   | lenXs < lenYs = (G.empty, xs)   | lenYs == 0 = throw DivideByZero-  | lenYs == 1 = let invY = recip (G.unsafeHead ys) in-                 (G.map (`times` invY) xs, G.empty)+  | lenYs == 1 = let invY = inv (G.unsafeHead ys) in+                 (G.map (`mul` invY) xs, G.empty)   | otherwise = runST $ do     qs <- MG.unsafeNew lenQs     rs <- MG.unsafeNew lenXs     G.unsafeCopy rs xs     let yLast = G.unsafeLast ys-        invYLast = recip yLast+        invYLast = inv yLast     forM_ [lenQs - 1, lenQs - 2 .. 0] $ \i -> do       r <- MG.unsafeRead rs (lenYs - 1 + i)-      let q = if yLast == one then r else r `times` invYLast+      let q = if isOne yLast then r else r `mul` invYLast       MG.unsafeWrite qs i q-      MG.unsafeWrite rs (lenYs - 1 + i) zero+      MG.unsafeWrite rs (lenYs - 1 + i) zer       forM_ [0 .. lenYs - 2] $ \k -> do         let y = G.unsafeIndex ys k-        when (y /= zero) $-          MG.unsafeModify rs (\c -> c `minus` q `times` y) (i + k)+        when (y /= zer) $+          MG.unsafeModify rs (\c -> c `sub` (q `mul` y)) (i + k)     let rs' = MG.unsafeSlice 0 lenYs rs     (,) <$> G.unsafeFreeze qs <*> G.unsafeFreeze rs'   where@@ -92,17 +111,17 @@ {-# INLINABLE remainder #-}  remainderM-  :: (PrimMonad m, Eq a, Field a, G.Vector v a)-  => G.Mutable v (PrimState m) a-  -> G.Mutable v (PrimState m) a-  -> m ()+  :: (Eq a, Field a, G.Vector v a)+  => G.Mutable v s a+  -> G.Mutable v s a+  -> ST s () remainderM xs ys   | lenXs < lenYs = pure ()   | lenYs == 0 = throw DivideByZero   | lenYs == 1 = MG.set xs zero   | otherwise = do     yLast <- MG.unsafeRead ys (lenYs - 1)-    let invYLast = recip yLast+    let invYLast = one `quot` yLast     forM_ [lenQs - 1, lenQs - 2 .. 0] $ \i -> do       r <- MG.unsafeRead xs (lenYs - 1 + i)       MG.unsafeWrite xs (lenYs - 1 + i) zero@@ -116,26 +135,3 @@     lenYs = MG.length ys     lenQs = lenXs - lenYs + 1 {-# INLINABLE remainderM #-}--fieldGcd-  :: (Eq a, Field a, G.Vector v a)-  => Poly v a-  -> Poly v a-  -> Poly v a-fieldGcd (Poly xs) (Poly ys) = toPoly' $ runST $ do-  xs' <- G.thaw xs-  ys' <- G.thaw ys-  gcdM xs' ys'-{-# INLINE fieldGcd #-}--gcdM-  :: (PrimMonad m, Eq a, Field a, G.Vector v a)-  => G.Mutable v (PrimState m) a-  -> G.Mutable v (PrimState m) a-  -> m (v a)-gcdM xs ys = do-  ys' <- dropWhileEndM (== zero) ys-  if MG.null ys' then G.unsafeFreeze xs else do-    remainderM xs ys'-    gcdM ys' xs-{-# INLINE gcdM #-}
src/Data/Poly/Internal/Dense/GcdDomain.hs view
@@ -4,11 +4,11 @@ -- Licence:     BSD3 -- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com> ----- GcdDomain for GcdDomain underlying+-- 'GcdDomain' instance with a 'GcdDomain' constraint on the coefficient type. --  {-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE PatternSynonyms            #-}+{-# LANGUAGE MultiWayIf                 #-} {-# LANGUAGE ScopedTypeVariables        #-} {-# LANGUAGE TypeFamilies               #-} @@ -20,28 +20,37 @@ import Prelude hiding (gcd, lcm, (^)) import Control.Exception import Control.Monad-import Control.Monad.Primitive import Control.Monad.ST import Data.Euclidean+import Data.Maybe import Data.Semiring (Semiring(..), Ring(), isZero, minus) import qualified Data.Vector.Generic as G import qualified Data.Vector.Generic.Mutable as MG  import Data.Poly.Internal.Dense --- | Consider using 'Data.Poly.Semiring.PolyOverField' wrapper,--- which provides a much faster implementation of--- 'Data.Euclidean.gcd' for polynomials over 'Field'.-instance (Eq a, Ring a, GcdDomain a, Eq (v a), G.Vector v a) => GcdDomain (Poly v a) where+-- | @since 0.3.0.0+instance (Eq a, Ring a, GcdDomain a, G.Vector v a) => GcdDomain (Poly v a) where   divide (Poly xs) (Poly ys) =     toPoly' <$> quotient xs ys+  {-# INLINABLE divide #-}    gcd (Poly xs) (Poly ys)     | G.null xs = Poly ys     | G.null ys = Poly xs+    | G.length xs == 1 = Poly $ G.singleton $ G.foldl' gcd (G.unsafeHead xs) ys+    | G.length ys == 1 = Poly $ G.singleton $ G.foldl' gcd (G.unsafeHead ys) xs     | otherwise = toPoly' $ gcdNonEmpty xs ys   {-# INLINE gcd #-} +  lcm x@(Poly xs) y@(Poly ys)+    | G.null xs || G.null ys = zero+    | otherwise = (x `divide'` gcd x y) `times` y+  {-# INLINABLE lcm #-}++  coprime x y = isJust (one `divide` gcd x y)+  {-# INLINABLE coprime #-}+ gcdNonEmpty   :: (Eq a, Ring a, GcdDomain a, G.Vector v a)   => v a@@ -63,20 +72,17 @@     a <- MG.unsafeRead zs' (lenZs - 1)     z <- go a (lenZs - 1) -    let err = error "gcdNonEmpty: violated internal invariant"     forM_ [0 .. lenZs - 1] $ \i ->-      MG.unsafeModify-        zs'-        (\c -> maybe err (`times` xy) (c `divide` z))-        i+      MG.unsafeModify zs'((`times` xy) . (`divide'` z)) i      G.unsafeFreeze zs'+{-# INLINABLE gcdNonEmpty #-}  gcdM-  :: (PrimMonad m, Eq a, Ring a, GcdDomain a, G.Vector v a)-  => G.Mutable v (PrimState m) a-  -> G.Mutable v (PrimState m) a-  -> m (G.Mutable v (PrimState m) a)+  :: (Eq a, Ring a, GcdDomain a, G.Vector v a)+  => G.Mutable v s a+  -> G.Mutable v s a+  -> ST s (G.Mutable v s a) gcdM xs ys   | MG.null xs = pure ys   | MG.null ys = pure xs@@ -85,42 +91,64 @@       lenYs = MG.length ys   xLast <- MG.unsafeRead xs (lenXs - 1)   yLast <- MG.unsafeRead ys (lenYs - 1)-  let z = xLast `lcm` yLast-      zx = case z `divide` xLast of-        Nothing -> error "gcdM: highest coefficient is 0"-        Just t  -> t-      zy = case z `divide` yLast of-        Nothing -> error "gcdM: highest coefficient is 0"-        Just t  -> t+  let z  = xLast `lcm` yLast+      zx = z `divide'` xLast+      zy = z `divide'` yLast -  if lenXs <= lenYs then do-    forM_ [0 .. lenXs - 1] $ \i -> do-      x <- MG.unsafeRead xs i-      MG.unsafeModify-        ys-        (\y -> (y `times` zy) `minus` x `times` zx)-        (i + lenYs - lenXs)-    forM_ [0 .. lenYs - lenXs - 1] $-      MG.unsafeModify ys (`times` zy)-    ys' <- dropWhileEndM isZero ys-    gcdM xs ys'-  else do-    forM_ [0 .. lenYs - 1] $ \i -> do-      y <- MG.unsafeRead ys i-      MG.unsafeModify-        xs-        (\x -> (x `times` zx) `minus` y `times` zy)-        (i + lenXs - lenYs)-    forM_ [0 .. lenXs - lenYs - 1] $-      MG.unsafeModify xs (`times` zx)-    xs' <- dropWhileEndM isZero xs-    gcdM xs' ys+  if+    | lenYs <= lenXs+    , Just xy <- xLast `divide` yLast -> do+      forM_ [0 .. lenYs - 1] $ \i -> do+        y <- MG.unsafeRead ys i+        when (y /= zero) $+          MG.unsafeModify+            xs+            (\x -> x `minus` y `times` xy)+            (i + lenXs - lenYs)+      xs' <- dropWhileEndM isZero xs+      gcdM xs' ys+    | lenXs <= lenYs+    , Just yx <- yLast `divide` xLast -> do+      forM_ [0 .. lenXs - 1] $ \i -> do+        x <- MG.unsafeRead xs i+        when (x /= zero) $+          MG.unsafeModify+            ys+            (\y -> y `minus` x `times` yx)+            (i + lenYs - lenXs)+      ys' <- dropWhileEndM isZero ys+      gcdM xs ys'+    | lenYs <= lenXs -> do+      forM_ [0 .. lenYs - 1] $ \i -> do+        y <- MG.unsafeRead ys i+        MG.unsafeModify+          xs+          (\x -> x `times` zx `minus` y `times` zy)+          (i + lenXs - lenYs)+      forM_ [0 .. lenXs - lenYs - 1] $+        MG.unsafeModify xs (`times` zx)+      xs' <- dropWhileEndM isZero xs+      gcdM xs' ys+    | otherwise -> do+      forM_ [0 .. lenXs - 1] $ \i -> do+        x <- MG.unsafeRead xs i+        MG.unsafeModify+          ys+          (\y -> y `times` zy `minus` x `times` zx)+          (i + lenYs - lenXs)+      forM_ [0 .. lenYs - lenXs - 1] $+        MG.unsafeModify ys (`times` zy)+      ys' <- dropWhileEndM isZero ys+      gcdM xs ys' {-# INLINABLE gcdM #-} +divide' :: GcdDomain a => a -> a -> a+divide' = (fromMaybe (error "gcd: violated internal invariant") .) . divide+ isZeroM-  :: (Eq a, Semiring a, PrimMonad m, G.Vector v a)-  => G.Mutable v (PrimState m) a-  -> m Bool+  :: (Eq a, Semiring a, G.Vector v a)+  => G.Mutable v s a+  -> ST s Bool isZeroM xs = go (MG.length xs)   where     go 0 = pure True@@ -130,7 +158,7 @@ {-# INLINE isZeroM #-}  quotient-  :: (Eq a, Eq (v a), Ring a, GcdDomain a, G.Vector v a)+  :: (Eq a, Ring a, GcdDomain a, G.Vector v a)   => v a   -> v a   -> Maybe (v a)@@ -158,7 +186,7 @@               Nothing -> pure Nothing               Just q -> do                 MG.unsafeWrite qs i q-                forM_ [0 .. lenYs - 1] $ \k -> do+                forM_ [0 .. lenYs - 1] $ \k ->                   MG.unsafeModify                     rs                     (\c -> c `minus` q `times` G.unsafeIndex ys k)
+ src/Data/Poly/Internal/Dense/Laurent.hs view
@@ -0,0 +1,326 @@+-- |+-- Module:      Data.Poly.Internal.Dense.Laurent+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>.+--++{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE KindSignatures             #-}+{-# LANGUAGE PatternSynonyms            #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE ViewPatterns               #-}++module Data.Poly.Internal.Dense.Laurent+  ( Laurent+  , VLaurent+  , ULaurent+  , unLaurent+  , toLaurent+  , leading+  , monomial+  , scale+  , pattern X+  , (^-)+  , eval+  , subst+  , deriv+  ) where++import Prelude hiding (quotRem, quot, rem, gcd, lcm)+import Control.Arrow (first)+import Control.DeepSeq (NFData(..))+import Control.Exception+import Data.Euclidean (GcdDomain(..), Euclidean(..), Field)+import Data.Kind+import Data.List (intersperse)+import Data.Semiring (Semiring(..), Ring())+import qualified Data.Semiring as Semiring+import qualified Data.Vector as V+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Unboxed as U++import Data.Poly.Internal.Dense (Poly(..))+import qualified Data.Poly.Internal.Dense as Dense+import Data.Poly.Internal.Dense.Field ()+import Data.Poly.Internal.Dense.GcdDomain ()++-- | <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>+-- of one variable with coefficients from @a@,+-- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).+--+-- Use the pattern 'X' and the '^-' operator for construction:+--+-- >>> (X + 1) + (X^-1 - 1) :: VLaurent Integer+-- 1 * X + 0 + 1 * X^-1+-- >>> (X + 1) * (1 - X^-1) :: ULaurent Int+-- 1 * X + 0 + (-1) * X^-1+--+-- Polynomials are stored normalized, without leading+-- and trailing+-- zero coefficients, so 0 * X + 1 + 0 * X^-1 equals to 1.+--+-- The 'Ord' instance does not make much sense mathematically,+-- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.+--+-- Due to being polymorphic by multiple axis, the performance of `Laurent` crucially+-- depends on specialisation of instances. Clients are strongly recommended+-- to compile with @ghc-options:@ @-fspecialise-aggressively@ and suggested to enable @-O2@.+--+-- @since 0.4.0.0+--+data Laurent (v :: Type -> Type) (a :: Type) = Laurent !Int !(Poly v a)+  deriving (Eq, Ord)++-- | Deconstruct a 'Laurent' polynomial into an offset (largest possible)+-- and a regular polynomial.+--+-- >>> unLaurent (2 * X + 1 :: ULaurent Int)+-- (0,2 * X + 1)+-- >>> unLaurent (1 + 2 * X^-1 :: ULaurent Int)+-- (-1,1 * X + 2)+-- >>> unLaurent (2 * X^2 + X :: ULaurent Int)+-- (1,2 * X + 1)+-- >>> unLaurent (0 :: ULaurent Int)+-- (0,0)+--+-- @since 0.4.0.0+unLaurent :: Laurent v a -> (Int, Poly v a)+unLaurent (Laurent off poly) = (off, poly)++-- | Construct 'Laurent' polynomial from an offset and a regular polynomial.+-- One can imagine it as 'Data.Poly.Semiring.scale', but allowing negative offsets.+--+-- >>> toLaurent 2 (2 * Data.Poly.X + 1) :: ULaurent Int+-- 2 * X^3 + 1 * X^2+-- >>> toLaurent (-2) (2 * Data.Poly.X + 1) :: ULaurent Int+-- 2 * X^-1 + 1 * X^-2+--+-- @since 0.4.0.0+toLaurent+  :: (Eq a, Semiring a, G.Vector v a)+  => Int+  -> Poly v a+  -> Laurent v a+toLaurent off (Poly xs) = go 0+  where+    go k+      | k >= G.length xs+      = Laurent 0 zero+      | G.unsafeIndex xs k == zero+      = go (k + 1)+      | otherwise+      = Laurent (off + k) (Poly (G.unsafeDrop k xs))+{-# INLINE toLaurent #-}++toLaurentNum+  :: (Eq a, Num a, G.Vector v a)+  => Int+  -> Poly v a+  -> Laurent v a+toLaurentNum off (Poly xs) = go 0+  where+    go k+      | k >= G.length xs+      = Laurent 0 0+      | G.unsafeIndex xs k == 0+      = go (k + 1)+      | otherwise+      = Laurent (off + k) (Poly (G.unsafeDrop k xs))+{-# INLINE toLaurentNum #-}++instance NFData (v a) => NFData (Laurent v a) where+  rnf (Laurent off poly) = rnf off `seq` rnf poly++instance (Show a, G.Vector v a) => Show (Laurent v a) where+  showsPrec d (Laurent off poly)+    | G.null (unPoly poly)+      = showString "0"+    | otherwise+      = showParen (d > 0)+      $ foldl (.) id+      $ intersperse (showString " + ")+      $ G.ifoldl (\acc i c -> showCoeff (i + off) c : acc) []+      $ unPoly poly+    where+      -- Negative powers should be displayed without surrounding brackets+      showCoeff 0 c = showsPrec 7 c+      showCoeff 1 c = showsPrec 7 c . showString " * X"+      showCoeff i c = showsPrec 7 c . showString (" * X^" ++ show i)++-- | Laurent polynomials backed by boxed vectors.+--+-- @since 0.4.0.0+type VLaurent = Laurent V.Vector++-- | Laurent polynomials backed by unboxed vectors.+--+-- @since 0.4.0.0+type ULaurent = Laurent U.Vector++-- | Return the leading power and coefficient of a non-zero polynomial.+--+-- >>> leading ((2 * X + 1) * (2 * X^2 - 1) :: ULaurent Int)+-- Just (3,4)+-- >>> leading (0 :: ULaurent Int)+-- Nothing+--+-- @since 0.4.0.0+leading :: G.Vector v a => Laurent v a -> Maybe (Int, a)+leading (Laurent off poly) = first ((+ off) . fromIntegral) <$> Dense.leading poly+{-# INLINABLE leading #-}++-- | Note that 'abs' = 'id' and 'signum' = 'const' 1.+instance (Eq a, Num a, G.Vector v a) => Num (Laurent v a) where+  Laurent off1 poly1 * Laurent off2 poly2 = toLaurentNum (off1 + off2) (poly1 * poly2)+  Laurent off1 poly1 + Laurent off2 poly2 = case off1 `compare` off2 of+    LT -> toLaurentNum off1 (poly1 + Dense.scale (fromIntegral $ off2 - off1) 1 poly2)+    EQ -> toLaurentNum off1 (poly1 + poly2)+    GT -> toLaurentNum off2 (Dense.scale (fromIntegral $ off1 - off2) 1 poly1 + poly2)+  Laurent off1 poly1 - Laurent off2 poly2 = case off1 `compare` off2 of+    LT -> toLaurentNum off1 (poly1 - Dense.scale (fromIntegral $ off2 - off1) 1 poly2)+    EQ -> toLaurentNum off1 (poly1 - poly2)+    GT -> toLaurentNum off2 (Dense.scale (fromIntegral $ off1 - off2) 1 poly1 - poly2)+  negate (Laurent off poly) = Laurent off (negate poly)+  abs = id+  signum = const 1+  fromInteger n = Laurent 0 (fromInteger n)+  {-# INLINE (+) #-}+  {-# INLINE (-) #-}+  {-# INLINE negate #-}+  {-# INLINE fromInteger #-}+  {-# INLINE (*) #-}++instance (Eq a, Semiring a, G.Vector v a) => Semiring (Laurent v a) where+  zero = Laurent 0 zero+  one  = Laurent 0 one+  Laurent off1 poly1 `times` Laurent off2 poly2 =+    toLaurent (off1 + off2) (poly1 `times` poly2)+  Laurent off1 poly1 `plus` Laurent off2 poly2 = case off1 `compare` off2 of+    LT -> toLaurent off1 (poly1 `plus` Dense.scale' (fromIntegral $ off2 - off1) one poly2)+    EQ -> toLaurent off1 (poly1 `plus` poly2)+    GT -> toLaurent off2 (Dense.scale' (fromIntegral $ off1 - off2) one poly1 `plus` poly2)+  fromNatural n = Laurent 0 (fromNatural n)+  {-# INLINE zero #-}+  {-# INLINE one #-}+  {-# INLINE plus #-}+  {-# INLINE times #-}+  {-# INLINE fromNatural #-}++instance (Eq a, Ring a, G.Vector v a) => Ring (Laurent v a) where+  negate (Laurent off poly) = Laurent off (Semiring.negate poly)++-- | Create a monomial from a power and a coefficient.+--+-- @since 0.4.0.0+monomial :: (Eq a, Semiring a, G.Vector v a) => Int -> a -> Laurent v a+monomial p c+  | c == zero = Laurent 0 zero+  | otherwise = Laurent p (Dense.monomial' 0 c)+{-# INLINE monomial #-}++-- | Multiply a polynomial by a monomial, expressed as a power and a coefficient.+--+-- >>> scale 2 3 (X^-2 + 1) :: ULaurent Int+-- 3 * X^2 + 0 * X + 3+--+-- @since 0.4.0.0+scale :: (Eq a, Semiring a, G.Vector v a) => Int -> a -> Laurent v a -> Laurent v a+scale yp yc (Laurent off poly) = toLaurent (off + yp) (Dense.scale' 0 yc poly)+{-# INLINABLE scale #-}++-- | Evaluate the polynomial at a given point.+--+-- >>> eval (X^-2 + 1 :: ULaurent Double) 2+-- 1.25+--+-- @since 0.4.0.0+eval :: (Field a, G.Vector v a) => Laurent v a -> a -> a+eval (Laurent off poly) x = Dense.eval' poly x `times`+  (if off >= 0 then x Semiring.^ off else quot one x Semiring.^ (- off))+{-# INLINE eval #-}++-- | Substitute another polynomial instead of 'Data.Poly.X'.+--+-- >>> import Data.Poly (UPoly)+-- >>> subst (Data.Poly.X^2 + 1 :: UPoly Int) (X^-1 + 1 :: ULaurent Int)+-- 2 + 2 * X^-1 + 1 * X^-2+--+-- @since 0.4.0.0+subst :: (Eq a, Semiring a, G.Vector v a, G.Vector w a) => Poly v a -> Laurent w a -> Laurent w a+subst = Dense.substitute' (scale 0)+{-# INLINE subst #-}++-- | Take the derivative of the polynomial.+--+-- >>> deriv (X^-1 + 3 * X) :: ULaurent Int+-- 3 + 0 * X^-1 + (-1) * X^-2+--+-- @since 0.4.0.0+deriv :: (Eq a, Ring a, G.Vector v a) => Laurent v a -> Laurent v a+deriv (Laurent off (Poly xs)) =+  toLaurent (off - 1) $ Dense.toPoly' $ G.imap (times . Semiring.fromIntegral . (+ off)) xs+{-# INLINE deriv #-}++-- | The polynomial 'X'.+--+-- > X == monomial 1 one+--+-- @since 0.4.0.0+pattern X :: (Eq a, Semiring a, G.Vector v a) => Laurent v a+pattern X <- (isVar -> True)+  where X = var++var :: forall a v. (Eq a, Semiring a, G.Vector v a) => Laurent v a+var+  | (one :: a) == zero = Laurent 0 zero+  | otherwise          = Laurent 1 one+{-# INLINE var #-}++isVar :: forall v a. (Eq a, Semiring a, G.Vector v a) => Laurent v a -> Bool+isVar (Laurent off (Poly xs))+  | (one :: a) == zero = off == 0 && G.null xs+  | otherwise          = off == 1 && G.length xs == 1 && G.unsafeHead xs == one+{-# INLINE isVar #-}++-- | Used to construct monomials with negative powers.+--+-- This operator can be applied only to monomials with unit coefficients,+-- but is instrumental to express Laurent polynomials+-- in a mathematical fashion:+--+-- >>> X^-3 :: ULaurent Int+-- 1 * X^-3+-- >>> X + 2 + 3 * (X^2)^-1 :: ULaurent Int+-- 1 * X + 2 + 0 * X^-1 + 3 * X^-2+--+-- @since 0.4.0.0+(^-)+  :: (Eq a, Num a, G.Vector v a)+  => Laurent v a+  -> Int+  -> Laurent v a+Laurent off (Poly xs) ^- n+  | G.length xs == 1, G.unsafeHead xs == 1+  = Laurent (off * (-n)) (Poly xs)+  | otherwise+  = throw $ PatternMatchFail "(^-) can be applied only to a monom with unit coefficient"++instance (Eq a, Ring a, GcdDomain a, G.Vector v a) => GcdDomain (Laurent v a) where+  divide (Laurent off1 poly1) (Laurent off2 poly2) =+    toLaurent (off1 - off2) <$> divide poly1 poly2+  {-# INLINE divide #-}++  gcd (Laurent _ poly1) (Laurent _ poly2) =+    toLaurent 0 (gcd poly1 poly2)+  {-# INLINE gcd #-}++  lcm (Laurent _ poly1) (Laurent _ poly2) =+    toLaurent 0 (lcm poly1 poly2)+  {-# INLINE lcm #-}++  coprime (Laurent _ poly1) (Laurent _ poly2) =+    coprime poly1 poly2+  {-# INLINE coprime #-}
+ src/Data/Poly/Internal/Multi.hs view
@@ -0,0 +1,612 @@+-- |+-- Module:      Data.Poly.Internal.Multi+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--++{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE GADTs                      #-}+{-# LANGUAGE GeneralizedNewtypeDeriving #-}+{-# LANGUAGE LambdaCase                 #-}+{-# LANGUAGE PatternSynonyms            #-}+{-# LANGUAGE PolyKinds                  #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE StandaloneDeriving         #-}+{-# LANGUAGE TypeApplications           #-}+{-# LANGUAGE TypeFamilies               #-}+{-# LANGUAGE TypeOperators              #-}+{-# LANGUAGE UndecidableInstances       #-}+{-# LANGUAGE ViewPatterns               #-}++{-# OPTIONS_GHC -fno-warn-orphans #-}++module Data.Poly.Internal.Multi+  ( MultiPoly(..)+  , VMultiPoly+  , UMultiPoly+  , toMultiPoly+  , toMultiPoly'+  , leading+  , monomial+  , monomial'+  , scale+  , scale'+  , pattern X+  , pattern Y+  , pattern Z+  , pattern X'+  , pattern Y'+  , pattern Z'+  , eval+  , eval'+  , subst+  , subst'+  , substitute+  , substitute'+  , deriv+  , deriv'+  , integral+  , integral'+  -- * Univariate polynomials+  , Poly+  , VPoly+  , UPoly+  , unPoly+  -- * Conversions+  , segregate+  , unsegregate+  ) where++import Prelude hiding (quot, gcd)+import Control.Arrow+import Control.DeepSeq+import Data.Coerce+import Data.Euclidean (Field, quot)+import Data.Finite+import Data.Kind+import Data.List (intersperse)+import Data.Semiring (Semiring(..), Ring())+import qualified Data.Semiring as Semiring+import qualified Data.Vector as V+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Sized as SG+import qualified Data.Vector.Unboxed as U+import qualified Data.Vector.Unboxed.Sized as SU+import qualified Data.Vector.Sized as SV+import GHC.Exts (IsList(..))+import GHC.TypeNats (KnownNat, Nat, type (+), type (<=))++import Data.Poly.Internal.Multi.Core++-- | Sparse polynomials of @n@ variables with coefficients from @a@,+-- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).+--+-- Use the patterns 'Data.Poly.Multi.X',+-- 'Data.Poly.Multi.Y' and+-- 'Data.Poly.Multi.Z' for construction:+--+-- >>> :set -XDataKinds+-- >>> (X + 1) + (Y - 1) + Z :: VMultiPoly 3 Integer+-- 1 * X + 1 * Y + 1 * Z+-- >>> (X + 1) * (Y - 1) :: UMultiPoly 2 Int+-- 1 * X * Y + (-1) * X + 1 * Y + (-1)+--+-- Polynomials are stored normalized, without+-- zero coefficients, so 0 * 'Data.Poly.Multi.X' + 1 equals to 1.+--+-- The 'Ord' instance does not make much sense mathematically,+-- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.+--+-- Due to being polymorphic by multiple axis, the performance of `MultiPoly` crucially+-- depends on specialisation of instances. Clients are strongly recommended+-- to compile with @ghc-options:@ @-fspecialise-aggressively@ and suggested to enable @-O2@.+--+-- @since 0.5.0.0+newtype MultiPoly (v :: Type -> Type) (n :: Nat) (a :: Type) = MultiPoly+  { unMultiPoly :: v (SU.Vector n Word, a)+  -- ^ Convert a 'MultiPoly' to a vector of (powers, coefficient) pairs.+  --+  -- @since 0.5.0.0+  }++deriving instance Eq     (v (SU.Vector n Word, a)) => Eq     (MultiPoly v n a)+deriving instance Ord    (v (SU.Vector n Word, a)) => Ord    (MultiPoly v n a)+deriving instance NFData (v (SU.Vector n Word, a)) => NFData (MultiPoly v n a)++-- | Multivariate polynomials backed by boxed vectors.+--+-- @since 0.5.0.0+type VMultiPoly (n :: Nat) (a :: Type) = MultiPoly V.Vector n a++-- | Multivariate polynomials backed by unboxed vectors.+--+-- @since 0.5.0.0+type UMultiPoly (n :: Nat) (a :: Type) = MultiPoly U.Vector n a++-- | Sparse univariate polynomials with coefficients from @a@,+-- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).+--+-- Use pattern 'Data.Poly.Multi.X' for construction:+--+-- >>> (X + 1) + (X - 1) :: VPoly Integer+-- 2 * X+-- >>> (X + 1) * (X - 1) :: UPoly Int+-- 1 * X^2 + (-1)+--+-- Polynomials are stored normalized, without+-- zero coefficients, so 0 * 'Data.Poly.Multi.X' + 1 equals to 1.+--+-- 'Ord' instance does not make much sense mathematically,+-- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.+--+-- Due to being polymorphic by multiple axis, the performance of `Poly` crucially+-- depends on specialisation of instances. Clients are strongly recommended+-- to compile with @ghc-options:@ @-fspecialise-aggressively@ and suggested to enable @-O2@.+--+-- @since 0.3.0.0+type Poly (v :: Type -> Type) (a :: Type) = MultiPoly v 1 a++-- | Polynomials backed by boxed vectors.+--+-- @since 0.3.0.0+type VPoly (a :: Type) = Poly V.Vector a++-- | Polynomials backed by unboxed vectors.+--+-- @since 0.3.0.0+type UPoly (a :: Type) = Poly U.Vector a++-- | Convert a 'Poly' to a vector of coefficients.+--+-- @since 0.3.0.0+unPoly+  :: (G.Vector v (Word, a), G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> v (Word, a)+unPoly = G.map (first SU.head) . unMultiPoly++instance (Eq a, Semiring a, G.Vector v (SU.Vector n Word, a)) => IsList (MultiPoly v n a) where+  type Item (MultiPoly v n a) = (SU.Vector n Word, a)+  fromList = toMultiPoly' . G.fromList+  fromListN = (toMultiPoly' .) . G.fromListN+  toList = G.toList . unMultiPoly++instance (Show a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Show (MultiPoly v n a) where+  showsPrec d (MultiPoly xs)+    | G.null xs+      = showString "0"+    | otherwise+      = showParen (d > 0)+      $ foldl (.) id+      $ intersperse (showString " + ")+      $ G.foldl (\acc (is, c) -> showCoeff is c : acc) [] xs+    where+      showCoeff is c+        = showsPrec 7 c . foldl (.) id+        ( map ((showString " * " .) . uncurry showPower)+        $ filter ((/= 0) . fst)+        $ zip (SU.toList is) (finites :: [Finite n]))++      -- Powers are guaranteed to be non-negative+      showPower :: Word -> Finite n -> String -> String+      showPower 1 n = showString (showVar n)+      showPower i n = showString (showVar n) . showString ("^" ++ show i)++      showVar :: Finite n -> String+      showVar = \case+        0 -> "X"+        1 -> "Y"+        2 -> "Z"+        k -> "X" ++ show k++-- | Make a 'MultiPoly' from a list of (powers, coefficient) pairs.+--+-- >>> :set -XOverloadedLists -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> toMultiPoly [(fromTuple (0,0),1),(fromTuple (0,1),2),(fromTuple (1,0),3)] :: VMultiPoly 2 Integer+-- 3 * X + 2 * Y + 1+-- >>> toMultiPoly [(fromTuple (0,0),0),(fromTuple (0,1),0),(fromTuple (1,0),0)] :: UMultiPoly 2 Int+-- 0+--+-- @since 0.5.0.0+toMultiPoly+  :: (Eq a, Num a, G.Vector v (SU.Vector n Word, a))+  => v (SU.Vector n Word, a)+  -> MultiPoly v n a+toMultiPoly = MultiPoly . normalize (/= 0) (+)+{-# INLINABLE toMultiPoly #-}++toMultiPoly'+  :: (Eq a, Semiring a, G.Vector v (SU.Vector n Word, a))+  => v (SU.Vector n Word, a)+  -> MultiPoly v n a+toMultiPoly' = MultiPoly . normalize (/= zero) plus+{-# INLINABLE toMultiPoly' #-}++-- | Note that 'abs' = 'id' and 'signum' = 'const' 1.+instance (Eq a, Num a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Num (MultiPoly v n a) where++  (+) = coerce (plusPoly    @v @(SU.Vector n Word) @a (/= 0) (+))+  (-) = coerce (minusPoly   @v @(SU.Vector n Word) @a (/= 0) negate (-))+  (*) = coerce (convolution @v @(SU.Vector n Word) @a (/= 0) (+) (*))++  negate (MultiPoly xs) = MultiPoly $ G.map (fmap negate) xs+  abs = id+  signum = const 1+  fromInteger n = case fromInteger n of+    0 -> MultiPoly G.empty+    m -> MultiPoly $ G.singleton (0, m)++  {-# INLINE (+) #-}+  {-# INLINE (-) #-}+  {-# INLINE negate #-}+  {-# INLINE fromInteger #-}+  {-# INLINE (*) #-}++instance (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Semiring (MultiPoly v n a) where+  zero = MultiPoly G.empty+  one+    | (one :: a) == zero = zero+    | otherwise = MultiPoly $ G.singleton (0, one)++  plus  = coerce (plusPoly    @v @(SU.Vector n Word) @a (/= zero) plus)+  times = coerce (convolution @v @(SU.Vector n Word) @a (/= zero) plus times)++  {-# INLINE zero #-}+  {-# INLINE one #-}+  {-# INLINE plus #-}+  {-# INLINE times #-}++  fromNatural n = if n' == zero then zero else MultiPoly $ G.singleton (0, n')+    where+      n' :: a+      n' = fromNatural n+  {-# INLINE fromNatural #-}++instance (Eq a, Ring a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Ring (MultiPoly v n a) where+  negate (MultiPoly xs) = MultiPoly $ G.map (fmap Semiring.negate) xs++-- | Return the leading power and coefficient of a non-zero polynomial.+--+-- >>> import Data.Poly.Sparse (UPoly)+-- >>> leading ((2 * X + 1) * (2 * X^2 - 1) :: UPoly Int)+-- Just (3,4)+-- >>> leading (0 :: UPoly Int)+-- Nothing+--+-- @since 0.3.0.0+leading :: G.Vector v (SU.Vector 1 Word, a) => Poly v a -> Maybe (Word, a)+leading (MultiPoly v)+  | G.null v  = Nothing+  | otherwise = Just $ first SU.head $ G.last v++-- | Multiply a polynomial by a monomial, expressed as powers and a coefficient.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> scale (fromTuple (1, 1)) 3 (X^2 + Y) :: UMultiPoly 2 Int+-- 3 * X^3 * Y + 3 * X * Y^2+--+-- @since 0.5.0.0+scale+  :: (Eq a, Num a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Word+  -> a+  -> MultiPoly v n a+  -> MultiPoly v n a+scale yp yc = MultiPoly . scaleInternal (/= 0) (*) yp yc . unMultiPoly++scale'+  :: (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Word+  -> a+  -> MultiPoly v n a+  -> MultiPoly v n a+scale' yp yc = MultiPoly . scaleInternal (/= zero) times yp yc . unMultiPoly++-- | Create a monomial from powers and a coefficient.+--+-- @since 0.5.0.0+monomial+  :: (Eq a, Num a, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Word+  -> a+  -> MultiPoly v n a+monomial p c+  | c == 0    = MultiPoly G.empty+  | otherwise = MultiPoly $ G.singleton (p, c)+{-# INLINABLE monomial #-}++monomial'+  :: (Eq a, Semiring a, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Word+  -> a+  -> MultiPoly v n a+monomial' p c+  | c == zero = MultiPoly G.empty+  | otherwise = MultiPoly $ G.singleton (p, c)+{-# INLINABLE monomial' #-}++-- | Evaluate the polynomial at a given point.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> eval (X^2 + Y^2 :: UMultiPoly 2 Int) (fromTuple (3, 4) :: Data.Vector.Sized.Vector 2 Int)+-- 25+--+-- @since 0.5.0.0+eval+  :: (Num a, G.Vector v (SU.Vector n Word, a), G.Vector u a)+  => MultiPoly v n a+  -> SG.Vector u n a+  -> a+eval = substitute (*)+{-# INLINE eval #-}++eval'+  :: (Semiring a, G.Vector v (SU.Vector n Word, a), G.Vector u a)+  => MultiPoly v n a+  -> SG.Vector u n a+  -> a+eval' = substitute' times+{-# INLINE eval' #-}++-- | Substitute other polynomials instead of the variables.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> subst (X^2 + Y^2 + Z^2 :: UMultiPoly 3 Int) (fromTuple (X + 1, Y + 1, X + Y :: UMultiPoly 2 Int))+-- 2 * X^2 + 2 * X * Y + 2 * X + 2 * Y^2 + 2 * Y + 2+--+-- @since 0.5.0.0+subst+  :: (Eq a, Num a, KnownNat m, G.Vector v (SU.Vector n Word, a), G.Vector w (SU.Vector m Word, a))+  => MultiPoly v n a+  -> SV.Vector n (MultiPoly w m a)+  -> MultiPoly w m a+subst = substitute (scale 0)+{-# INLINE subst #-}++subst'+  :: (Eq a, Semiring a, KnownNat m, G.Vector v (SU.Vector n Word, a), G.Vector w (SU.Vector m Word, a))+  => MultiPoly v n a+  -> SV.Vector n (MultiPoly w m a)+  -> MultiPoly w m a+subst' = substitute' (scale' 0)+{-# INLINE subst' #-}++substitute+  :: forall v u n a b.+     (G.Vector v (SU.Vector n Word, a), G.Vector u b, Num b)+  => (a -> b -> b)+  -> MultiPoly v n a+  -> SG.Vector u n b+  -> b+substitute f (MultiPoly cs) xs = G.foldl' go 0 cs+  where+    go :: b -> (SU.Vector n Word, a) -> b+    go acc (ps, c) = acc + f c (doMonom ps)++    doMonom :: SU.Vector n Word -> b+    doMonom = SU.ifoldl' (\acc i p -> acc * ((xs `SG.index` i) ^ p)) 1+{-# INLINE substitute #-}++substitute'+  :: forall v u n a b.+     (G.Vector v (SU.Vector n Word, a), G.Vector u b, Semiring b)+  => (a -> b -> b)+  -> MultiPoly v n a+  -> SG.Vector u n b+  -> b+substitute' f (MultiPoly cs) xs = G.foldl' go zero cs+  where+    go :: b -> (SU.Vector n Word, a) -> b+    go acc (ps, c) = acc `plus` f c (doMonom ps)++    doMonom :: SU.Vector n Word -> b+    doMonom = SU.ifoldl' (\acc i p -> acc `times` ((xs `SG.index` i) Semiring.^ p)) one+{-# INLINE substitute' #-}++-- | Take the derivative of the polynomial with respect to the /i/-th variable.+--+-- >>> :set -XDataKinds+-- >>> deriv 0 (X^3 + 3 * Y) :: UMultiPoly 2 Int+-- 3 * X^2+-- >>> deriv 1 (X^3 + 3 * Y) :: UMultiPoly 2 Int+-- 3+--+-- @since 0.5.0.0+deriv+  :: (Eq a, Num a, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> MultiPoly v n a+deriv i (MultiPoly xs) = MultiPoly $ derivPoly+  (/= 0)+  (\ps -> ps SU.// [(i, ps `SU.index` i - 1)])+  (\ps c -> fromIntegral (ps `SU.index` i) * c)+  xs+{-# INLINE deriv #-}++deriv'+  :: (Eq a, Semiring a, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> MultiPoly v n a+deriv' i (MultiPoly xs) = MultiPoly $ derivPoly+  (/= zero)+  (\ps -> ps SU.// [(i, ps `SU.index` i - 1)])+  (\ps c -> fromNatural (fromIntegral (ps `SU.index` i)) `times` c)+  xs+{-# INLINE deriv' #-}++-- | Compute an indefinite integral of the polynomial+-- with respect to the /i/-th variable,+-- setting the constant term to zero.+--+-- >>> :set -XDataKinds+-- >>> integral 0 (3 * X^2 + 2 * Y) :: UMultiPoly 2 Double+-- 1.0 * X^3 + 2.0 * X * Y+-- >>> integral 1 (3 * X^2 + 2 * Y) :: UMultiPoly 2 Double+-- 3.0 * X^2 * Y + 1.0 * Y^2+--+-- @since 0.5.0.0+integral+  :: (Fractional a, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> MultiPoly v n a+integral i (MultiPoly xs)+  = MultiPoly+  $ G.map (\(ps, c) -> let p = ps `SU.index` i in+    (ps SU.// [(i, p + 1)], c / fromIntegral (p + 1))) xs+{-# INLINE integral #-}++integral'+  :: (Field a, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> MultiPoly v n a+integral' i (MultiPoly xs)+  = MultiPoly+  $ G.map (\(ps, c) -> let p = ps `SU.index` i in+    (ps SU.// [(i, p + 1)], c `quot` Semiring.fromIntegral (p + 1))) xs+{-# INLINE integral' #-}++-- | Create a polynomial equal to the first variable.+--+-- @since 0.5.0.0+pattern X+  :: (Eq a, Num a, KnownNat n, 1 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern X <- (isVar 0 -> True)+  where X = var 0++pattern X'+  :: (Eq a, Semiring a, KnownNat n, 1 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern X' <- (isVar' 0 -> True)+  where X' = var' 0++-- | Create a polynomial equal to the second variable.+--+-- @since 0.5.0.0+pattern Y+  :: (Eq a, Num a, KnownNat n, 2 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern Y <- (isVar 1 -> True)+  where Y = var 1++pattern Y'+  :: (Eq a, Semiring a, KnownNat n, 2 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern Y' <- (isVar' 1 -> True)+  where Y' = var' 1++-- | Create a polynomial equal to the third variable.+--+-- @since 0.5.0.0+pattern Z+  :: (Eq a, Num a, KnownNat n, 3 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern Z <- (isVar 2 -> True)+  where Z = var 2++pattern Z'+  :: (Eq a, Semiring a, KnownNat n, 3 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern Z' <- (isVar' 2 -> True)+  where Z' = var' 2++var+  :: forall v n a.+     (Eq a, Num a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+var i+  | (1 :: a) == 0 = MultiPoly G.empty+  | otherwise     = MultiPoly $ G.singleton+    (SU.generate (\j -> if i == j then 1 else 0), 1)+{-# INLINE var #-}++var'+  :: forall v n a.+     (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+var' i+  | (one :: a) == zero = MultiPoly G.empty+  | otherwise          = MultiPoly $ G.singleton+    (SU.generate (\j -> if i == j then 1 else 0), one)+{-# INLINE var' #-}++isVar+  :: forall v n a.+     (Eq a, Num a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> Bool+isVar i (MultiPoly xs)+  | (1 :: a) == 0 = G.null xs+  | otherwise     = G.length xs == 1 && G.unsafeHead xs == (SU.generate (\j -> if i == j then 1 else 0), 1)+{-# INLINE isVar #-}++isVar'+  :: forall v n a.+     (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> Bool+isVar' i (MultiPoly xs)+  | (one :: a) == zero = G.null xs+  | otherwise          = G.length xs == 1 && G.unsafeHead xs == (SU.generate (\j -> if i == j then 1 else 0), one)+{-# INLINE isVar' #-}++-------------------------------------------------------------------------------++groupOn :: (G.Vector v a, Eq b) => (a -> b) -> v a -> [v a]+groupOn f = go+  where+    go xs+      | G.null xs = []+      | otherwise = case mk of+        Nothing -> [xs]+        Just k  -> G.unsafeTake (k + 1) xs : go (G.unsafeDrop (k + 1) xs)+        where+          fy = f (G.unsafeHead xs)+          mk = G.findIndex ((/= fy) . f) (G.unsafeTail xs)++-- | Interpret a multivariate polynomial over 1+/m/ variables+-- as a univariate polynomial, whose coefficients are+-- multivariate polynomials over the last /m/ variables.+--+-- @since 0.5.0.0+segregate+  :: (G.Vector v (SU.Vector (1 + m) Word, a), G.Vector v (SU.Vector m Word, a))+  => MultiPoly v (1 + m) a+  -> VPoly (MultiPoly v m a)+segregate+  = MultiPoly+  . G.fromList+  . map (\vs -> (SU.take (fst (G.unsafeHead vs)), MultiPoly $ G.map (first SU.tail) vs))+  . groupOn (SU.head . fst)+  . unMultiPoly++-- | Interpret a univariate polynomials, whose coefficients are+-- multivariate polynomials over the first /m/ variables,+-- as a multivariate polynomial over 1+/m/ variables.+--+-- @since 0.5.0.0+unsegregate+  :: (G.Vector v (SU.Vector (1 + m) Word, a), G.Vector v (SU.Vector m Word, a))+  => VPoly (MultiPoly v m a)+  -> MultiPoly v (1 + m) a+unsegregate+  = MultiPoly+  . G.concat+  . G.toList+  . G.map (\(v, MultiPoly vs) -> G.map (first (v SU.++)) vs)+  . unMultiPoly
+ src/Data/Poly/Internal/Multi/Core.hs view
@@ -0,0 +1,309 @@+-- |+-- Module:      Data.Poly.Internal.Multi.Core+-- Copyright:   (c) 2019 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- Sparse polynomials of one variable.+--++{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE TypeFamilies               #-}+{-# LANGUAGE UndecidableInstances       #-}++module Data.Poly.Internal.Multi.Core+  ( normalize+  , plusPoly+  , minusPoly+  , convolution+  , scaleInternal+  , derivPoly+  ) where++import Control.Monad+import Control.Monad.ST+import Data.Bits+import Data.Ord+import qualified Data.Vector.Algorithms.Tim as Tim+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Mutable as MG+import qualified Data.Vector.Unboxed as U++normalize+  :: (G.Vector v (t, a), Ord t)+  => (a -> Bool)+  -> (a -> a -> a)+  -> v (t, a)+  -> v (t, a)+normalize p add vs+  | G.null vs = vs+  | otherwise = runST $ do+    ws <- G.thaw vs+    l' <- normalizeM p add ws+    G.unsafeFreeze $ MG.unsafeSlice 0 l' ws+{-# INLINABLE normalize #-}++normalizeM+  :: (G.Vector v (t, a), Ord t)+  => (a -> Bool)+  -> (a -> a -> a)+  -> G.Mutable v s (t, a)+  -> ST s Int+normalizeM p add ws = do+    let l = MG.length ws+    let go i j acc@(accP, accC)+          | j >= l =+            if p accC+              then do+                MG.write ws i acc+                pure $ i + 1+              else pure i+          | otherwise = do+            v@(vp, vc) <- MG.unsafeRead ws j+            if vp == accP+              then go i (j + 1) (accP, accC `add` vc)+              else if p accC+                then do+                  MG.write ws i acc+                  go (i + 1) (j + 1) v+                else go i (j + 1) v+    Tim.sortBy (comparing fst) ws+    wsHead <- MG.unsafeRead ws 0+    go 0 1 wsHead+{-# INLINABLE normalizeM #-}++plusPoly+  :: (G.Vector v (t, a), Ord t)+  => (a -> Bool)+  -> (a -> a -> a)+  -> v (t, a)+  -> v (t, a)+  -> v (t, a)+plusPoly p add = \xs ys -> runST $ do+  zs <- MG.unsafeNew (G.length xs + G.length ys)+  lenZs <- plusPolyM p add xs ys zs+  G.unsafeFreeze $ MG.unsafeSlice 0 lenZs zs+{-# INLINABLE plusPoly #-}++plusPolyM+  :: (G.Vector v (t, a), Ord t)+  => (a -> Bool)+  -> (a -> a -> a)+  -> v (t, a)+  -> v (t, a)+  -> G.Mutable v s (t, a)+  -> ST s Int+plusPolyM p add xs ys zs = go 0 0 0+  where+    lenXs = G.length xs+    lenYs = G.length ys++    go ix iy iz+      | ix == lenXs, iy == lenYs = pure iz+      | ix == lenXs = do+        G.unsafeCopy+          (MG.unsafeSlice iz (lenYs - iy) zs)+          (G.unsafeSlice iy (lenYs - iy) ys)+        pure $ iz + lenYs - iy+      | iy == lenYs = do+        G.unsafeCopy+          (MG.unsafeSlice iz (lenXs - ix) zs)+          (G.unsafeSlice ix (lenXs - ix) xs)+        pure $ iz + lenXs - ix+      | (xp, xc) <- G.unsafeIndex xs ix+      , (yp, yc) <- G.unsafeIndex ys iy+      = case xp `compare` yp of+        LT -> do+          MG.unsafeWrite zs iz (xp, xc)+          go (ix + 1) iy (iz + 1)+        EQ -> do+          let zc = xc `add` yc+          if p zc then do+            MG.unsafeWrite zs iz (xp, zc)+            go (ix + 1) (iy + 1) (iz + 1)+          else+            go (ix + 1) (iy + 1) iz+        GT -> do+          MG.unsafeWrite zs iz (yp, yc)+          go ix (iy + 1) (iz + 1)+{-# INLINE plusPolyM #-}++minusPoly+  :: (G.Vector v (t, a), Ord t)+  => (a -> Bool)+  -> (a -> a)+  -> (a -> a -> a)+  -> v (t, a)+  -> v (t, a)+  -> v (t, a)+minusPoly p neg sub = \xs ys -> runST $ do+  let lenXs = G.length xs+      lenYs = G.length ys+  zs <- MG.unsafeNew (lenXs + lenYs)+  let go ix iy iz+        | ix == lenXs, iy == lenYs = pure iz+        | ix == lenXs = do+          forM_ [iy .. lenYs - 1] $ \i ->+            MG.unsafeWrite zs (iz + i - iy)+              (fmap neg (G.unsafeIndex ys i))+          pure $ iz + lenYs - iy+        | iy == lenYs = do+          G.unsafeCopy+            (MG.unsafeSlice iz (lenXs - ix) zs)+            (G.unsafeSlice ix (lenXs - ix) xs)+          pure $ iz + lenXs - ix+        | (xp, xc) <- G.unsafeIndex xs ix+        , (yp, yc) <- G.unsafeIndex ys iy+        = case xp `compare` yp of+          LT -> do+            MG.unsafeWrite zs iz (xp, xc)+            go (ix + 1) iy (iz + 1)+          EQ -> do+            let zc = xc `sub` yc+            if p zc then do+              MG.unsafeWrite zs iz (xp, zc)+              go (ix + 1) (iy + 1) (iz + 1)+            else+              go (ix + 1) (iy + 1) iz+          GT -> do+            MG.unsafeWrite zs iz (yp, neg yc)+            go ix (iy + 1) (iz + 1)+  lenZs <- go 0 0 0+  G.unsafeFreeze $ MG.unsafeSlice 0 lenZs zs+{-# INLINABLE minusPoly #-}++scaleM+  :: (G.Vector v (t, a), Num t)+  => (a -> Bool)+  -> (a -> a -> a)+  -> v (t, a)+  -> (t, a)+  -> G.Mutable v s (t, a)+  -> ST s Int+scaleM p mul xs (yp, yc) zs = go 0 0+  where+    lenXs = G.length xs++    go ix iz+      | ix == lenXs = pure iz+      | (xp, xc) <- G.unsafeIndex xs ix+      = do+        let zc = xc `mul` yc+        if p zc then do+          MG.unsafeWrite zs iz (xp + yp, zc)+          go (ix + 1) (iz + 1)+        else+          go (ix + 1) iz+{-# INLINABLE scaleM #-}++scaleInternal+  :: (G.Vector v (t, a), Num t)+  => (a -> Bool)+  -> (a -> a -> a)+  -> t+  -> a+  -> v (t, a)+  -> v (t, a)+scaleInternal p mul yp yc xs = runST $ do+  zs <- MG.unsafeNew (G.length xs)+  len <- scaleM p (flip mul) xs (yp, yc) zs+  G.unsafeFreeze $ MG.unsafeSlice 0 len zs+{-# INLINABLE scaleInternal #-}++convolution+  :: forall v t a.+     (G.Vector v (t, a), Ord t, Num t)+  => (a -> Bool)+  -> (a -> a -> a)+  -> (a -> a -> a)+  -> v (t, a)+  -> v (t, a)+  -> v (t, a)+convolution p add mult = \xs ys ->+  if G.length xs >= G.length ys+  then go mult xs ys+  else go (flip mult) ys xs+  where+    go :: (a -> a -> a) -> v (t, a) -> v (t, a) -> v (t, a)+    go mul long short = runST $ do+      let lenLong   = G.length long+          lenShort  = G.length short+          lenBuffer = lenLong * lenShort+      slices <- MG.unsafeNew lenShort+      buffer <- MG.unsafeNew lenBuffer++      forM_ [0 .. lenShort - 1] $ \iShort -> do+        let (pShort, cShort) = G.unsafeIndex short iShort+            from = iShort * lenLong+            bufferSlice = MG.unsafeSlice from lenLong buffer+        len <- scaleM p mul long (pShort, cShort) bufferSlice+        MG.unsafeWrite slices iShort (from, len)++      slices' <- G.unsafeFreeze slices+      buffer' <- G.unsafeFreeze buffer+      bufferNew <- MG.unsafeNew lenBuffer+      gogo slices' buffer' bufferNew++    gogo+      :: U.Vector (Int, Int)+      -> v (t, a)+      -> G.Mutable v s (t, a)+      -> ST s (v (t, a))+    gogo slices buffer bufferNew+      | G.length slices == 0+      = pure G.empty+      | G.length slices == 1+      , (from, len) <- G.unsafeIndex slices 0+      = pure $ G.unsafeSlice from len buffer+      | otherwise = do+        let nSlices = G.length slices+        slicesNew <- MG.unsafeNew ((nSlices + 1) `shiftR` 1)+        forM_ [0 .. (nSlices - 2) `shiftR` 1] $ \i -> do+          let (from1, len1) = G.unsafeIndex slices (2 * i)+              (from2, len2) = G.unsafeIndex slices (2 * i + 1)+              slice1 = G.unsafeSlice from1 len1 buffer+              slice2 = G.unsafeSlice from2 len2 buffer+              slice3 = MG.unsafeSlice from1 (len1 + len2) bufferNew+          len3 <- plusPolyM p add slice1 slice2 slice3+          MG.unsafeWrite slicesNew i (from1, len3)++        when (odd nSlices) $ do+          let (from, len) = G.unsafeIndex slices (nSlices - 1)+              slice1 = G.unsafeSlice from len buffer+              slice3 = MG.unsafeSlice from len bufferNew+          G.unsafeCopy slice3 slice1+          MG.unsafeWrite slicesNew (nSlices `shiftR` 1) (from, len)++        slicesNew' <- G.unsafeFreeze slicesNew+        buffer'    <- G.unsafeThaw   buffer+        bufferNew' <- G.unsafeFreeze bufferNew+        gogo slicesNew' bufferNew' buffer'+{-# INLINABLE convolution #-}++derivPoly+  :: (G.Vector v (t, a))+  => (a -> Bool)   -- ^ is coefficient non-zero?+  -> (t -> t)      -- ^ how to modify powers?+  -> (t -> a -> a) -- ^ how to modify coefficient?+  -> v (t, a)+  -> v (t, a)+derivPoly p dec mul xs+  | G.null xs = G.empty+  | otherwise = runST $ do+    let lenXs = G.length xs+    zs <- MG.unsafeNew lenXs+    let go ix iz+          | ix == lenXs = pure iz+          | (xp, xc) <- G.unsafeIndex xs ix+          = do+            let zc = xp `mul` xc+            if p zc then do+              MG.unsafeWrite zs iz (dec xp, zc)+              go (ix + 1) (iz + 1)+            else+              go (ix + 1) iz+    lenZs <- go 0 0+    G.unsafeFreeze $ MG.unsafeSlice 0 lenZs zs+{-# INLINABLE derivPoly #-}
+ src/Data/Poly/Internal/Multi/Field.hs view
@@ -0,0 +1,75 @@+-- |+-- Module:      Data.Poly.Internal.Multi.Field+-- Copyright:   (c) 2019 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- 'Euclidean' instance with a 'Field' constraint on the coefficient type.+--++{-# LANGUAGE ConstraintKinds            #-}+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE TypeFamilies               #-}+{-# LANGUAGE UndecidableInstances       #-}++{-# OPTIONS_GHC -fno-warn-orphans #-}++module Data.Poly.Internal.Multi.Field+  ( quotRemFractional+  ) where++import Prelude hiding (quotRem, quot, rem, div, gcd)+import Control.Arrow+import Control.Exception+import Data.Euclidean (Euclidean(..), Field)+import Data.Semiring (Semiring(..), minus)+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Unboxed.Sized as SU++import Data.Poly.Internal.Multi+import Data.Poly.Internal.Multi.GcdDomain ()++-- | Note that 'degree' 0 = 0.+instance (Eq a, Field a, G.Vector v (SU.Vector 1 Word, a)) => Euclidean (Poly v a) where+  degree (MultiPoly xs)+    | G.null xs = 0+    | otherwise = fromIntegral (SU.head (fst (G.unsafeLast xs)))++  quotRem = quotientRemainder zero plus minus times quot++-- | Polynomial division with remainder.+--+-- >>> quotRemFractional (X^3 + 2) (X^2 - 1 :: UPoly Double)+-- (1.0 * X,1.0 * X + 2.0)+--+-- @since 0.5.0.0+quotRemFractional :: (Eq a, Fractional a, G.Vector v (SU.Vector 1 Word, a)) => Poly v a -> Poly v a -> (Poly v a, Poly v a)+quotRemFractional = quotientRemainder 0 (+) (-) (*) (/)+{-# INLINE quotRemFractional #-}++quotientRemainder+  :: G.Vector v (SU.Vector 1 Word, a)+  => Poly v a                           -- ^ zero+  -> (Poly v a -> Poly v a -> Poly v a) -- ^ add+  -> (Poly v a -> Poly v a -> Poly v a) -- ^ subtract+  -> (Poly v a -> Poly v a -> Poly v a) -- ^ multiply+  -> (a -> a -> a)                      -- ^ divide+  -> Poly v a                           -- ^ dividend+  -> Poly v a                           -- ^ divisor+  -> (Poly v a, Poly v a)+quotientRemainder zer add sub mul div ts ys = case leading ys of+  Nothing -> throw DivideByZero+  Just (yp, yc) -> go ts+    where+      go xs = case leading xs of+        Nothing -> (zer, zer)+        Just (xp, xc) -> case xp `compare` yp of+          LT -> (zer, xs)+          EQ -> (zs, xs')+          GT -> first (`add` zs) $ go xs'+          where+            zs = MultiPoly $ G.singleton (SU.singleton (xp - yp), xc `div` yc)+            xs' = xs `sub` (zs `mul` ys)
+ src/Data/Poly/Internal/Multi/GcdDomain.hs view
@@ -0,0 +1,168 @@+-- |+-- Module:      Data.Poly.Internal.Multi.GcdDomain+-- Copyright:   (c) 2019 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- 'GcdDomain' instance with a 'GcdDomain' constraint on the coefficient type.+--++{-# LANGUAGE CPP                        #-}+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE GADTs                      #-}+{-# LANGUAGE QuantifiedConstraints      #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE TypeOperators              #-}+{-# LANGUAGE TypeFamilies               #-}+{-# LANGUAGE UndecidableInstances       #-}++{-# OPTIONS_GHC -fno-warn-orphans #-}++module Data.Poly.Internal.Multi.GcdDomain+  () where++import Prelude hiding (gcd, lcm, (^))+import Control.Exception+import Data.Euclidean+import Data.Maybe+import Data.Proxy+import Data.Semiring (Semiring(..), Ring(), minus)+import Data.Type.Equality+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Unboxed.Sized as SU+import GHC.TypeNats (KnownNat, type (+), SomeNat(..), natVal, sameNat, someNatVal)+import Unsafe.Coerce++import Data.Poly.Internal.Multi++instance {-# OVERLAPPING #-} (Eq a, Ring a, GcdDomain a, G.Vector v (SU.Vector 1 Word, a)) => GcdDomain (Poly v a) where+  divide xs ys+    | G.null (unMultiPoly ys) = throw DivideByZero+    | G.length (unMultiPoly ys) == 1 = divideSingleton xs (G.unsafeHead (unMultiPoly ys))+    | otherwise = divide1 xs ys++  gcd xs ys+    | G.null (unMultiPoly xs) = ys+    | G.null (unMultiPoly ys) = xs+    | G.length (unMultiPoly xs) == 1 = gcdSingleton (G.unsafeHead (unMultiPoly xs)) ys+    | G.length (unMultiPoly ys) == 1 = gcdSingleton (G.unsafeHead (unMultiPoly ys)) xs+    | otherwise = gcd1 xs ys++  lcm xs ys+    | G.null (unMultiPoly xs) || G.null (unMultiPoly ys) = zero+    | otherwise = (xs `divide'` gcd xs ys) `times` ys++  coprime x y = isJust (one `divide` gcd x y)++data IsSucc n where+  IsSucc :: KnownNat m => n :~: 1 + m -> IsSucc n++-- | This is unsafe when n ~ 0.+isSucc :: forall n. KnownNat n => IsSucc n+isSucc = case someNatVal (natVal (Proxy :: Proxy n) - 1) of+  SomeNat (_ :: Proxy m) -> IsSucc (unsafeCoerce Refl :: n :~: 1 + m)++instance (Eq a, Ring a, GcdDomain a, KnownNat n, forall m. KnownNat m => G.Vector v (SU.Vector m Word, a), forall m. KnownNat m => Eq (v (SU.Vector m Word, a))) => GcdDomain (MultiPoly v n a) where+  divide xs ys+    | G.null (unMultiPoly ys) = throw DivideByZero+    | G.length (unMultiPoly ys) == 1 = divideSingleton xs (G.unsafeHead (unMultiPoly ys))+    -- Polynomials of zero variables are necessarily constants,+    -- so they have been dealt with above.+    | Just Refl <- sameNat (Proxy :: Proxy n) (Proxy :: Proxy 1)+    = divide1 xs ys+    | otherwise = case isSucc :: IsSucc n of+      IsSucc Refl -> unsegregate <$> segregate xs `divide` segregate ys+  gcd xs ys+    | G.null (unMultiPoly xs) = ys+    | G.null (unMultiPoly ys) = xs+    | G.length (unMultiPoly xs) == 1 = gcdSingleton (G.unsafeHead (unMultiPoly xs)) ys+    | G.length (unMultiPoly ys) == 1 = gcdSingleton (G.unsafeHead (unMultiPoly ys)) xs+    -- Polynomials of zero variables are necessarily constants,+    -- so they have been dealt with above.+    | Just Refl <- sameNat (Proxy :: Proxy n) (Proxy :: Proxy 1)+    = gcd1 xs ys+    | otherwise = case isSucc :: IsSucc n of+      IsSucc Refl -> unsegregate $ segregate xs `gcd` segregate ys++divideSingleton+  :: (GcdDomain a, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+  -> (SU.Vector n Word, a)+  -> Maybe (MultiPoly v n a)+divideSingleton (MultiPoly pcs) (p, c) = MultiPoly <$> G.mapM divideMonomial pcs+  where+    divideMonomial (p', c')+      | SU.and (SU.zipWith (>=) p' p)+      , Just c'' <- c' `divide` c+      = Just (SU.zipWith (-) p' p, c'')+      | otherwise+      = Nothing++gcdSingleton+  :: (Eq a, GcdDomain a, G.Vector v (SU.Vector n Word, a))+  => (SU.Vector n Word, a)+  -> MultiPoly v n a+  -> MultiPoly v n a+gcdSingleton pc (MultiPoly pcs) = uncurry monomial' $+  G.foldl' (\(accP, accC) (p, c) -> (SU.zipWith min accP p, gcd accC c)) pc pcs++divide1+  :: (Eq a, GcdDomain a, Ring a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly v a+  -> Maybe (Poly v a)+divide1 xs ys = case leading ys of+  Nothing -> throw DivideByZero+  Just (yp, yc) -> case leading xs of+    Nothing -> Just xs+    Just (xp, xc)+      | xp < yp -> Nothing+      | otherwise -> do+        zc <- divide xc yc+        let z = MultiPoly $ G.singleton (SU.singleton (xp - yp), zc)+        rest <- divide1 (xs `minus` z `times` ys) ys+        pure $ rest `plus` z++gcd1+  :: (Eq a, GcdDomain a, Ring a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly v a+  -> Poly v a+gcd1 x@(MultiPoly xs) y@(MultiPoly ys) =+  times xy (divide1' z (monomial' 0 (content zs)))+  where+    z@(MultiPoly zs) = gcdHelper x y+    xy = monomial' 0 (gcd (content xs) (content ys))+    divide1' = (fromMaybe (error "gcd: violated internal invariant") .) . divide1++content :: (GcdDomain a, G.Vector v (t, a)) => v (t, a) -> a+content = G.foldl' (\acc (_, t) -> gcd acc t) zero++gcdHelper+  :: (Eq a, Ring a, GcdDomain a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly v a+  -> Poly v a+gcdHelper xs ys = case (leading xs, leading ys) of+  (Nothing, _) -> ys+  (_, Nothing) -> xs+  (Just (xp, xc), Just (yp, yc))+    | yp <= xp+    , Just xy <- xc `divide` yc+    -> gcdHelper ys (xs `minus` ys `times` monomial' (SU.singleton (xp - yp)) xy)+    | xp <= yp+    , Just yx <- yc `divide` xc+    -> gcdHelper xs (ys `minus` xs `times` monomial' (SU.singleton (yp - xp)) yx)+    | yp <= xp+    -> gcdHelper ys (xs `times` monomial' 0 gx `minus` ys `times` monomial' (SU.singleton (xp - yp)) gy)+    | otherwise+    -> gcdHelper xs (ys `times` monomial' 0 gy `minus` xs `times` monomial' (SU.singleton (yp - xp)) gx)+    where+      g = lcm xc yc+      gx = divide' g xc+      gy = divide' g yc++divide' :: GcdDomain a => a -> a -> a+divide' = (fromMaybe (error "gcd: violated internal invariant") .) . divide
+ src/Data/Poly/Internal/Multi/Laurent.hs view
@@ -0,0 +1,553 @@+-- |+-- Module:      Data.Poly.Internal.Multi.Laurent+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- Sparse multivariate+-- <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>.+--++{-# LANGUAGE CPP                        #-}+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE LambdaCase                 #-}+{-# LANGUAGE PatternSynonyms            #-}+{-# LANGUAGE QuantifiedConstraints      #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE StandaloneDeriving         #-}+{-# LANGUAGE TypeFamilies               #-}+{-# LANGUAGE TypeOperators              #-}+{-# LANGUAGE UndecidableInstances       #-}+{-# LANGUAGE ViewPatterns               #-}++module Data.Poly.Internal.Multi.Laurent+  ( MultiLaurent+  , VMultiLaurent+  , UMultiLaurent+  , unMultiLaurent+  , toMultiLaurent+  , leading+  , monomial+  , scale+  , pattern X+  , pattern Y+  , pattern Z+  , (^-)+  , eval+  , subst+  , deriv+  -- * Univariate polynomials+  , Laurent+  , VLaurent+  , ULaurent+  , unLaurent+  , toLaurent+  -- * Conversions+  , segregate+  , unsegregate+  ) where++import Prelude hiding (quotRem, quot, rem, gcd, lcm)+import Control.Arrow (first)+import Control.DeepSeq (NFData(..))+import Control.Exception+import Data.Euclidean (GcdDomain(..), Euclidean(..), Field)+import Data.Finite+import Data.Kind+import Data.List (intersperse, foldl1')+import Data.Semiring (Semiring(..), Ring())+import qualified Data.Semiring as Semiring+import qualified Data.Vector as V+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Sized as SG+import qualified Data.Vector.Sized as SV+import qualified Data.Vector.Unboxed as U+import qualified Data.Vector.Unboxed.Sized as SU+import GHC.Exts+import GHC.TypeNats (KnownNat, Nat, type (+), type (<=))++import Data.Poly.Internal.Multi.Core (derivPoly)+import Data.Poly.Internal.Multi (Poly, MultiPoly(..))+import qualified Data.Poly.Internal.Multi as Multi+import Data.Poly.Internal.Multi.Field ()+import Data.Poly.Internal.Multi.GcdDomain ()++-- | Sparse+-- <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>+-- of @n@ variables with coefficients from @a@,+-- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).+--+-- Use the patterns 'X', 'Y', 'Z' and the '^-' operator for construction:+--+-- >>> (X + 1) + (Y^-1 - 1) :: VMultiLaurent 2 Integer+-- 1 * X + 1 * Y^-1+-- >>> (X + 1) * (Z - X^-1) :: UMultiLaurent 3 Int+-- 1 * X * Z + 1 * Z + (-1) + (-1) * X^-1+--+-- Polynomials are stored normalized, without+-- zero coefficients, so 0 * X + 1 + 0 * X^-1 equals to 1.+--+-- The 'Ord' instance does not make much sense mathematically,+-- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.+--+-- Due to being polymorphic by multiple axis, the performance of `MultiLaurent` crucially+-- depends on specialisation of instances. Clients are strongly recommended+-- to compile with @ghc-options:@ @-fspecialise-aggressively@ and suggested to enable @-O2@.+--+-- @since 0.5.0.0+data MultiLaurent (v :: Type -> Type) (n :: Nat) (a :: Type) =+  MultiLaurent !(SU.Vector n Int) !(MultiPoly v n a)++deriving instance Eq  (v (SU.Vector n Word, a)) => Eq  (MultiLaurent v n a)+deriving instance Ord (v (SU.Vector n Word, a)) => Ord (MultiLaurent v n a)++-- | Multivariate Laurent polynomials backed by boxed vectors.+--+-- @since 0.5.0.0+type VMultiLaurent (n :: Nat) (a :: Type) = MultiLaurent V.Vector n a++-- | Multivariate Laurent polynomials backed by unboxed vectors.+--+-- @since 0.5.0.0+type UMultiLaurent (n :: Nat) (a :: Type) = MultiLaurent U.Vector n a++-- | <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>+-- of one variable with coefficients from @a@,+-- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).+--+-- Use the pattern 'X' and the '^-' operator for construction:+--+-- >>> (X + 1) + (X^-1 - 1) :: VLaurent Integer+-- 1 * X + 1 * X^-1+-- >>> (X + 1) * (1 - X^-1) :: ULaurent Int+-- 1 * X + (-1) * X^-1+--+-- Polynomials are stored normalized, without+-- zero coefficients, so 0 * X + 1 + 0 * X^-1 equals to 1.+--+-- The 'Ord' instance does not make much sense mathematically,+-- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.+--+-- Due to being polymorphic by multiple axis, the performance of `Laurent` crucially+-- depends on specialisation of instances. Clients are strongly recommended+-- to compile with @ghc-options:@ @-fspecialise-aggressively@ and suggested to enable @-O2@.+--+-- @since 0.4.0.0+type Laurent (v :: Type -> Type) (a :: Type) = MultiLaurent v 1 a++-- | Laurent polynomials backed by boxed vectors.+--+-- @since 0.4.0.0+type VLaurent (a :: Type) = Laurent V.Vector a++-- | Laurent polynomials backed by unboxed vectors.+--+-- @since 0.4.0.0+type ULaurent (a :: Type) = Laurent U.Vector a++instance (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Int, a), G.Vector v (SU.Vector n Word, a)) => IsList (MultiLaurent v n a) where+  type Item (MultiLaurent v n a) = (SU.Vector n Int, a)++  fromList [] = MultiLaurent 0 zero+  fromList xs = toMultiLaurent minPow (fromList ys)+    where+      minPow = foldl1' (SU.zipWith min) (map fst xs)+      ys = map (first (SU.map fromIntegral . subtract minPow)) xs++  toList (MultiLaurent off (MultiPoly poly)) =+    map (first ((+ off) . SU.map fromIntegral)) $ G.toList poly++-- | Deconstruct a 'MultiLaurent' polynomial into an offset (largest possible)+-- and a regular polynomial.+--+-- >>> unMultiLaurent (2 * X + 1 :: UMultiLaurent 2 Int)+-- (Vector [0,0],2 * X + 1)+-- >>> unMultiLaurent (1 + 2 * X^-1 :: UMultiLaurent 2 Int)+-- (Vector [-1,0],1 * X + 2)+-- >>> unMultiLaurent (2 * X^2 + X :: UMultiLaurent 2 Int)+-- (Vector [1,0],2 * X + 1)+-- >>> unMultiLaurent (0 :: UMultiLaurent 2 Int)+-- (Vector [0,0],0)+--+-- @since 0.5.0.0+unMultiLaurent :: MultiLaurent v n a -> (SU.Vector n Int, MultiPoly v n a)+unMultiLaurent (MultiLaurent off poly) = (off, poly)++-- | Deconstruct a 'Laurent' polynomial into an offset (largest possible)+-- and a regular polynomial.+--+-- >>> unLaurent (2 * X + 1 :: ULaurent Int)+-- (0,2 * X + 1)+-- >>> unLaurent (1 + 2 * X^-1 :: ULaurent Int)+-- (-1,1 * X + 2)+-- >>> unLaurent (2 * X^2 + X :: ULaurent Int)+-- (1,2 * X + 1)+-- >>> unLaurent (0 :: ULaurent Int)+-- (0,0)+--+-- @since 0.4.0.0+unLaurent :: Laurent v a -> (Int, Poly v a)+unLaurent = first SU.head . unMultiLaurent++-- | Construct a 'MultiLaurent' polynomial from an offset and a regular polynomial.+-- One can imagine it as 'Data.Poly.Multi.Semiring.scale', but allowing negative offsets.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> toMultiLaurent (fromTuple (2, 0)) (2 * Data.Poly.Multi.X + 1) :: UMultiLaurent 2 Int+-- 2 * X^3 + 1 * X^2+-- >>> toMultiLaurent (fromTuple (0, -2)) (2 * Data.Poly.Multi.X + 1) :: UMultiLaurent 2 Int+-- 2 * X * Y^-2 + 1 * Y^-2+toMultiLaurent+  :: (KnownNat n, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Int+  -> MultiPoly v n a+  -> MultiLaurent v n a+toMultiLaurent off (MultiPoly xs)+  | G.null xs = MultiLaurent 0 (MultiPoly G.empty)+  | otherwise = MultiLaurent (SU.zipWith (\o m -> o + fromIntegral m) off minPow) (MultiPoly ys)+    where+      minPow = G.foldl'(\acc (x, _) -> SU.zipWith min acc x) (SU.replicate maxBound) xs+      ys+        | SU.all (== 0) minPow = xs+        | otherwise = G.map (first (SU.zipWith subtract minPow)) xs+{-# INLINE toMultiLaurent #-}++-- | Construct a 'Laurent' polynomial from an offset and a regular polynomial.+-- One can imagine it as 'Data.Poly.Sparse.Semiring.scale', but allowing negative offsets.+--+-- >>> toLaurent 2 (2 * Data.Poly.Sparse.X + 1) :: ULaurent Int+-- 2 * X^3 + 1 * X^2+-- >>> toLaurent (-2) (2 * Data.Poly.Sparse.X + 1) :: ULaurent Int+-- 2 * X^-1 + 1 * X^-2+--+-- @since 0.4.0.0+toLaurent+  :: G.Vector v (SU.Vector 1 Word, a)+  => Int+  -> Poly v a+  -> Laurent v a+toLaurent = toMultiLaurent . SU.singleton+{-# INLINABLE toLaurent #-}++instance NFData (v (SU.Vector n Word, a)) => NFData (MultiLaurent v n a) where+  rnf (MultiLaurent off poly) = rnf off `seq` rnf poly++instance (Show a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Show (MultiLaurent v n a) where+  showsPrec d (MultiLaurent off (MultiPoly xs))+    | G.null xs+      = showString "0"+    | otherwise+      = showParen (d > 0)+      $ foldl (.) id+      $ intersperse (showString " + ")+      $ G.foldl (\acc (is, c) -> showCoeff (SU.map fromIntegral is + off) c : acc) [] xs+    where+      showCoeff is c+        = showsPrec 7 c . foldl (.) id+        ( map ((showString " * " .) . uncurry showPower)+        $ filter ((/= 0) . fst)+        $ zip (SU.toList is) (finites :: [Finite n]))++      -- Negative powers should be displayed without surrounding brackets+      showPower :: Int -> Finite n -> String -> String+      showPower 1 n = showString (showVar n)+      showPower i n = showString (showVar n) . showString ("^" ++ show i)++      showVar :: Finite n -> String+      showVar = \case+        0 -> "X"+        1 -> "Y"+        2 -> "Z"+        k -> "X" ++ show k++-- | Return the leading power and coefficient of a non-zero polynomial.+--+-- >>> leading ((2 * X + 1) * (2 * X^2 - 1) :: ULaurent Int)+-- Just (3,4)+-- >>> leading (0 :: ULaurent Int)+-- Nothing+--+-- @since 0.4.0.0+leading :: G.Vector v (SU.Vector 1 Word, a) => Laurent v a -> Maybe (Int, a)+leading (MultiLaurent off poly) = first ((+ SU.head off) . fromIntegral) <$> Multi.leading poly++-- | Note that 'abs' = 'id' and 'signum' = 'const' 1.+instance (Eq a, Num a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Num (MultiLaurent v n a) where+  MultiLaurent off1 poly1 * MultiLaurent off2 poly2 = toMultiLaurent (off1 + off2) (poly1 * poly2)+  MultiLaurent off1 poly1 + MultiLaurent off2 poly2 = toMultiLaurent off (poly1' + poly2')+    where+      off    = SU.zipWith min off1 off2+      poly1' = Multi.scale (SU.zipWith (\x y -> fromIntegral (x - y)) off1 off) 1 poly1+      poly2' = Multi.scale (SU.zipWith (\x y -> fromIntegral (x - y)) off2 off) 1 poly2+  MultiLaurent off1 poly1 - MultiLaurent off2 poly2 = toMultiLaurent off (poly1' - poly2')+    where+      off    = SU.zipWith min off1 off2+      poly1' = Multi.scale (SU.zipWith (\x y -> fromIntegral (x - y)) off1 off) 1 poly1+      poly2' = Multi.scale (SU.zipWith (\x y -> fromIntegral (x - y)) off2 off) 1 poly2+  negate (MultiLaurent off poly) = MultiLaurent off (negate poly)+  abs = id+  signum = const 1+  fromInteger n = MultiLaurent 0 (fromInteger n)+  {-# INLINE (+) #-}+  {-# INLINE (-) #-}+  {-# INLINE negate #-}+  {-# INLINE fromInteger #-}+  {-# INLINE (*) #-}++instance (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Semiring (MultiLaurent v n a) where+  zero = MultiLaurent 0 zero+  one  = MultiLaurent 0 one+  MultiLaurent off1 poly1 `times` MultiLaurent off2 poly2 =+    toMultiLaurent (off1 + off2) (poly1 `times` poly2)+  MultiLaurent off1 poly1 `plus` MultiLaurent off2 poly2 = toMultiLaurent off (poly1' `plus` poly2')+    where+      off    = SU.zipWith min off1 off2+      poly1' = Multi.scale' (SU.zipWith (\x y -> fromIntegral (x - y)) off1 off) one poly1+      poly2' = Multi.scale' (SU.zipWith (\x y -> fromIntegral (x - y)) off2 off) one poly2+  fromNatural n = MultiLaurent 0 (fromNatural n)+  {-# INLINE zero #-}+  {-# INLINE one #-}+  {-# INLINE plus #-}+  {-# INLINE times #-}+  {-# INLINE fromNatural #-}++instance (Eq a, Ring a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Ring (MultiLaurent v n a) where+  negate (MultiLaurent off poly) = MultiLaurent off (Semiring.negate poly)++-- | Create a monomial from a power and a coefficient.+--+-- @since 0.5.0.0+monomial+  :: (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Int+  -> a+  -> MultiLaurent v n a+monomial p c+  | c == zero = MultiLaurent 0 zero+  | otherwise = MultiLaurent p (Multi.monomial' 0 c)+{-# INLINE monomial #-}++-- | Multiply a polynomial by a monomial, expressed as a power and a coefficient.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> scale (fromTuple (1, 1)) 3 (X^-2 + Y) :: UMultiLaurent 2 Int+-- 3 * X * Y^2 + 3 * X^-1 * Y+--+-- @since 0.5.0.0+scale+  :: (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Int+  -> a+  -> MultiLaurent v n a+  -> MultiLaurent v n a+scale yp yc (MultiLaurent off poly) = toMultiLaurent (off + yp) (Multi.scale' 0 yc poly)++-- | Evaluate the polynomial at a given point.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> eval (X^2 + Y^-1 :: UMultiLaurent 2 Double) (fromTuple (3, 4) :: Data.Vector.Sized.Vector 2 Double)+-- 9.25+--+-- @since 0.5.0.0+eval+  :: (Field a, G.Vector v (SU.Vector n Word, a), G.Vector u a)+  => MultiLaurent v n a+  -> SG.Vector u n a+  -> a+eval (MultiLaurent off poly) xs = Multi.eval' poly xs `times`+  SU.ifoldl' (\acc i o -> acc `times` (let x = SG.index xs i in if o >= 0 then x Semiring.^ o else quot one x Semiring.^ (- o))) one off+{-# INLINE eval #-}++-- | Substitute another polynomial instead of 'Data.Poly.Multi.X'.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> import Data.Poly.Multi (UMultiPoly)+-- >>> subst (Data.Poly.Multi.X * Data.Poly.Multi.Y :: UMultiPoly 2 Int) (fromTuple (X + Y^-1, Y + X^-1 :: UMultiLaurent 2 Int))+-- 1 * X * Y + 2 + 1 * X^-1 * Y^-1+--+-- @since 0.5.0.0+subst+  :: (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a), G.Vector w (SU.Vector n Word, a))+  => MultiPoly v n a+  -> SV.Vector n (MultiLaurent w n a)+  -> MultiLaurent w n a+subst = Multi.substitute' (scale 0)+{-# INLINE subst #-}++-- | Take the derivative of the polynomial with respect to the /i/-th variable.+--+-- >>> :set -XDataKinds+-- >>> deriv 0 (X^3 + 3 * Y) :: UMultiLaurent 2 Int+-- 3 * X^2+-- >>> deriv 1 (X^3 + 3 * Y) :: UMultiLaurent 2 Int+-- 3+--+-- @since 0.5.0.0+deriv+  :: (Eq a, Ring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiLaurent v n a+  -> MultiLaurent v n a+deriv i (MultiLaurent off (MultiPoly xs)) =+  toMultiLaurent (off SU.// [(i, off `SU.index` i - 1)]) $ MultiPoly $ derivPoly+    (/= zero)+    id+    (\ps c -> Semiring.fromIntegral (fromIntegral (ps `SU.index` i) + off `SU.index` i) `times` c)+    xs+{-# INLINE deriv #-}++-- | Create a polynomial equal to the first variable.+--+-- @since 0.5.0.0+pattern X+  :: (Eq a, Semiring a, KnownNat n, 1 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiLaurent v n a+pattern X <- (isVar 0 -> True)+  where X = var 0++-- | Create a polynomial equal to the second variable.+--+-- @since 0.5.0.0+pattern Y+  :: (Eq a, Semiring a, KnownNat n, 2 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiLaurent v n a+pattern Y <- (isVar 1 -> True)+  where Y = var 1++-- | Create a polynomial equal to the third variable.+--+-- @since 0.5.0.0+pattern Z+  :: (Eq a, Semiring a, KnownNat n, 3 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiLaurent v n a+pattern Z <- (isVar 2 -> True)+  where Z = var 2++var+  :: forall v n a.+     (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiLaurent v n a+var i+  | (one :: a) == zero = MultiLaurent 0 zero+  | otherwise          = MultiLaurent+      (SU.generate (\j -> if i == j then 1 else 0)) one+{-# INLINE var #-}++isVar+  :: forall v n a.+     (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiLaurent v n a+  -> Bool+isVar i (MultiLaurent off (MultiPoly xs))+  | (one :: a) == zero+  = off == 0 && G.null xs+  | otherwise+  = off == SU.generate (\j -> if i == j then 1 else 0)+  && G.length xs == 1 && G.unsafeHead xs == (0, one)+{-# INLINE isVar #-}++-- | Used to construct monomials with negative powers.+--+-- This operator can be applied only to monomials with unit coefficients,+-- but is instrumental to express Laurent polynomials+-- in a mathematical fashion:+--+-- >>> X^-3 * Y^-1 :: UMultiLaurent 2 Int+-- 1 * X^-3 * Y^-1+-- >>> 3 * X^-1 + 2 * (Y^2)^-2 :: UMultiLaurent 2 Int+-- 2 * Y^-4 + 3 * X^-1+--+-- @since 0.5.0.0+(^-)+  :: (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => MultiLaurent v n a+  -> Int+  -> MultiLaurent v n a+MultiLaurent off (MultiPoly xs) ^- n+  | G.length xs == 1, G.unsafeHead xs == (0, one)+  = MultiLaurent (SU.map (* (-n)) off) (MultiPoly xs)+  | otherwise+  = throw $ PatternMatchFail "(^-) can be applied only to a monom with unit coefficient"++instance {-# OVERLAPPING #-} (Eq a, Ring a, GcdDomain a, G.Vector v (SU.Vector 1 Word, a)) => GcdDomain (Laurent v a) where+  divide (MultiLaurent off1 poly1) (MultiLaurent off2 poly2) =+    toMultiLaurent (off1 - off2) <$> divide poly1 poly2+  {-# INLINE divide #-}++  gcd (MultiLaurent _ poly1) (MultiLaurent _ poly2) =+    toMultiLaurent 0 (gcd poly1 poly2)+  {-# INLINE gcd #-}++  lcm (MultiLaurent _ poly1) (MultiLaurent _ poly2) =+    toMultiLaurent 0 (lcm poly1 poly2)+  {-# INLINE lcm #-}++  coprime (MultiLaurent _ poly1) (MultiLaurent _ poly2) =+    coprime poly1 poly2+  {-# INLINE coprime #-}++instance (Eq a, Ring a, GcdDomain a, KnownNat n, forall m. KnownNat m => G.Vector v (SU.Vector m Word, a), forall m. KnownNat m => Eq (v (SU.Vector m Word, a))) => GcdDomain (MultiLaurent v n a) where+  divide (MultiLaurent off1 poly1) (MultiLaurent off2 poly2) =+    toMultiLaurent (off1 - off2) <$> divide poly1 poly2+  {-# INLINE divide #-}++  gcd (MultiLaurent _ poly1) (MultiLaurent _ poly2) =+    toMultiLaurent 0 (gcd poly1 poly2)+  {-# INLINE gcd #-}++  lcm (MultiLaurent _ poly1) (MultiLaurent _ poly2) =+    toMultiLaurent 0 (lcm poly1 poly2)+  {-# INLINE lcm #-}++  coprime (MultiLaurent _ poly1) (MultiLaurent _ poly2) =+    coprime poly1 poly2+  {-# INLINE coprime #-}++-------------------------------------------------------------------------------++-- | Interpret a multivariate Laurent polynomial over 1+/m/ variables+-- as a univariate Laurent polynomial, whose coefficients are+-- multivariate Laurent polynomials over the last /m/ variables.+--+-- @since 0.5.0.0+segregate+  :: (KnownNat m, G.Vector v (SU.Vector (1 + m) Word, a), G.Vector v (SU.Vector m Word, a))+  => MultiLaurent v (1 + m) a+  -> VLaurent (MultiLaurent v m a)+segregate (MultiLaurent off poly)+  = toMultiLaurent (SU.take off)+  $ MultiPoly+  $ G.map (fmap (toMultiLaurent (SU.tail off)))+  $ Multi.unMultiPoly+  $ Multi.segregate poly++-- | Interpret a univariate Laurent polynomials, whose coefficients are+-- multivariate Laurent polynomials over the first /m/ variables,+-- as a multivariate polynomial over 1+/m/ variables.+--+-- @since 0.5.0.0+unsegregate+  :: forall v m a.+     (KnownNat m, KnownNat (1 + m), G.Vector v (SU.Vector (1 + m) Word, a), G.Vector v (SU.Vector m Word, a))+  => VLaurent (MultiLaurent v m a)+  -> MultiLaurent v (1 + m) a+unsegregate (MultiLaurent off poly)+  | G.null (unMultiPoly poly)+  = MultiLaurent 0 (MultiPoly G.empty)+  | otherwise+  = toMultiLaurent (off SU.++ offs) (MultiPoly (G.concat (G.toList ys)))+  where+    xs :: V.Vector (SU.Vector 1 Word, (SU.Vector m Int, MultiPoly v m a))+    xs = G.map (fmap unMultiLaurent) $ Multi.unMultiPoly poly+    offs :: SU.Vector m Int+    offs = G.foldl' (\acc (_, (v, _)) -> SU.zipWith min acc v) (SU.replicate maxBound) xs+    ys :: V.Vector (v (SU.Vector (1 + m) Word, a))+    ys = G.map (\(v, (vs, p)) -> G.map (first ((v SU.++) . SU.zipWith3 (\a b c -> c + fromIntegral (b - a)) offs vs)) (unMultiPoly p)) xs
− src/Data/Poly/Internal/PolyOverField.hs
@@ -1,46 +0,0 @@--- |--- Module:      Data.Poly.Internal.PolyOverField--- Copyright:   (c) 2019 Andrew Lelechenko--- Licence:     BSD3--- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>------ Wrapper with a more efficient 'Euclidean' instance.-----{-# LANGUAGE ConstraintKinds            #-}-{-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-}-{-# LANGUAGE PatternSynonyms            #-}--module Data.Poly.Internal.PolyOverField-  ( PolyOverField(..)-  ) where--import Prelude hiding (quotRem, quot, rem, gcd, lcm, (^))-import Control.DeepSeq (NFData)-import Data.Euclidean-import Data.Semiring-import qualified Data.Vector.Generic as G--import qualified Data.Poly.Internal.Dense as Dense-import qualified Data.Poly.Internal.Dense.Field as Dense (fieldGcd)---- | Wrapper for polynomials over 'Field',--- providing a faster 'GcdDomain' instance.-newtype PolyOverField poly = PolyOverField { unPolyOverField :: poly }-  deriving (Eq, NFData, Num, Ord, Ring, Semiring, Show)--instance (Eq a, Eq (v a), Field a, G.Vector v a) => GcdDomain (PolyOverField (Dense.Poly v a)) where-  gcd (PolyOverField x) (PolyOverField y) = PolyOverField (Dense.fieldGcd x y)-  {-# INLINE gcd #-}--instance (Eq a, Eq (v a), Field a, G.Vector v a) => Euclidean (PolyOverField (Dense.Poly v a)) where-  degree (PolyOverField x) =-    degree x-  quotRem (PolyOverField x) (PolyOverField y) =-    let (q, r) = quotRem x y in-      (PolyOverField q, PolyOverField r)-  {-# INLINE quotRem #-}-  rem (PolyOverField x) (PolyOverField y) =-    PolyOverField (rem x y)-  {-# INLINE rem #-}
− src/Data/Poly/Internal/Sparse.hs
@@ -1,583 +0,0 @@--- |--- Module:      Data.Poly.Internal.Sparse--- Copyright:   (c) 2019 Andrew Lelechenko--- Licence:     BSD3--- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>------ Sparse polynomials of one variable.-----{-# LANGUAGE FlexibleContexts           #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-}-{-# LANGUAGE PatternSynonyms            #-}-{-# LANGUAGE ScopedTypeVariables        #-}-{-# LANGUAGE StandaloneDeriving         #-}-{-# LANGUAGE TypeFamilies               #-}-{-# LANGUAGE UndecidableInstances       #-}-{-# LANGUAGE ViewPatterns               #-}--module Data.Poly.Internal.Sparse-  ( Poly(..)-  , VPoly-  , UPoly-  , leading-  -- * Num interface-  , toPoly-  , monomial-  , scale-  , pattern X-  , eval-  , subst-  , deriv-  , integral-  -- * Semiring interface-  , toPoly'-  , monomial'-  , scale'-  , pattern X'-  , eval'-  , subst'-  , substitute'-  , deriv'-  , integral'-  ) where--import Prelude hiding (quot)-import Control.DeepSeq (NFData)-import Control.Monad-import Control.Monad.Primitive-import Control.Monad.ST-import Data.Bits-import Data.Euclidean (Field, quot)-import Data.List (intersperse)-import Data.Ord-import Data.Semiring (Semiring(..), Ring())-import qualified Data.Semiring as Semiring-import qualified Data.Vector as V-import qualified Data.Vector.Generic as G-import qualified Data.Vector.Generic.Mutable as MG-import qualified Data.Vector.Unboxed as U-import qualified Data.Vector.Algorithms.Tim as Tim-import GHC.Exts---- | Polynomials of one variable with coefficients from @a@,--- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).------ Use pattern 'X' for construction:------ >>> (X + 1) + (X - 1) :: VPoly Integer--- 2 * X--- >>> (X + 1) * (X - 1) :: UPoly Int--- 1 * X^2 + (-1)------ Polynomials are stored normalized, without--- zero coefficients, so 0 * 'X' + 1 equals to 1.------ 'Ord' instance does not make much sense mathematically,--- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.----newtype Poly v a = Poly-  { unPoly :: v (Word, a)-  -- ^ Convert 'Poly' to a vector of coefficients-  -- (first element corresponds to a constant term).-  }--deriving instance Eq     (v (Word, a)) => Eq     (Poly v a)-deriving instance Ord    (v (Word, a)) => Ord    (Poly v a)-deriving instance NFData (v (Word, a)) => NFData (Poly v a)--instance (Eq a, Semiring a, G.Vector v (Word, a)) => IsList (Poly v a) where-  type Item (Poly v a) = (Word, a)-  fromList = toPoly' . G.fromList-  fromListN = (toPoly' .) . G.fromListN-  toList = G.toList . unPoly--instance (Show a, G.Vector v (Word, a)) => Show (Poly v a) where-  showsPrec d (Poly xs)-    | G.null xs-      = showString "0"-    | otherwise-      = showParen (d > 0)-      $ foldl (.) id-      $ intersperse (showString " + ")-      $ G.foldl (\acc (i, c) -> showCoeff i c : acc) [] xs-    where-      showCoeff 0 c = showsPrec 7 c-      showCoeff 1 c = showsPrec 7 c . showString " * X"-      showCoeff i c = showsPrec 7 c . showString " * X^" . showsPrec 7 i---- | Polynomials backed by boxed vectors.-type VPoly = Poly V.Vector---- | Polynomials backed by unboxed vectors.-type UPoly = Poly U.Vector---- | Make 'Poly' from a list of (power, coefficient) pairs.--- (first element corresponds to a constant term).------ >>> :set -XOverloadedLists--- >>> toPoly [(0,1),(1,2),(2,3)] :: VPoly Integer--- 3 * X^2 + 2 * X + 1--- >>> S.toPoly [(0,0),(1,0),(2,0)] :: UPoly Int--- 0-toPoly :: (Eq a, Num a, G.Vector v (Word, a)) => v (Word, a) -> Poly v a-toPoly = Poly . normalize (/= 0) (+)--toPoly' :: (Eq a, Semiring a, G.Vector v (Word, a)) => v (Word, a) -> Poly v a-toPoly' = Poly . normalize (/= zero) plus---- | Return a leading power and coefficient of a non-zero polynomial.------ >>> leading ((2 * X + 1) * (2 * X^2 - 1) :: UPoly Int)--- Just (3,4)--- >>> leading (0 :: UPoly Int)--- Nothing-leading :: G.Vector v (Word, a) => Poly v a -> Maybe (Word, a)-leading (Poly v)-  | G.null v  = Nothing-  | otherwise = Just (G.last v)--normalize-  :: G.Vector v (Word, a)-  => (a -> Bool)-  -> (a -> a -> a)-  -> v (Word, a)-  -> v (Word, a)-normalize p add vs-  | G.null vs = vs-  | otherwise = runST $ do-    ws <- G.thaw vs-    l' <- normalizeM p add ws-    G.unsafeFreeze $ MG.unsafeSlice 0 l' ws--normalizeM-  :: (PrimMonad m, G.Vector v (Word, a))-  => (a -> Bool)-  -> (a -> a -> a)-  -> G.Mutable v (PrimState m) (Word, a)-  -> m Int-normalizeM p add ws = do-    let l = MG.length ws-    let go i j acc@(accP, accC)-          | j >= l =-            if p accC-              then do-                MG.write ws i acc-                pure $ i + 1-              else pure i-          | otherwise = do-            v@(vp, vc) <- MG.unsafeRead ws j-            if vp == accP-              then go i (j + 1) (accP, accC `add` vc)-              else if p accC-                then do-                  MG.write ws i acc-                  go (i + 1) (j + 1) v-                else go i (j + 1) v-    Tim.sortBy (comparing fst) ws-    wsHead <- MG.unsafeRead ws 0-    go 0 1 wsHead---- | Note that 'abs' = 'id' and 'signum' = 'const' 1.-instance (Eq a, Num a, G.Vector v (Word, a)) => Num (Poly v a) where-  Poly xs + Poly ys = Poly $ plusPoly (/= 0) (+) xs ys-  Poly xs - Poly ys = Poly $ minusPoly (/= 0) negate (-) xs ys-  negate (Poly xs) = Poly $ G.map (fmap negate) xs-  abs = id-  signum = const 1-  fromInteger n = case fromInteger n of-    0 -> Poly G.empty-    m -> Poly $ G.singleton (0, m)-  Poly xs * Poly ys = Poly $ convolution (/= 0) (+) (*) xs ys-  {-# INLINE (+) #-}-  {-# INLINE (-) #-}-  {-# INLINE negate #-}-  {-# INLINE fromInteger #-}-  {-# INLINE (*) #-}--instance (Eq a, Semiring a, G.Vector v (Word, a)) => Semiring (Poly v a) where-  zero = Poly G.empty-  one-    | (one :: a) == zero = zero-    | otherwise = Poly $ G.singleton (0, one)-  plus (Poly xs) (Poly ys) = Poly $ plusPoly (/= zero) plus xs ys-  times (Poly xs) (Poly ys) = Poly $ convolution (/= zero) plus times xs ys-  {-# INLINE zero #-}-  {-# INLINE one #-}-  {-# INLINE plus #-}-  {-# INLINE times #-}--  fromNatural n = if n' == zero then zero else Poly $ G.singleton (0, n')-    where-      n' :: a-      n' = fromNatural n-  {-# INLINE fromNatural #-}--instance (Eq a, Ring a, G.Vector v (Word, a)) => Ring (Poly v a) where-  negate (Poly xs) = Poly $ G.map (fmap Semiring.negate) xs--plusPoly-  :: G.Vector v (Word, a)-  => (a -> Bool)-  -> (a -> a -> a)-  -> v (Word, a)-  -> v (Word, a)-  -> v (Word, a)-plusPoly p add xs ys = runST $ do-  zs <- MG.unsafeNew (G.length xs + G.length ys)-  lenZs <- plusPolyM p add xs ys zs-  G.unsafeFreeze $ MG.unsafeSlice 0 lenZs zs-{-# INLINABLE plusPoly #-}--plusPolyM-  :: (PrimMonad m, G.Vector v (Word, a))-  => (a -> Bool)-  -> (a -> a -> a)-  -> v (Word, a)-  -> v (Word, a)-  -> G.Mutable v (PrimState m) (Word, a)-  -> m Int-plusPolyM p add xs ys zs = go 0 0 0-  where-    lenXs = G.length xs-    lenYs = G.length ys--    go ix iy iz-      | ix == lenXs, iy == lenYs = pure iz-      | ix == lenXs = do-        G.unsafeCopy-          (MG.unsafeSlice iz (lenYs - iy) zs)-          (G.unsafeSlice iy (lenYs - iy) ys)-        pure $ iz + lenYs - iy-      | iy == lenYs = do-        G.unsafeCopy-          (MG.unsafeSlice iz (lenXs - ix) zs)-          (G.unsafeSlice ix (lenXs - ix) xs)-        pure $ iz + lenXs - ix-      | (xp, xc) <- G.unsafeIndex xs ix-      , (yp, yc) <- G.unsafeIndex ys iy-      = case xp `compare` yp of-        LT -> do-          MG.unsafeWrite zs iz (xp, xc)-          go (ix + 1) iy (iz + 1)-        EQ -> do-          let zc = xc `add` yc-          if p zc then do-            MG.unsafeWrite zs iz (xp, zc)-            go (ix + 1) (iy + 1) (iz + 1)-          else-            go (ix + 1) (iy + 1) iz-        GT -> do-          MG.unsafeWrite zs iz (yp, yc)-          go ix (iy + 1) (iz + 1)-{-# INLINABLE plusPolyM #-}--minusPoly-  :: G.Vector v (Word, a)-  => (a -> Bool)-  -> (a -> a)-  -> (a -> a -> a)-  -> v (Word, a)-  -> v (Word, a)-  -> v (Word, a)-minusPoly p neg sub xs ys = runST $ do-  zs <- MG.unsafeNew (lenXs + lenYs)-  let go ix iy iz-        | ix == lenXs, iy == lenYs = pure iz-        | ix == lenXs = do-          forM_ [iy .. lenYs - 1] $ \i ->-            MG.unsafeWrite zs (iz + i - iy)-              (fmap neg (G.unsafeIndex ys i))-          pure $ iz + lenYs - iy-        | iy == lenYs = do-          G.unsafeCopy-            (MG.unsafeSlice iz (lenXs - ix) zs)-            (G.unsafeSlice ix (lenXs - ix) xs)-          pure $ iz + lenXs - ix-        | (xp, xc) <- G.unsafeIndex xs ix-        , (yp, yc) <- G.unsafeIndex ys iy-        = case xp `compare` yp of-          LT -> do-            MG.unsafeWrite zs iz (xp, xc)-            go (ix + 1) iy (iz + 1)-          EQ -> do-            let zc = xc `sub` yc-            if p zc then do-              MG.unsafeWrite zs iz (xp, zc)-              go (ix + 1) (iy + 1) (iz + 1)-            else-              go (ix + 1) (iy + 1) iz-          GT -> do-            MG.unsafeWrite zs iz (yp, neg yc)-            go ix (iy + 1) (iz + 1)-  lenZs <- go 0 0 0-  G.unsafeFreeze $ MG.unsafeSlice 0 lenZs zs-  where-    lenXs = G.length xs-    lenYs = G.length ys-{-# INLINABLE minusPoly #-}--scaleM-  :: (PrimMonad m, G.Vector v (Word, a))-  => (a -> Bool)-  -> (a -> a -> a)-  -> v (Word, a)-  -> (Word, a)-  -> G.Mutable v (PrimState m) (Word, a)-  -> m Int-scaleM p mul xs (yp, yc) zs = go 0 0-  where-    lenXs = G.length xs--    go ix iz-      | ix == lenXs = pure iz-      | (xp, xc) <- G.unsafeIndex xs ix-      = do-        let zc = xc `mul` yc-        if p zc then do-          MG.unsafeWrite zs iz (xp + yp, zc)-          go (ix + 1) (iz + 1)-        else-          go (ix + 1) iz-{-# INLINABLE scaleM #-}--scaleInternal-  :: G.Vector v (Word, a)-  => (a -> Bool)-  -> (a -> a -> a)-  -> Word-  -> a-  -> Poly v a-  -> Poly v a-scaleInternal p mul yp yc (Poly xs) = runST $ do-  zs <- MG.unsafeNew (G.length xs)-  len <- scaleM p (flip mul) xs (yp, yc) zs-  fmap Poly $ G.unsafeFreeze $ MG.unsafeSlice 0 len zs-{-# INLINABLE scaleInternal #-}---- | Multiply a polynomial by a monomial, expressed as a power and a coefficient.------ >>> scale 2 3 (X^2 + 1) :: UPoly Int--- 3 * X^4 + 3 * X^2-scale :: (Eq a, Num a, G.Vector v (Word, a)) => Word -> a -> Poly v a -> Poly v a-scale = scaleInternal (/= 0) (*)--scale' :: (Eq a, Semiring a, G.Vector v (Word, a)) => Word -> a -> Poly v a -> Poly v a-scale' = scaleInternal (/= zero) times--convolution-  :: forall v a.-     G.Vector v (Word, a)-  => (a -> Bool)-  -> (a -> a -> a)-  -> (a -> a -> a)-  -> v (Word, a)-  -> v (Word, a)-  -> v (Word, a)-convolution p add mult xs ys-  | G.length xs >= G.length ys-  = go mult xs ys-  | otherwise-  = go (flip mult) ys xs-  where-    go :: (a -> a -> a) -> v (Word, a) -> v (Word, a) -> v (Word, a)-    go mul long short = runST $ do-      let lenLong   = G.length long-          lenShort  = G.length short-          lenBuffer = lenLong * lenShort-      slices <- MG.unsafeNew lenShort-      buffer <- MG.unsafeNew lenBuffer--      forM_ [0 .. lenShort - 1] $ \iShort -> do-        let (pShort, cShort) = G.unsafeIndex short iShort-            from = iShort * lenLong-            bufferSlice = MG.unsafeSlice from lenLong buffer-        len <- scaleM p mul long (pShort, cShort) bufferSlice-        MG.unsafeWrite slices iShort (from, len)--      slices' <- G.unsafeFreeze slices-      buffer' <- G.unsafeFreeze buffer-      bufferNew <- MG.unsafeNew lenBuffer-      gogo slices' buffer' bufferNew--    gogo-      :: PrimMonad m-      => U.Vector (Int, Int)-      -> v (Word, a)-      -> G.Mutable v (PrimState m) (Word, a)-      -> m (v (Word, a))-    gogo slices buffer bufferNew-      | G.length slices == 0-      = pure G.empty-      | G.length slices == 1-      , (from, len) <- G.unsafeIndex slices 0-      = pure $ G.unsafeSlice from len buffer-      | otherwise = do-        let nSlices = G.length slices-        slicesNew <- MG.unsafeNew ((nSlices + 1) `shiftR` 1)-        forM_ [0 .. (nSlices - 2) `shiftR` 1] $ \i -> do-          let (from1, len1) = G.unsafeIndex slices (2 * i)-              (from2, len2) = G.unsafeIndex slices (2 * i + 1)-              slice1 = G.unsafeSlice from1 len1 buffer-              slice2 = G.unsafeSlice from2 len2 buffer-              slice3 = MG.unsafeSlice from1 (len1 + len2) bufferNew-          len3 <- plusPolyM p add slice1 slice2 slice3-          MG.unsafeWrite slicesNew i (from1, len3)--        when (odd nSlices) $ do-          let (from, len) = G.unsafeIndex slices (nSlices - 1)-              slice1 = G.unsafeSlice from len buffer-              slice3 = MG.unsafeSlice from len bufferNew-          G.unsafeCopy slice3 slice1-          MG.unsafeWrite slicesNew (nSlices `shiftR` 1) (from, len)--        slicesNew' <- G.unsafeFreeze slicesNew-        buffer'    <- G.unsafeThaw   buffer-        bufferNew' <- G.unsafeFreeze bufferNew-        gogo slicesNew' bufferNew' buffer'-{-# INLINABLE convolution #-}---- | Create a monomial from a power and a coefficient.-monomial :: (Eq a, Num a, G.Vector v (Word, a)) => Word -> a -> Poly v a-monomial _ 0 = Poly G.empty-monomial p c = Poly $ G.singleton (p, c)--monomial' :: (Eq a, Semiring a, G.Vector v (Word, a)) => Word -> a -> Poly v a-monomial' p c-  | c == zero = Poly G.empty-  | otherwise = Poly $ G.singleton (p, c)--data Strict3 a b c = Strict3 !a !b !c--fst3 :: Strict3 a b c -> a-fst3 (Strict3 a _ _) = a---- | Evaluate at a given point.------ >>> eval (X^2 + 1 :: UPoly Int) 3--- 10-eval :: (Num a, G.Vector v (Word, a)) => Poly v a -> a -> a-eval = substitute (*)-{-# INLINE eval #-}--eval' :: (Semiring a, G.Vector v (Word, a)) => Poly v a -> a -> a-eval' = substitute' times-{-# INLINE eval' #-}---- | Substitute another polynomial instead of 'X'.------ >>> subst (X^2 + 1 :: UPoly Int) (X + 1 :: UPoly Int)--- 1 * X^2 + 2 * X + 2-subst-  :: (Eq a, Num a, G.Vector v (Word, a), G.Vector w (Word, a))-  => Poly v a-  -> Poly w a-  -> Poly w a-subst = substitute (scale 0)-{-# INLINE subst #-}--subst'-  :: (Eq a, Semiring a, G.Vector v (Word, a), G.Vector w (Word, a))-  => Poly v a-  -> Poly w a-  -> Poly w a-subst' = substitute' (scale' 0)-{-# INLINE subst' #-}--substitute :: (G.Vector v (Word, a), Num b) => (a -> b -> b) -> Poly v a -> b -> b-substitute f (Poly cs) x = fst3 $ G.foldl' go (Strict3 0 0 1) cs-  where-    go (Strict3 acc q xq) (p, c) =-      let xp = xq * x ^ (p - q) in-        Strict3 (acc + f c xp) p xp-{-# INLINE substitute #-}--substitute' :: (G.Vector v (Word, a), Semiring b) => (a -> b -> b) -> Poly v a -> b -> b-substitute' f (Poly cs) x = fst3 $ G.foldl' go (Strict3 zero 0 one) cs-  where-    go (Strict3 acc q xq) (p, c) =-      let xp = xq `times` (if p == q then one else x Semiring.^ (p - q)) in-        Strict3 (acc `plus` f c xp) p xp-{-# INLINE substitute' #-}---- | Take a derivative.------ >>> deriv (X^3 + 3 * X) :: UPoly Int--- 3 * X^2 + 3-deriv :: (Eq a, Num a, G.Vector v (Word, a)) => Poly v a -> Poly v a-deriv (Poly xs) = Poly $ derivPoly-  (/= 0)-  (\p c -> fromIntegral p * c)-  xs-{-# INLINE deriv #-}--deriv' :: (Eq a, Semiring a, G.Vector v (Word, a)) => Poly v a -> Poly v a-deriv' (Poly xs) = Poly $ derivPoly-  (/= zero)-  (\p c -> fromNatural (fromIntegral p) `times` c)-  xs-{-# INLINE deriv' #-}--derivPoly-  :: G.Vector v (Word, a)-  => (a -> Bool)-  -> (Word -> a -> a)-  -> v (Word, a)-  -> v (Word, a)-derivPoly p mul xs-  | G.null xs = G.empty-  | otherwise = runST $ do-    let lenXs = G.length xs-    zs <- MG.unsafeNew lenXs-    let go ix iz-          | ix == lenXs = pure iz-          | (xp, xc) <- G.unsafeIndex xs ix-          = do-            let zc = xp `mul` xc-            if xp > 0 && p zc then do-              MG.unsafeWrite zs iz (xp - 1, zc)-              go (ix + 1) (iz + 1)-            else-              go (ix + 1) iz-    lenZs <- go 0 0-    G.unsafeFreeze $ MG.unsafeSlice 0 lenZs zs-{-# INLINABLE derivPoly #-}---- | Compute an indefinite integral of a polynomial,--- setting constant term to zero.------ >>> integral (3 * X^2 + 3) :: UPoly Double--- 1.0 * X^3 + 3.0 * X-integral :: (Eq a, Fractional a, G.Vector v (Word, a)) => Poly v a -> Poly v a-integral (Poly xs)-  = Poly-  $ G.map (\(p, c) -> (p + 1, c / (fromIntegral p + 1))) xs-{-# INLINE integral #-}--integral' :: (Eq a, Field a, G.Vector v (Word, a)) => Poly v a -> Poly v a-integral' (Poly xs)-  = Poly-  $ G.map (\(p, c) -> (p + 1, c `quot` Semiring.fromIntegral (p + 1))) xs-{-# INLINE integral' #-}---- | Create an identity polynomial.-pattern X :: (Eq a, Num a, G.Vector v (Word, a), Eq (v (Word, a))) => Poly v a-pattern X <- ((==) var -> True)-  where X = var--var :: forall a v. (Eq a, Num a, G.Vector v (Word, a), Eq (v (Word, a))) => Poly v a-var-  | (1 :: a) == 0 = Poly G.empty-  | otherwise     = Poly $ G.singleton (1, 1)-{-# INLINE var #-}---- | Create an identity polynomial.-pattern X' :: (Eq a, Semiring a, G.Vector v (Word, a), Eq (v (Word, a))) => Poly v a-pattern X' <- ((==) var' -> True)-  where X' = var'--var' :: forall a v. (Eq a, Semiring a, G.Vector v (Word, a), Eq (v (Word, a))) => Poly v a-var'-  | (one :: a) == zero = Poly G.empty-  | otherwise          = Poly $ G.singleton (1, one)-{-# INLINE var' #-}
− src/Data/Poly/Internal/Sparse/Field.hs
@@ -1,56 +0,0 @@--- |--- Module:      Data.Poly.Internal.Sparse.Field--- Copyright:   (c) 2019 Andrew Lelechenko--- Licence:     BSD3--- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>------ GcdDomain for Field underlying-----{-# LANGUAGE ConstraintKinds            #-}-{-# LANGUAGE FlexibleContexts           #-}-{-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE PatternSynonyms            #-}-{-# LANGUAGE ScopedTypeVariables        #-}-{-# LANGUAGE TypeFamilies               #-}-{-# LANGUAGE UndecidableInstances       #-}--{-# OPTIONS_GHC -fno-warn-orphans #-}--module Data.Poly.Internal.Sparse.Field () where--import Prelude hiding (quotRem, quot, rem, gcd)-import Control.Arrow-import Control.Exception-import Data.Euclidean (Euclidean(..), Field)-import Data.Semiring (minus, plus, times, zero)-import qualified Data.Vector.Generic as G--import Data.Poly.Internal.Sparse-import Data.Poly.Internal.Sparse.GcdDomain ()--instance (Eq a, Eq (v (Word, a)), Field a, G.Vector v (Word, a)) => Euclidean (Poly v a) where-  degree (Poly xs)-    | G.null xs = 0-    | otherwise = 1 + fromIntegral (fst (G.last xs))--  quotRem = quotientRemainder--quotientRemainder-  :: (Eq a, Field a, G.Vector v (Word, a))-  => Poly v a-  -> Poly v a-  -> (Poly v a, Poly v a)-quotientRemainder ts ys = case leading ys of-  Nothing -> throw DivideByZero-  Just (yp, yc) -> go ts-    where-      go xs = case leading xs of-        Nothing -> (zero, zero)-        Just (xp, xc) -> case xp `compare` yp of-          LT -> (zero, xs)-          EQ -> (zs, xs')-          GT -> first (`plus` zs) $ go xs'-          where-            zs = Poly $ G.singleton (xp `minus` yp, xc `quot` yc)-            xs' = xs `minus` zs `times` ys
− src/Data/Poly/Internal/Sparse/GcdDomain.hs
@@ -1,74 +0,0 @@--- |--- Module:      Data.Poly.Internal.Sparse.GcdDomain--- Copyright:   (c) 2019 Andrew Lelechenko--- Licence:     BSD3--- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>------ GcdDomain for GcdDomain underlying-----{-# LANGUAGE FlexibleContexts           #-}-{-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE PatternSynonyms            #-}-{-# LANGUAGE ScopedTypeVariables        #-}-{-# LANGUAGE TypeFamilies               #-}-{-# LANGUAGE UndecidableInstances       #-}--{-# OPTIONS_GHC -fno-warn-orphans #-}--module Data.Poly.Internal.Sparse.GcdDomain-  () where--import Prelude hiding (gcd, lcm, (^))-import Control.Exception-import Data.Euclidean-import Data.Maybe-import Data.Semiring (Semiring(..), Ring(), minus)-import qualified Data.Vector.Generic as G--import Data.Poly.Internal.Sparse---- | Consider using 'Data.Poly.Sparse.Semiring.PolyOverField' wrapper,--- which provides a much faster implementation of--- 'Data.Euclidean.gcd' for polynomials over 'Field'.-instance (Eq a, Ring a, GcdDomain a, Eq (v (Word, a)), G.Vector v (Word, a)) => GcdDomain (Poly v a) where-  divide xs ys = case leading ys of-    Nothing -> throw DivideByZero-    Just (yp, yc) -> case leading xs of-      Nothing -> Just xs-      Just (xp, xc)-        | xp < yp -> Nothing-        | otherwise -> do-          zc <- divide xc yc-          let z = Poly $ G.singleton (xp - yp, zc)-          rest <- divide (xs `minus` z `times` ys) ys-          pure $ rest `plus` z--  gcd xs ys-    | G.null (unPoly xs) = ys-    | G.null (unPoly ys) = xs-    | otherwise = maybe err (times xy) (divide zs (monomial' 0 (cont zs)))-      where-        err = error "gcd: violated internal invariant"-        zs = gcdHelper xs ys-        cont ts = G.foldl' (\acc (_, t) -> gcd acc t) zero (unPoly ts)-        xy = monomial' 0 (gcd (cont xs) (cont ys))--gcdHelper-  :: (Eq a, Ring a, GcdDomain a, G.Vector v (Word, a))-  => Poly v a-  -> Poly v a-  -> Poly v a-gcdHelper xs ys = case leading xs of-  Nothing -> ys-  Just (xp, xc) -> case leading ys of-    Nothing -> xs-    Just (yp, yc) -> case xp `compare` yp of-      LT -> gcdHelper xs (ys `times` monomial' 0 gy `minus` xs `times` monomial' (yp - xp) gx)-      EQ -> gcdHelper xs (ys `times` monomial' 0 gy `minus` xs `times` monomial' 0 gx)-      GT -> gcdHelper (xs `times` monomial' 0 gx `minus` ys `times` monomial' (xp - yp) gy) ys-      where-        g = lcm xc yc-        gx = fromMaybe err $ divide g xc-        gy = fromMaybe err $ divide g yc-        err = error "gcd: violated internal invariant"
src/Data/Poly/Laurent.hs view
@@ -6,12 +6,10 @@ -- -- <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>. --+-- @since 0.4.0.0+-- -{-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE PatternSynonyms            #-}-{-# LANGUAGE ScopedTypeVariables        #-}-{-# LANGUAGE ViewPatterns               #-}  module Data.Poly.Laurent   ( Laurent@@ -27,258 +25,6 @@   , eval   , subst   , deriv-  , LaurentOverField(..)   ) where -import Prelude hiding (quotRem, quot, rem, gcd)-import Control.Arrow (first)-import Control.DeepSeq (NFData(..))-import Data.Euclidean (GcdDomain(..), Euclidean(..), Field)-import Data.List (intersperse)-import Data.Semiring (Semiring(..), Ring())-import qualified Data.Semiring as Semiring-import qualified Data.Vector as V-import qualified Data.Vector.Generic as G-import qualified Data.Vector.Unboxed as U--import Data.Poly.Internal.Dense (Poly(..))-import qualified Data.Poly.Internal.Dense as Dense-import Data.Poly.Internal.Dense.Field ()-import Data.Poly.Internal.Dense.GcdDomain ()-import Data.Poly.Internal.PolyOverField---- | <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>--- of one variable with coefficients from @a@,--- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).------ Use pattern 'X' and operator '^-' for construction:------ >>> (X + 1) + (X^-1 - 1) :: VLaurent Integer--- 1 * X + 0 + 1 * X^-1--- >>> (X + 1) * (1 - X^-1) :: ULaurent Int--- 1 * X + 0 + (-1) * X^-1------ Polynomials are stored normalized, without leading--- and trailing--- zero coefficients, so 0 * X + 1 + 0 * X^-1 equals to 1.------ 'Ord' instance does not make much sense mathematically,--- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.----data Laurent v a = Laurent !Int !(Poly v a)-  deriving (Eq, Ord)---- | Deconstruct a 'Laurent' polynomial into an offset (largest possible)--- and a regular polynomial.------ >>> unLaurent (2 * X + 1 :: ULaurent Int)--- (0,2 * X + 1)--- >>> unLaurent (1 + 2 * X^-1 :: ULaurent Int)--- (-1,1 * X + 2)--- >>> unLaurent (2 * X^2 + X :: ULaurent Int)--- (1,2 * X + 1)--- >>> unLaurent (0 :: ULaurent Int)--- (0,0)-unLaurent :: Laurent v a -> (Int, Poly v a)-unLaurent (Laurent off poly) = (off, poly)---- | Construct 'Laurent' polynomial from an offset and a regular polynomial.--- One can imagine it as 'Data.Poly.scale'', but allowing negative offsets.------ >>> toLaurent 2 (2 * Data.Poly.X + 1) :: ULaurent Int--- 2 * X^3 + 1 * X^2--- >>> toLaurent (-2) (2 * Data.Poly.X + 1) :: ULaurent Int--- 2 * X^-1 + 1 * X^-2-toLaurent-  :: (Eq a, Semiring a, G.Vector v a)-  => Int-  -> Poly v a-  -> Laurent v a-toLaurent off (Poly xs) = go 0-  where-    go k-      | k >= G.length xs-      = Laurent 0 zero-      | G.unsafeIndex xs k == zero-      = go (k + 1)-      | otherwise-      = Laurent (off + k) (Poly (G.unsafeDrop k xs))-{-# INLINE toLaurent #-}--toLaurentNum-  :: (Eq a, Num a, G.Vector v a)-  => Int-  -> Poly v a-  -> Laurent v a-toLaurentNum off (Poly xs) = go 0-  where-    go k-      | k >= G.length xs-      = Laurent 0 0-      | G.unsafeIndex xs k == 0-      = go (k + 1)-      | otherwise-      = Laurent (off + k) (Poly (G.unsafeDrop k xs))-{-# INLINE toLaurentNum #-}--instance NFData (v a) => NFData (Laurent v a) where-  rnf (Laurent off poly) = rnf off `seq` rnf poly--instance (Show a, G.Vector v a) => Show (Laurent v a) where-  showsPrec d (Laurent off poly)-    | G.null (unPoly poly)-      = showString "0"-    | otherwise-      = showParen (d > 0)-      $ foldl (.) id-      $ intersperse (showString " + ")-      $ G.ifoldl (\acc i c -> showCoeff (i + off) c : acc) []-      $ unPoly poly-    where-      showCoeff 0 c = showsPrec 7 c-      showCoeff 1 c = showsPrec 7 c . showString " * X"-      showCoeff i c = showsPrec 7 c . showString (" * X^" ++ show i)---- | Laurent polynomials backed by boxed vectors.-type VLaurent = Laurent V.Vector---- | Laurent polynomials backed by unboxed vectors.-type ULaurent = Laurent U.Vector---- | Return a leading power and coefficient of a non-zero polynomial.------ >>> leading ((2 * X + 1) * (2 * X^2 - 1) :: ULaurent Int)--- Just (3,4)--- >>> leading (0 :: ULaurent Int)--- Nothing-leading :: G.Vector v a => Laurent v a -> Maybe (Int, a)-leading (Laurent off poly) = first ((+ off) . fromIntegral) <$> Dense.leading poly---- | Note that 'abs' = 'id' and 'signum' = 'const' 1.-instance (Eq a, Num a, G.Vector v a) => Num (Laurent v a) where-  Laurent off1 poly1 * Laurent off2 poly2 = toLaurentNum (off1 + off2) (poly1 * poly2)-  Laurent off1 poly1 + Laurent off2 poly2 = case off1 `compare` off2 of-    LT -> toLaurentNum off1 (poly1 + Dense.scale (fromIntegral $ off2 - off1) 1 poly2)-    EQ -> toLaurentNum off1 (poly1 + poly2)-    GT -> toLaurentNum off2 (Dense.scale (fromIntegral $ off1 - off2) 1 poly1 + poly2)-  Laurent off1 poly1 - Laurent off2 poly2 = case off1 `compare` off2 of-    LT -> toLaurentNum off1 (poly1 - Dense.scale (fromIntegral $ off2 - off1) 1 poly2)-    EQ -> toLaurentNum off1 (poly1 - poly2)-    GT -> toLaurentNum off2 (Dense.scale (fromIntegral $ off1 - off2) 1 poly1 - poly2)-  negate (Laurent off poly) = Laurent off (negate poly)-  abs = id-  signum = const 1-  fromInteger n = Laurent 0 (fromInteger n)-  {-# INLINE (+) #-}-  {-# INLINE (-) #-}-  {-# INLINE negate #-}-  {-# INLINE fromInteger #-}-  {-# INLINE (*) #-}--instance (Eq a, Semiring a, G.Vector v a) => Semiring (Laurent v a) where-  zero = Laurent 0 zero-  one  = Laurent 0 one-  Laurent off1 poly1 `times` Laurent off2 poly2 =-    toLaurent (off1 + off2) (poly1 `times` poly2)-  Laurent off1 poly1 `plus` Laurent off2 poly2 = case off1 `compare` off2 of-    LT -> toLaurent off1 (poly1 `plus` Dense.scale' (fromIntegral $ off2 - off1) one poly2)-    EQ -> toLaurent off1 (poly1 `plus` poly2)-    GT -> toLaurent off2 (Dense.scale' (fromIntegral $ off1 - off2) one poly1 `plus` poly2)-  fromNatural n = Laurent 0 (fromNatural n)-  {-# INLINE zero #-}-  {-# INLINE one #-}-  {-# INLINE plus #-}-  {-# INLINE times #-}-  {-# INLINE fromNatural #-}--instance (Eq a, Ring a, G.Vector v a) => Ring (Laurent v a) where-  negate (Laurent off poly) = Laurent off (Semiring.negate poly)---- | Create a monomial from a power and a coefficient.-monomial :: (Eq a, Semiring a, G.Vector v a) => Int -> a -> Laurent v a-monomial p c-  | c == zero = Laurent 0 zero-  | otherwise = Laurent p (Dense.monomial' 0 c)-{-# INLINE monomial #-}---- | Multiply a polynomial by a monomial, expressed as a power and a coefficient.------ >>> scale 2 3 (X^2 + 1) :: ULaurent Int--- 3 * X^4 + 0 * X^3 + 3 * X^2 + 0 * X + 0-scale :: (Eq a, Semiring a, G.Vector v a) => Int -> a -> Laurent v a -> Laurent v a-scale yp yc (Laurent off poly) = toLaurent (off + yp) (Dense.scale' 0 yc poly)---- | Evaluate at a given point.------ >>> eval (X^2 + 1 :: ULaurent Int) 3--- 10-eval :: (Field a, G.Vector v a) => Laurent v a -> a -> a-eval (Laurent off poly) x = Dense.eval' poly x `times`-  (if off >= 0 then x Semiring.^ off else quot one x Semiring.^ (- off))-{-# INLINE eval #-}---- | Substitute another polynomial instead of 'Data.Poly.X'.------ >>> subst (X^2 + 1 :: UPoly Int) (X + 1 :: ULaurent Int)--- 1 * X^2 + 2 * X + 2-subst :: (Eq a, Semiring a, G.Vector v a, G.Vector w a) => Poly v a -> Laurent w a -> Laurent w a-subst = Dense.substitute' (scale 0)-{-# INLINE subst #-}---- | Take a derivative.------ >>> deriv (X^3 + 3 * X) :: ULaurent Int--- 3 * X^2 + 0 * X + 3-deriv :: (Eq a, Ring a, G.Vector v a) => Laurent v a -> Laurent v a-deriv (Laurent off (Poly xs)) =-  toLaurent (off - 1) $ Dense.toPoly' $ G.imap (times . Semiring.fromIntegral . (+ off)) xs-{-# INLINE deriv #-}---- | Create an identity polynomial.-pattern X :: (Eq a, Semiring a, G.Vector v a, Eq (v a)) => Laurent v a-pattern X <- ((==) var -> True)-  where X = var--var :: forall a v. (Eq a, Semiring a, G.Vector v a, Eq (v a)) => Laurent v a-var-  | (one :: a) == zero = Laurent 0 zero-  | otherwise          = Laurent 1 one-{-# INLINE var #-}---- | This operator can be applied only to 'X',--- but is instrumental to express Laurent polynomials in mathematical fashion:------ >>> X + 2 + 3 * X^-1 :: ULaurent Int--- 1 * X + 2 + 3 * X^(-1)-(^-)-  :: (Eq a, Semiring a, G.Vector v a, Eq (v a))-  => Laurent v a-  -> Int-  -> Laurent v a-X^-n = monomial (negate n) one-_^-_ = error "(^-) can be applied only to X"---- | Consider using 'LaurentOverField' wrapper,--- which provides a much faster implementation of--- 'Data.Euclidean.gcd' for polynomials over 'Field'.-instance (Eq a, Ring a, GcdDomain a, Eq (v a), G.Vector v a) => GcdDomain (Laurent v a) where-  divide (Laurent off1 poly1) (Laurent off2 poly2) =-    toLaurent (off1 - off2) <$> divide poly1 poly2-  {-# INLINE divide #-}--  gcd (Laurent _ poly1) (Laurent _ poly2) =-    toLaurent 0 (gcd poly1 poly2)-  {-# INLINE gcd #-}---- | Wrapper for Laurent polynomials over 'Field',--- providing a faster 'GcdDomain' instance.-newtype LaurentOverField laurent = LaurentOverField { unLaurentOverField :: laurent }-  deriving (Eq, NFData, Num, Ord, Ring, Semiring, Show)--instance (Eq a, Eq (v a), Field a, G.Vector v a) => GcdDomain (LaurentOverField (Laurent v a)) where-  divide (LaurentOverField (Laurent off1 poly1)) (LaurentOverField (Laurent off2 poly2)) =-    LaurentOverField . toLaurent (off1 - off2) . unPolyOverField <$> divide (PolyOverField poly1) (PolyOverField poly2)--  gcd (LaurentOverField (Laurent _ poly1)) (LaurentOverField (Laurent _ poly2)) =-    LaurentOverField (toLaurent 0 (unPolyOverField (gcd (PolyOverField poly1) (PolyOverField poly2))))-  {-# INLINE gcd #-}+import Data.Poly.Internal.Dense.Laurent
+ src/Data/Poly/Multi.hs view
@@ -0,0 +1,36 @@+-- |+-- Module:      Data.Poly.Multi+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- Sparse multivariate polynomials with 'Num' instance.+--+-- @since 0.5.0.0++{-# LANGUAGE DataKinds        #-}+{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE PatternSynonyms  #-}++module Data.Poly.Multi+  ( MultiPoly+  , VMultiPoly+  , UMultiPoly+  , unMultiPoly+  , toMultiPoly+  , monomial+  , scale+  , pattern X+  , pattern Y+  , pattern Z+  , eval+  , subst+  , deriv+  , integral+  , segregate+  , unsegregate+  ) where++import Data.Poly.Internal.Multi+import Data.Poly.Internal.Multi.Field ()+import Data.Poly.Internal.Multi.GcdDomain ()
+ src/Data/Poly/Multi/Laurent.hs view
@@ -0,0 +1,32 @@+-- |+-- Module:      Data.Poly.Multi.Laurent+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- Sparse multivariate+-- <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>.+--++{-# LANGUAGE PatternSynonyms            #-}++module Data.Poly.Multi.Laurent+  ( MultiLaurent+  , VMultiLaurent+  , UMultiLaurent+  , unMultiLaurent+  , toMultiLaurent+  , monomial+  , scale+  , pattern X+  , pattern Y+  , pattern Z+  , (^-)+  , eval+  , subst+  , deriv+  , segregate+  , unsegregate+  ) where++import Data.Poly.Internal.Multi.Laurent
+ src/Data/Poly/Multi/Semiring.hs view
@@ -0,0 +1,178 @@+-- |+-- Module:      Data.Poly.Multi.Semiring+-- Copyright:   (c) 2020 Andrew Lelechenko+-- Licence:     BSD3+-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>+--+-- Sparse multivariate polynomials with a 'Semiring' instance.+--+-- @since 0.5.0.0++{-# LANGUAGE DataKinds        #-}+{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE PatternSynonyms  #-}+{-# LANGUAGE TypeFamilies     #-}+{-# LANGUAGE TypeOperators    #-}++module Data.Poly.Multi.Semiring+  ( MultiPoly+  , VMultiPoly+  , UMultiPoly+  , unMultiPoly+  , toMultiPoly+  , monomial+  , scale+  , pattern X+  , pattern Y+  , pattern Z+  , eval+  , subst+  , deriv+  , integral+  , segregate+  , unsegregate+  ) where++import Data.Finite+import Data.Euclidean (Field)+import Data.Semiring (Semiring(..))+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Sized as SG+import qualified Data.Vector.Sized as SV+import qualified Data.Vector.Unboxed.Sized as SU+import GHC.TypeNats (KnownNat, type (<=))++import Data.Poly.Internal.Multi (MultiPoly, VMultiPoly, UMultiPoly, unMultiPoly, segregate, unsegregate)+import qualified Data.Poly.Internal.Multi as Multi+import Data.Poly.Internal.Multi.Field ()+import Data.Poly.Internal.Multi.GcdDomain ()++-- | Make a 'MultiPoly' from a list of (powers, coefficient) pairs.+--+-- >>> :set -XOverloadedLists -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> toMultiPoly [(fromTuple (0,0),1),(fromTuple (0,1),2),(fromTuple (1,0),3)] :: VMultiPoly 2 Integer+-- 3 * X + 2 * Y + 1+-- >>> toMultiPoly [(fromTuple (0,0),0),(fromTuple (0,1),0),(fromTuple (1,0),0)] :: UMultiPoly 2 Int+-- 0+--+-- @since 0.5.0.0+toMultiPoly+  :: (Eq a, Semiring a, G.Vector v (SU.Vector n Word, a))+  => v (SU.Vector n Word, a)+  -> MultiPoly v n a+toMultiPoly = Multi.toMultiPoly'++-- | Create a monomial from powers and a coefficient.+--+-- @since 0.5.0.0+monomial+  :: (Eq a, Semiring a, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Word+  -> a+  -> MultiPoly v n a+monomial = Multi.monomial'++-- | Multiply a polynomial by a monomial, expressed as powers and a coefficient.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> scale (fromTuple (1, 1)) 3 (X^2 + Y) :: UMultiPoly 2 Int+-- 3 * X^3 * Y + 3 * X * Y^2+--+-- @since 0.5.0.0+scale+  :: (Eq a, Semiring a, KnownNat n, G.Vector v (SU.Vector n Word, a))+  => SU.Vector n Word+  -> a+  -> MultiPoly v n a+  -> MultiPoly v n a+scale = Multi.scale'++-- | Create a polynomial equal to the first variable.+--+-- @since 0.5.0.0+pattern X+  :: (Eq a, Semiring a, KnownNat n, 1 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern X = Multi.X'++-- | Create a polynomial equal to the second variable.+--+-- @since 0.5.0.0+pattern Y+  :: (Eq a, Semiring a, KnownNat n, 2 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern Y = Multi.Y'++-- | Create a polynomial equal to the third variable.+--+-- @since 0.5.0.0+pattern Z+  :: (Eq a, Semiring a, KnownNat n, 3 <= n, G.Vector v (SU.Vector n Word, a))+  => MultiPoly v n a+pattern Z = Multi.Z'++-- | Evaluate the polynomial at a given point.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> eval (X^2 + Y^2 :: UMultiPoly 2 Int) (fromTuple (3, 4) :: Data.Vector.Sized.Vector 2 Int)+-- 25+--+-- @since 0.5.0.0+eval+  :: (Semiring a, G.Vector v (SU.Vector n Word, a), G.Vector u a)+  => MultiPoly v n a+  -> SG.Vector u n a+  -> a+eval = Multi.eval'++-- | Substitute other polynomials instead of the variables.+--+-- >>> :set -XDataKinds+-- >>> import Data.Vector.Generic.Sized (fromTuple)+-- >>> subst (X^2 + Y^2 + Z^2 :: UMultiPoly 3 Int) (fromTuple (X + 1, Y + 1, X + Y :: UMultiPoly 2 Int))+-- 2 * X^2 + 2 * X * Y + 2 * X + 2 * Y^2 + 2 * Y + 2+--+-- @since 0.5.0.0+subst+  :: (Eq a, Semiring a, KnownNat m, G.Vector v (SU.Vector n Word, a), G.Vector w (SU.Vector m Word, a))+  => MultiPoly v n a+  -> SV.Vector n (MultiPoly w m a)+  -> MultiPoly w m a+subst = Multi.subst'++-- | Take the derivative of the polynomial with respect to the /i/-th variable.+--+-- >>> :set -XDataKinds+-- >>> deriv 0 (X^3 + 3 * Y) :: UMultiPoly 2 Int+-- 3 * X^2+-- >>> deriv 1 (X^3 + 3 * Y) :: UMultiPoly 2 Int+-- 3+--+-- @since 0.5.0.0+deriv+  :: (Eq a, Semiring a, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> MultiPoly v n a+deriv = Multi.deriv'++-- | Compute an indefinite integral of the polynomial+-- with respect to the /i/-th variable,+-- setting the constant term to zero.+--+-- >>> :set -XDataKinds+-- >>> integral 0 (3 * X^2 + 2 * Y) :: UMultiPoly 2 Double+-- 1.0 * X^3 + 2.0 * X * Y+-- >>> integral 1 (3 * X^2 + 2 * Y) :: UMultiPoly 2 Double+-- 3.0 * X^2 * Y + 1.0 * Y^2+--+-- @since 0.5.0.0+integral+  :: (Field a, G.Vector v (SU.Vector n Word, a))+  => Finite n+  -> MultiPoly v n a+  -> MultiPoly v n a+integral = Multi.integral'
src/Data/Poly/Orthogonal.hs view
@@ -6,6 +6,7 @@ -- -- Classical orthogonal polynomials. --+-- @since 0.4.0.0  {-# LANGUAGE OverloadedLists     #-} {-# LANGUAGE RebindableSyntax    #-}@@ -34,8 +35,10 @@ -- -- >>> take 3 legendre :: [Data.Poly.VPoly Double] -- [1.0,1.0 * X + 0.0,1.5 * X^2 + 0.0 * X + (-0.5)]+--+-- @since 0.4.0.0 legendre :: (Eq a, Field a, Vector v a) => [Poly v a]-legendre = map (flip subst' (toPoly [1 `quot` 2, 1 `quot` 2])) legendreShifted+legendre = map (`subst'` toPoly [1 `quot` 2, 1 `quot` 2]) legendreShifted   where     subst' :: (Eq a, Semiring a, Vector v a) => Poly v a -> Poly v a -> Poly v a     subst' = subst@@ -44,6 +47,8 @@ -- -- >>> take 3 legendreShifted :: [Data.Poly.VPoly Integer] -- [1,2 * X + (-1),6 * X^2 + (-6) * X + 1]+--+-- @since 0.4.0.0 legendreShifted :: (Eq a, Euclidean a, Ring a, Vector v a) => [Poly v a] legendreShifted = xs   where@@ -51,12 +56,16 @@     rec n pm1 p = unscale' 0 (n + 1) (toPoly [-1 - 2 * n, 2 + 4 * n] * p - scale 0 n pm1)  -- | <https://en.wikipedia.org/wiki/Gegenbauer_polynomials Gegenbauer polynomials>.+--+-- @since 0.4.0.0 gegenbauer :: (Eq a, Field a, Vector v a) => a -> [Poly v a] gegenbauer g = jacobi a a   where     a = g - 1 `quot` 2  -- | <https://en.wikipedia.org/wiki/Jacobi_polynomials Jacobi polynomials>.+--+-- @since 0.4.0.0 jacobi :: (Eq a, Field a, Vector v a) => a -> a -> [Poly v a] jacobi a b = xs   where@@ -74,8 +83,10 @@ -- | <https://en.wikipedia.org/wiki/Chebyshev_polynomials Chebyshev polynomials> -- of the first kind. ----- >>> take 3 chebyshev1 :: [VPoly Integer]+-- >>> take 3 chebyshev1 :: [Data.Poly.VPoly Integer] -- [1,1 * X + 0,2 * X^2 + 0 * X + (-1)]+--+-- @since 0.4.0.0 chebyshev1 :: (Eq a, Ring a, Vector v a) => [Poly v a] chebyshev1 = xs   where@@ -84,8 +95,10 @@ -- | <https://en.wikipedia.org/wiki/Chebyshev_polynomials Chebyshev polynomials> -- of the second kind. ----- >>> take 3 chebyshev2 :: [VPoly Integer]+-- >>> take 3 chebyshev2 :: [Data.Poly.VPoly Integer] -- [1,2 * X + 0,4 * X^2 + 0 * X + (-1)]+--+-- @since 0.4.0.0 chebyshev2 :: (Eq a, Ring a, Vector v a) => [Poly v a] chebyshev2 = xs   where@@ -93,8 +106,10 @@  -- | Probabilists' <https://en.wikipedia.org/wiki/Hermite_polynomials Hermite polynomials>. ----- >>> take 3 hermiteProb :: [VPoly Integer]+-- >>> take 3 hermiteProb :: [Data.Poly.VPoly Integer] -- [1,1 * X + 0,1 * X^2 + 0 * X + (-1)]+--+-- @since 0.4.0.0 hermiteProb :: (Eq a, Ring a, Vector v a) => [Poly v a] hermiteProb = xs   where@@ -103,8 +118,10 @@  -- | Physicists' <https://en.wikipedia.org/wiki/Hermite_polynomials Hermite polynomials>. ----- >>> take 3 hermitePhys :: [VPoly Double]--- [1,2 * X + 0,4 * X^2 + 0 * X + (-2)]+-- >>> take 3 hermitePhys :: [Data.Poly.VPoly Double]+-- [1.0,2.0 * X + 0.0,4.0 * X^2 + 0.0 * X + (-2.0)]+--+-- @since 0.4.0.0 hermitePhys :: (Eq a, Ring a, Vector v a) => [Poly v a] hermitePhys = xs   where@@ -113,12 +130,16 @@  -- | <https://en.wikipedia.org/wiki/Laguerre_polynomials Laguerre polynomials>. ----- >>> take 3 laguerre :: [VPoly Double]+-- >>> take 3 laguerre :: [Data.Poly.VPoly Double] -- [1.0,(-1.0) * X + 1.0,0.5 * X^2 + (-2.0) * X + 1.0]+--+-- @since 0.4.0.0 laguerre :: (Eq a, Field a, Vector v a) => [Poly v a] laguerre = laguerreGen 0  -- | <https://en.wikipedia.org/wiki/Laguerre_polynomials#Generalized_Laguerre_polynomials Generalized Laguerre polynomials>+--+-- @since 0.4.0.0 laguerreGen :: (Eq a, Field a, Vector v a) => a -> [Poly v a] laguerreGen a = xs   where
src/Data/Poly/Semiring.hs view
@@ -6,8 +6,12 @@ -- -- Dense polynomials and a 'Semiring'-based interface. --+-- @since 0.2.0.0 -{-# LANGUAGE PatternSynonyms #-}+{-# LANGUAGE CPP              #-}+{-# LANGUAGE DataKinds        #-}+{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE PatternSynonyms  #-}  module Data.Poly.Semiring   ( Poly@@ -23,31 +27,49 @@   , subst   , deriv   , integral-  , PolyOverField(..)+  , timesRing+#ifdef SupportSparse+  , denseToSparse+  , sparseToDense+#endif+  , dft+  , inverseDft+  , dftMult   ) where +import Data.Bits import Data.Euclidean (Field)-import Data.Semiring (Semiring)+import Data.Semiring (Semiring(..)) import qualified Data.Vector.Generic as G -import Data.Poly.Internal.Dense (Poly(..), VPoly, UPoly, leading)+import Data.Poly.Internal.Dense (Poly(..), VPoly, UPoly, leading, timesRing) import qualified Data.Poly.Internal.Dense as Dense import Data.Poly.Internal.Dense.Field ()+import Data.Poly.Internal.Dense.DFT import Data.Poly.Internal.Dense.GcdDomain ()-import Data.Poly.Internal.PolyOverField --- | Make 'Poly' from a vector of coefficients--- (first element corresponds to a constant term).+#ifdef SupportSparse+import qualified Data.Vector.Unboxed.Sized as SU+import qualified Data.Poly.Internal.Multi as Sparse+import qualified Data.Poly.Internal.Convert as Convert+#endif++-- | Make a 'Poly' from a vector of coefficients+-- (first element corresponds to the constant term). -- -- >>> :set -XOverloadedLists -- >>> toPoly [1,2,3] :: VPoly Integer -- 3 * X^2 + 2 * X + 1 -- >>> toPoly [0,0,0] :: UPoly Int -- 0+--+-- @since 0.2.0.0 toPoly :: (Eq a, Semiring a, G.Vector v a) => v a -> Poly v a toPoly = Dense.toPoly'  -- | Create a monomial from a power and a coefficient.+--+-- @since 0.3.0.0 monomial :: (Eq a, Semiring a, G.Vector v a) => Word -> a -> Poly v a monomial = Dense.monomial' @@ -55,17 +77,25 @@ -- -- >>> scale 2 3 (X^2 + 1) :: UPoly Int -- 3 * X^4 + 0 * X^3 + 3 * X^2 + 0 * X + 0+--+-- @since 0.3.0.0 scale :: (Eq a, Semiring a, G.Vector v a) => Word -> a -> Poly v a -> Poly v a scale = Dense.scale' --- | Create an identity polynomial.-pattern X :: (Eq a, Semiring a, G.Vector v a, Eq (v a)) => Poly v a+-- | The polynomial 'X'.+--+-- > X == monomial 1 one+--+-- @since 0.2.0.0+pattern X :: (Eq a, Semiring a, G.Vector v a) => Poly v a pattern X = Dense.X' --- | Evaluate at a given point.+-- | Evaluate the polynomial at a given point. -- -- >>> eval (X^2 + 1 :: UPoly Int) 3 -- 10+--+-- @since 0.2.0.0 eval :: (Semiring a, G.Vector v a) => Poly v a -> a -> a eval = Dense.eval' @@ -73,20 +103,76 @@ -- -- >>> subst (X^2 + 1 :: UPoly Int) (X + 1 :: UPoly Int) -- 1 * X^2 + 2 * X + 2+--+-- @since 0.3.3.0 subst :: (Eq a, Semiring a, G.Vector v a, G.Vector w a) => Poly v a -> Poly w a -> Poly w a subst = Dense.subst' --- | Take a derivative.+-- | Take the derivative of the polynomial. -- -- >>> deriv (X^3 + 3 * X) :: UPoly Int -- 3 * X^2 + 0 * X + 3+--+-- @since 0.2.0.0 deriv :: (Eq a, Semiring a, G.Vector v a) => Poly v a -> Poly v a deriv = Dense.deriv' --- | Compute an indefinite integral of a polynomial,--- setting constant term to zero.+-- | Compute an indefinite integral of the polynomial,+-- setting the constant term to zero. -- -- >>> integral (3 * X^2 + 3) :: UPoly Double -- 1.0 * X^3 + 0.0 * X^2 + 3.0 * X + 0.0+--+-- @since 0.3.2.0 integral :: (Eq a, Field a, G.Vector v a) => Poly v a -> Poly v a integral = Dense.integral'++-- | Multiplication of polynomials using+-- <https://en.wikipedia.org/wiki/Fast_Fourier_transform discrete Fourier transform>.+-- It could be faster than '(*)' for large polynomials+-- if multiplication of coefficients is particularly expensive.+--+-- @since 0.5.0.0+dftMult+  :: (Eq a, Field a, G.Vector v a)+  => (Int -> a) -- ^ mapping from \( N = 2^n \) to a primitive root \( \sqrt[N]{1} \)+  -> Poly v a+  -> Poly v a+  -> Poly v a+dftMult getPrimRoot (Poly xs) (Poly ys) =+  toPoly $ inverseDft primRoot $ G.zipWith times (dft primRoot xs') (dft primRoot ys')+  where+    nextPowerOf2 :: Int -> Int+    nextPowerOf2 0 = 1+    nextPowerOf2 1 = 1+    nextPowerOf2 x = 1 `unsafeShiftL` (finiteBitSize (0 :: Int) - countLeadingZeros (x - 1))++    padTo l vs = G.generate l (\k -> if k < G.length vs then vs G.! k else zero)++    zl = nextPowerOf2 (G.length xs + G.length ys)+    xs' = padTo zl xs+    ys' = padTo zl ys+    primRoot = getPrimRoot zl+{-# INLINABLE dftMult #-}++#ifdef SupportSparse+-- | Convert from dense to sparse polynomials.+--+-- >>> :set -XFlexibleContexts+-- >>> denseToSparse (1 `Data.Semiring.plus` Data.Poly.X^2) :: Data.Poly.Sparse.UPoly Int+-- 1 * X^2 + 1+--+-- @since 0.5.0.0+denseToSparse :: (Eq a, Semiring a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a)) => Dense.Poly v a -> Sparse.Poly v a+denseToSparse = Convert.denseToSparse'++-- | Convert from sparse to dense polynomials.+--+-- >>> :set -XFlexibleContexts+-- >>> sparseToDense (1 `Data.Semiring.plus` Data.Poly.Sparse.X^2) :: Data.Poly.UPoly Int+-- 1 * X^2 + 0 * X + 1+--+-- @since 0.5.0.0+sparseToDense :: (Semiring a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a)) => Sparse.Poly v a -> Dense.Poly v a+sparseToDense = Convert.sparseToDense'+#endif
src/Data/Poly/Sparse.hs view
@@ -4,18 +4,22 @@ -- Licence:     BSD3 -- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com> ----- Sparse polynomials with 'Num' instance.+-- Sparse polynomials with a 'Num' instance. --+-- @since 0.3.0.0+-- -{-# LANGUAGE PatternSynonyms #-}+{-# LANGUAGE DataKinds        #-}+{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE PatternSynonyms  #-}  module Data.Poly.Sparse   ( Poly   , VPoly   , UPoly   , unPoly-  , leading   , toPoly+  , leading   , monomial   , scale   , pattern X@@ -23,8 +27,125 @@   , subst   , deriv   , integral+  , quotRemFractional+  , denseToSparse+  , sparseToDense   ) where -import Data.Poly.Internal.Sparse-import Data.Poly.Internal.Sparse.Field ()-import Data.Poly.Internal.Sparse.GcdDomain ()+import Control.Arrow+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Unboxed.Sized as SU+import qualified Data.Vector.Sized as SV++import Data.Poly.Internal.Convert+import Data.Poly.Internal.Multi (Poly, VPoly, UPoly, unPoly, leading)+import qualified Data.Poly.Internal.Multi as Multi+import Data.Poly.Internal.Multi.Field (quotRemFractional)+import Data.Poly.Internal.Multi.GcdDomain ()++-- | Make a 'Poly' from a list of (power, coefficient) pairs.+--+-- >>> :set -XOverloadedLists+-- >>> toPoly [(0,1),(1,2),(2,3)] :: VPoly Integer+-- 3 * X^2 + 2 * X + 1+-- >>> toPoly [(0,0),(1,0),(2,0)] :: UPoly Int+-- 0+--+-- @since 0.3.0.0+toPoly+  :: (Eq a, Num a, G.Vector v (Word, a), G.Vector v (SU.Vector 1 Word, a))+  => v (Word, a)+  -> Poly v a+toPoly = Multi.toMultiPoly . G.map (first SU.singleton)+{-# INLINABLE toPoly #-}++-- | Create a monomial from a power and a coefficient.+--+-- @since 0.3.0.0+monomial+  :: (Eq a, Num a, G.Vector v (SU.Vector 1 Word, a))+  => Word+  -> a+  -> Poly v a+monomial = Multi.monomial . SU.singleton+{-# INLINABLE monomial #-}++-- | Multiply a polynomial by a monomial, expressed as a power and a coefficient.+--+-- >>> scale 2 3 (X^2 + 1) :: UPoly Int+-- 3 * X^4 + 3 * X^2+--+-- @since 0.3.0.0+scale+  :: (Eq a, Num a, G.Vector v (SU.Vector 1 Word, a))+  => Word+  -> a+  -> Poly v a+  -> Poly v a+scale = Multi.scale . SU.singleton+{-# INLINABLE scale #-}++-- | The polynomial 'X'.+--+-- > X == monomial 1 1+--+-- @since 0.3.0.0+pattern X+  :: (Eq a, Num a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+pattern X = Multi.X++-- | Evaluate the polynomial at a given point.+--+-- >>> eval (X^2 + 1 :: UPoly Int) 3+-- 10+--+-- @since 0.3.0.0+eval+  :: (Num a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> a+  -> a+eval p = Multi.eval p . SV.singleton+{-# INLINABLE eval #-}++-- | Substitute another polynomial instead of 'X'.+--+-- >>> subst (X^2 + 1 :: UPoly Int) (X + 1 :: UPoly Int)+-- 1 * X^2 + 2 * X + 2+--+-- @since 0.3.3.0+subst+  :: (Eq a, Num a, G.Vector v (SU.Vector 1 Word, a), G.Vector w (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly w a+  -> Poly w a+subst p = Multi.subst p . SV.singleton+{-# INLINABLE subst #-}++-- | Take the derivative of the polynomial.+--+-- >>> deriv (X^3 + 3 * X) :: UPoly Int+-- 3 * X^2 + 3+--+-- @since 0.3.0.0+deriv+  :: (Eq a, Num a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly v a+deriv = Multi.deriv 0+{-# INLINABLE deriv #-}++-- | Compute an indefinite integral of the polynomial,+-- setting the constant term to zero.+--+-- >>> integral (3 * X^2 + 3) :: UPoly Double+-- 1.0 * X^3 + 3.0 * X+--+-- @since 0.3.0.0+integral+  :: (Fractional a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly v a+integral = Multi.integral 0+{-# INLINABLE integral #-}
src/Data/Poly/Sparse/Laurent.hs view
@@ -4,18 +4,14 @@ -- Licence:     BSD3 -- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com> ----- Sparse <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>.+-- Sparse+-- <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>. --+-- @since 0.4.0.0 +{-# LANGUAGE DataKinds                  #-} {-# LANGUAGE FlexibleContexts           #-}-{-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE PatternSynonyms            #-}-{-# LANGUAGE ScopedTypeVariables        #-}-{-# LANGUAGE StandaloneDeriving         #-}-{-# LANGUAGE TypeFamilies               #-}-{-# LANGUAGE UndecidableInstances       #-}-{-# LANGUAGE ViewPatterns               #-}  module Data.Poly.Sparse.Laurent   ( Laurent@@ -33,251 +29,109 @@   , deriv   ) where -import Prelude hiding (quotRem, quot, rem, gcd)-import Control.Arrow (first)-import Control.DeepSeq (NFData(..))-import Data.Euclidean (GcdDomain(..), Euclidean(..), Field)-import Data.List (intersperse)-import Data.Ord-import Data.Semiring (Semiring(..), Ring())-import qualified Data.Semiring as Semiring-import qualified Data.Vector as V+import Data.Euclidean (Field)+import Data.Semiring (Semiring(..), Ring) import qualified Data.Vector.Generic as G-import qualified Data.Vector.Unboxed as U-import GHC.Exts+import qualified Data.Vector.Unboxed.Sized as SU+import qualified Data.Vector.Sized as SV -import Data.Poly.Internal.Sparse (Poly(..))-import qualified Data.Poly.Internal.Sparse as Sparse-import Data.Poly.Internal.Sparse.Field ()-import Data.Poly.Internal.Sparse.GcdDomain ()+import Data.Poly.Internal.Multi.Laurent hiding (monomial, scale, pattern X, (^-), eval, subst, deriv)+import qualified Data.Poly.Internal.Multi.Laurent as Multi+import Data.Poly.Internal.Multi (Poly) --- | <https://en.wikipedia.org/wiki/Laurent_polynomial Laurent polynomials>--- of one variable with coefficients from @a@,--- backed by a 'G.Vector' @v@ (boxed, unboxed, storable, etc.).------ Use pattern 'X' and operator '^-' for construction:------ >>> (X + 1) + (X^-1 - 1) :: VLaurent Integer--- 1 * X + 1 * X^-1--- >>> (X + 1) * (1 - X^-1) :: ULaurent Int--- 1 * X + (-1) * X^-1------ Polynomials are stored normalized, without--- zero coefficients, so 0 * X + 1 + 0 * X^-1 equals to 1.------ 'Ord' instance does not make much sense mathematically,--- it is defined only for the sake of 'Data.Set.Set', 'Data.Map.Map', etc.+-- | Create a monomial from a power and a coefficient. ---data Laurent v a = Laurent !Int !(Poly v a)--deriving instance Eq  (v (Word, a)) => Eq  (Laurent v a)-deriving instance Ord (v (Word, a)) => Ord (Laurent v a)--instance (Eq a, Semiring a, G.Vector v (Word, a)) => IsList (Laurent v a) where-  type Item (Laurent v a) = (Int, a)--  fromList xs = toLaurent minPow (fromList ys)-    where-      minPow = minimum $ maxBound : map fst xs-      ys = map (first (fromIntegral . (subtract minPow))) xs--  fromListN n xs = toLaurent minPow (fromListN n ys)-    where-      minPow = minimum $ maxBound : map fst xs-      ys = map (first (fromIntegral . (subtract minPow))) xs--  toList (Laurent off poly) =-    map (first ((+ off) . fromIntegral)) $ G.toList $ unPoly poly+-- @since 0.4.0.0+monomial+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))+  => Int+  -> a+  -> Laurent v a+monomial = Multi.monomial . SU.singleton+{-# INLINABLE monomial #-} --- | Deconstruct a 'Laurent' polynomial into an offset (largest possible)--- and a regular polynomial.+-- | Multiply a polynomial by a monomial, expressed as a power and a coefficient. ----- >>> unLaurent (2 * X + 1 :: ULaurent Int)--- (0,2 * X + 1)--- >>> unLaurent (1 + 2 * X^-1 :: ULaurent Int)--- (-1,1 * X + 2)--- >>> unLaurent (2 * X^2 + X :: ULaurent Int)--- (1,2 * X + 1)--- >>> unLaurent (0 :: ULaurent Int)--- (0,0)-unLaurent :: Laurent v a -> (Int, Poly v a)-unLaurent (Laurent off poly) = (off, poly)---- | Construct 'Laurent' polynomial from an offset and a regular polynomial.--- One can imagine it as 'Data.Poly.Sparse.scale'', but allowing negative offsets.+-- >>> scale 2 3 (X^-2 + 1) :: ULaurent Int+-- 3 * X^2 + 3 ----- >>> toLaurent 2 (2 * Data.Poly.Sparse.X + 1) :: ULaurent Int--- 2 * X^3 + 1 * X^2--- >>> toLaurent (-2) (2 * Data.Poly.Sparse.X + 1) :: ULaurent Int--- 2 * X^-1 + 1 * X^-2-toLaurent-  :: (Eq a, Semiring a, G.Vector v (Word, a))+-- @since 0.4.0.0+scale+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))   => Int-  -> Poly v a+  -> a   -> Laurent v a-toLaurent off (Poly xs)-  | G.null xs = Laurent 0 zero-  | otherwise = Laurent (off + fromIntegral minPow) (Poly ys)-    where-      minPow = fst $ G.minimumBy (comparing fst) xs-      ys = if minPow == 0 then xs else G.map (first (subtract minPow)) xs-{-# INLINE toLaurent #-}--toLaurentNum-  :: (Eq a, Num a, G.Vector v (Word, a))-  => Int-  -> Poly v a   -> Laurent v a-toLaurentNum off (Poly xs)-  | G.null xs = Laurent 0 0-  | otherwise = Laurent (off + fromIntegral minPow) (Poly ys)-    where-      minPow = fst $ G.minimumBy (comparing fst) xs-      ys = if minPow == 0 then xs else G.map (first (subtract minPow)) xs-{-# INLINE toLaurentNum #-}--instance NFData (v (Word, a)) => NFData (Laurent v a) where-  rnf (Laurent off poly) = rnf off `seq` rnf poly--instance (Show a, G.Vector v (Word, a)) => Show (Laurent v a) where-  showsPrec d (Laurent off poly)-    | G.null (unPoly poly)-      = showString "0"-    | otherwise-      = showParen (d > 0)-      $ foldl (.) id-      $ intersperse (showString " + ")-      $ G.ifoldl (\acc i c -> showCoeff (i + off) c : acc) []-      $ unPoly poly-    where-      showCoeff 0 c = showsPrec 7 c-      showCoeff 1 c = showsPrec 7 c . showString " * X"-      showCoeff i c = showsPrec 7 c . showString (" * X^" ++ show i)---- | Laurent polynomials backed by boxed vectors.-type VLaurent = Laurent V.Vector---- | Laurent polynomials backed by unboxed vectors.-type ULaurent = Laurent U.Vector---- | Return a leading power and coefficient of a non-zero polynomial.------ >>> leading ((2 * X + 1) * (2 * X^2 - 1) :: ULaurent Int)--- Just (3,4)--- >>> leading (0 :: ULaurent Int)--- Nothing-leading :: G.Vector v (Word, a) => Laurent v a -> Maybe (Int, a)-leading (Laurent off poly) = first ((+ off) . fromIntegral) <$> Sparse.leading poly---- | Note that 'abs' = 'id' and 'signum' = 'const' 1.-instance (Eq a, Num a, G.Vector v (Word, a)) => Num (Laurent v a) where-  Laurent off1 poly1 * Laurent off2 poly2 = toLaurentNum (off1 + off2) (poly1 * poly2)-  Laurent off1 poly1 + Laurent off2 poly2 = case off1 `compare` off2 of-    LT -> toLaurentNum off1 (poly1 + Sparse.scale (fromIntegral $ off2 - off1) 1 poly2)-    EQ -> toLaurentNum off1 (poly1 + poly2)-    GT -> toLaurentNum off2 (Sparse.scale (fromIntegral $ off1 - off2) 1 poly1 + poly2)-  Laurent off1 poly1 - Laurent off2 poly2 = case off1 `compare` off2 of-    LT -> toLaurentNum off1 (poly1 - Sparse.scale (fromIntegral $ off2 - off1) 1 poly2)-    EQ -> toLaurentNum off1 (poly1 - poly2)-    GT -> toLaurentNum off2 (Sparse.scale (fromIntegral $ off1 - off2) 1 poly1 - poly2)-  negate (Laurent off poly) = Laurent off (negate poly)-  abs = id-  signum = const 1-  fromInteger n = Laurent 0 (fromInteger n)-  {-# INLINE (+) #-}-  {-# INLINE (-) #-}-  {-# INLINE negate #-}-  {-# INLINE fromInteger #-}-  {-# INLINE (*) #-}--instance (Eq a, Semiring a, G.Vector v (Word, a)) => Semiring (Laurent v a) where-  zero = Laurent 0 zero-  one  = Laurent 0 one-  Laurent off1 poly1 `times` Laurent off2 poly2 =-    toLaurent (off1 + off2) (poly1 `times` poly2)-  Laurent off1 poly1 `plus` Laurent off2 poly2 = case off1 `compare` off2 of-    LT -> toLaurent off1 (poly1 `plus` Sparse.scale' (fromIntegral $ off2 - off1) one poly2)-    EQ -> toLaurent off1 (poly1 `plus` poly2)-    GT -> toLaurent off2 (Sparse.scale' (fromIntegral $ off1 - off2) one poly1 `plus` poly2)-  fromNatural n = Laurent 0 (fromNatural n)-  {-# INLINE zero #-}-  {-# INLINE one #-}-  {-# INLINE plus #-}-  {-# INLINE times #-}-  {-# INLINE fromNatural #-}--instance (Eq a, Ring a, G.Vector v (Word, a)) => Ring (Laurent v a) where-  negate (Laurent off poly) = Laurent off (Semiring.negate poly)---- | Create a monomial from a power and a coefficient.-monomial :: (Eq a, Semiring a, G.Vector v (Word, a)) => Int -> a -> Laurent v a-monomial p c-  | c == zero = Laurent 0 zero-  | otherwise = Laurent p (Sparse.monomial' 0 c)-{-# INLINE monomial #-}+scale = Multi.scale . SU.singleton+{-# INLINABLE scale #-} --- | Multiply a polynomial by a monomial, expressed as a power and a coefficient.+-- | The polynomial 'X'. ----- >>> scale 2 3 (X^2 + 1) :: ULaurent Int--- 3 * X^4 + 3 * X^2-scale :: (Eq a, Semiring a, G.Vector v (Word, a)) => Int -> a -> Laurent v a -> Laurent v a-scale yp yc (Laurent off poly) = toLaurent (off + yp) (Sparse.scale' 0 yc poly)---- | Evaluate at a given point.+-- > X == monomial 1 one ----- >>> eval (X^2 + 1 :: ULaurent Int) 3--- 10-eval :: (Field a, G.Vector v (Word, a)) => Laurent v a -> a -> a-eval (Laurent off poly) x = Sparse.eval' poly x `times`-  (if off >= 0 then x Semiring.^ off else quot one x Semiring.^ (- off))-{-# INLINE eval #-}+-- @since 0.4.0.0+pattern X+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))+  => Laurent v a+pattern X = Multi.X --- | Substitute another polynomial instead of 'Data.Poly.Sparse.X'.+-- | Used to construct monomials with negative powers. ----- >>> subst (X^2 + 1 :: UPoly Int) (X + 1 :: ULaurent Int)--- 1 * X^2 + 2 * X + 2-subst :: (Eq a, Semiring a, G.Vector v (Word, a), G.Vector w (Word, a)) => Poly v a -> Laurent w a -> Laurent w a-subst = Sparse.substitute' (scale 0)-{-# INLINE subst #-}---- | Take a derivative.+-- This operator can be applied only to monomials with unit coefficients,+-- but is instrumental to express Laurent polynomials+-- in a mathematical fashion: ----- >>> deriv (X^3 + 3 * X) :: ULaurent Int--- 3 * X^2 + 3-deriv :: (Eq a, Ring a, G.Vector v (Word, a)) => Laurent v a -> Laurent v a-deriv (Laurent off (Poly xs)) =-  toLaurent (off - 1) $ Sparse.toPoly' $ G.map (\(i, x) -> (i, x `times` Semiring.fromIntegral (fromIntegral i + off))) xs-{-# INLINE deriv #-}---- | Create an identity polynomial.-pattern X :: (Eq a, Semiring a, G.Vector v (Word, a), Eq (v (Word, a))) => Laurent v a-pattern X <- ((==) var -> True)-  where X = var--var :: forall a v. (Eq a, Semiring a, G.Vector v (Word, a), Eq (v (Word, a))) => Laurent v a-var-  | (one :: a) == zero = Laurent 0 zero-  | otherwise          = Laurent 1 one-{-# INLINE var #-}---- | This operator can be applied only to 'X',--- but is instrumental to express Laurent polynomials in mathematical fashion:+-- >>> X^-3 :: ULaurent Int+-- 1 * X^-3+-- >>> X + 2 + 3 * (X^2)^-1 :: ULaurent Int+-- 1 * X + 2 + 3 * X^-2 ----- >>> X + 2 + 3 * X^-1 :: ULaurent Int--- 1 * X + 2 + 3 * X^(-1)+-- @since 0.4.0.0 (^-)-  :: (Eq a, Semiring a, G.Vector v (Word, a), Eq (v (Word, a)))+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))   => Laurent v a   -> Int   -> Laurent v a-X^-n = monomial (negate n) one-_^-_ = error "(^-) can be applied only to X"+(^-) = (Multi.^-) -instance (Eq a, Ring a, GcdDomain a, Eq (v (Word, a)), G.Vector v (Word, a)) => GcdDomain (Laurent v a) where-  divide (Laurent off1 poly1) (Laurent off2 poly2) =-    toLaurent (off1 - off2) <$> divide poly1 poly2-  {-# INLINE divide #-}+-- | Evaluate the polynomial at a given point.+--+-- >>> eval (X^-2 + 1 :: ULaurent Double) 2+-- 1.25+--+-- @since 0.4.0.0+eval+  :: (Field a, G.Vector v (SU.Vector 1 Word, a))+  => Laurent v a+  -> a+  -> a+eval p = Multi.eval p . SV.singleton+{-# INLINABLE eval #-} -  gcd (Laurent _ poly1) (Laurent _ poly2) =-    toLaurent 0 (gcd poly1 poly2)-  {-# INLINE gcd #-}+-- | Substitute another polynomial instead of 'X'.+--+-- >>> import Data.Poly.Sparse (UPoly)+-- >>> subst (Data.Poly.Sparse.X^2 + 1 :: UPoly Int) (X^-1 + 1 :: ULaurent Int)+-- 2 + 2 * X^-1 + 1 * X^-2+--+-- @since 0.4.0.0+subst+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a), G.Vector w (SU.Vector 1 Word, a))+  => Poly v a+  -> Laurent w a+  -> Laurent w a+subst p = Multi.subst p . SV.singleton+{-# INLINABLE subst #-}++-- | Take the derivative of the polynomial.+--+-- >>> deriv (X^-3 + 3 * X) :: ULaurent Int+-- 3 + (-3) * X^-4+--+-- @since 0.4.0.0+deriv+  :: (Eq a, Ring a, G.Vector v (SU.Vector 1 Word, a))+  => Laurent v a+  -> Laurent v a+deriv = Multi.deriv 0+{-# INLINABLE deriv #-}
src/Data/Poly/Sparse/Semiring.hs view
@@ -4,9 +4,12 @@ -- Licence:     BSD3 -- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com> ----- Sparse polynomials with 'Semiring' instance.+-- Sparse polynomials with a 'Semiring' instance. --+-- @since 0.3.0.0+-- +{-# LANGUAGE DataKinds        #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE PatternSynonyms  #-} @@ -15,8 +18,8 @@   , VPoly   , UPoly   , unPoly-  , leading   , toPoly+  , leading   , monomial   , scale   , pattern X@@ -24,68 +27,155 @@   , subst   , deriv   , integral+  , denseToSparse+  , sparseToDense   ) where +import Control.Arrow import Data.Euclidean (Field)-import Data.Semiring (Semiring)+import Data.Semiring (Semiring(..)) import qualified Data.Vector.Generic as G+import qualified Data.Vector.Unboxed.Sized as SU+import qualified Data.Vector.Sized as SV -import Data.Poly.Internal.Sparse (Poly(..), VPoly, UPoly, leading)-import qualified Data.Poly.Internal.Sparse as Sparse-import Data.Poly.Internal.Sparse.Field ()-import Data.Poly.Internal.Sparse.GcdDomain ()+import qualified Data.Poly.Internal.Convert as Convert+import qualified Data.Poly.Internal.Dense as Dense+import Data.Poly.Internal.Multi (Poly, VPoly, UPoly, unPoly, leading)+import qualified Data.Poly.Internal.Multi as Multi+import Data.Poly.Internal.Multi.Field ()+import Data.Poly.Internal.Multi.GcdDomain () --- | Make 'Poly' from a list of (power, coefficient) pairs.--- (first element corresponds to a constant term).+-- | Make a 'Poly' from a list of (power, coefficient) pairs. -- -- >>> :set -XOverloadedLists -- >>> toPoly [(0,1),(1,2),(2,3)] :: VPoly Integer -- 3 * X^2 + 2 * X + 1--- >>> S.toPoly [(0,0),(1,0),(2,0)] :: UPoly Int+-- >>> toPoly [(0,0),(1,0),(2,0)] :: UPoly Int -- 0-toPoly :: (Eq a, Semiring a, G.Vector v (Word, a)) => v (Word, a) -> Poly v a-toPoly = Sparse.toPoly'+--+-- @since 0.3.0.0+toPoly+  :: (Eq a, Semiring a, G.Vector v (Word, a), G.Vector v (SU.Vector 1 Word, a))+  => v (Word, a)+  -> Poly v a+toPoly = Multi.toMultiPoly' . G.map (first SU.singleton)+{-# INLINABLE toPoly #-}  -- | Create a monomial from a power and a coefficient.-monomial :: (Eq a, Semiring a, G.Vector v (Word, a)) => Word -> a -> Poly v a-monomial = Sparse.monomial'+--+-- @since 0.3.0.0+monomial+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))+  => Word+  -> a+  -> Poly v a+monomial = Multi.monomial' . SU.singleton+{-# INLINABLE monomial #-}  -- | Multiply a polynomial by a monomial, expressed as a power and a coefficient. -- -- >>> scale 2 3 (X^2 + 1) :: UPoly Int -- 3 * X^4 + 3 * X^2-scale :: (Eq a, Semiring a, G.Vector v (Word, a)) => Word -> a -> Poly v a -> Poly v a-scale = Sparse.scale'+--+-- @since 0.3.0.0+scale+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))+  => Word+  -> a+  -> Poly v a+  -> Poly v a+scale = Multi.scale' . SU.singleton+{-# INLINABLE scale #-} --- | Create an identity polynomial.-pattern X :: (Eq a, Semiring a, G.Vector v (Word, a), Eq (v (Word, a))) => Poly v a-pattern X = Sparse.X'+-- | The polynomial 'X'.+--+-- > X == monomial 1 one+--+-- @since 0.3.0.0+pattern X+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+pattern X = Multi.X' --- | Evaluate at a given point.+-- | Evaluate the polynomial at a given point. -- -- >>> eval (X^2 + 1 :: UPoly Int) 3 -- 10-eval :: (Semiring a, G.Vector v (Word, a)) => Poly v a -> a -> a-eval = Sparse.eval'+--+-- @since 0.3.0.0+eval+  :: (Semiring a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> a+  -> a+eval p = Multi.eval' p . SV.singleton+{-# INLINABLE eval #-}  -- | Substitute another polynomial instead of 'X'. -- -- >>> subst (X^2 + 1 :: UPoly Int) (X + 1 :: UPoly Int) -- 1 * X^2 + 2 * X + 2-subst :: (Eq a, Semiring a, G.Vector v (Word, a), G.Vector w (Word, a)) => Poly v a -> Poly w a -> Poly w a-subst = Sparse.subst'+--+-- @since 0.3.3.0+subst+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a), G.Vector w (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly w a+  -> Poly w a+subst p = Multi.subst' p . SV.singleton+{-# INLINABLE subst #-} --- | Take a derivative.+-- | Take the derivative of the polynomial. -- -- >>> deriv (X^3 + 3 * X) :: UPoly Int -- 3 * X^2 + 3-deriv :: (Eq a, Semiring a, G.Vector v (Word, a)) => Poly v a -> Poly v a-deriv = Sparse.deriv'+--+-- @since 0.3.0.0+deriv+  :: (Eq a, Semiring a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly v a+deriv = Multi.deriv' 0+{-# INLINABLE deriv #-} --- | Compute an indefinite integral of a polynomial,--- setting constant term to zero.+-- | Compute an indefinite integral of the polynomial,+-- setting the constant term to zero. -- -- >>> integral (3 * X^2 + 3) :: UPoly Double -- 1.0 * X^3 + 3.0 * X-integral :: (Eq a, Field a, G.Vector v (Word, a)) => Poly v a -> Poly v a-integral = Sparse.integral'+--+-- @since 0.3.2.0+integral+  :: (Field a, G.Vector v (SU.Vector 1 Word, a))+  => Poly v a+  -> Poly v a+integral = Multi.integral' 0+{-# INLINABLE integral #-}++-- | Convert from dense to sparse polynomials.+--+-- >>> :set -XFlexibleContexts+-- >>> denseToSparse (1 `Data.Semiring.plus` Data.Poly.X^2) :: Data.Poly.Sparse.UPoly Int+-- 1 * X^2 + 1+--+-- @since 0.5.0.0+denseToSparse+  :: (Eq a, Semiring a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => Dense.Poly v a+  -> Multi.Poly v a+denseToSparse = Convert.denseToSparse'+{-# INLINABLE denseToSparse #-}++-- | Convert from sparse to dense polynomials.+--+-- >>> :set -XFlexibleContexts+-- >>> sparseToDense (1 `Data.Semiring.plus` Data.Poly.Sparse.X^2) :: Data.Poly.UPoly Int+-- 1 * X^2 + 0 * X + 1+--+-- @since 0.5.0.0+sparseToDense+  :: (Semiring a, G.Vector v a, G.Vector v (SU.Vector 1 Word, a))+  => Multi.Poly v a+  -> Dense.Poly v a+sparseToDense = Convert.sparseToDense'+{-# INLINABLE sparseToDense #-}
+ test/DFT.hs view
@@ -0,0 +1,69 @@+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE TypeOperators              #-}++module DFT+  ( testSuite+  ) where++import Data.Complex+import Data.Mod.Word+import Data.Poly.Semiring (UPoly, unPoly, toPoly, dft, inverseDft, dftMult)+import qualified Data.Vector.Unboxed as U+import GHC.TypeNats (KnownNat, natVal, type (+), type (^))+import Test.Tasty+import Test.Tasty.QuickCheck hiding (scale, numTests)++import Dense ()++testSuite :: TestTree+testSuite = testGroup "DFT"+  [ testGroup "dft matches reference"+    [ dftMatchesRef (0 :: Mod (2 ^ 0 + 1))+    , dftMatchesRef (2 :: Mod (2 ^ 1 + 1))+    , dftMatchesRef (2 :: Mod (2 ^ 2 + 1))+    , dftMatchesRef (3 :: Mod (2 ^ 4 + 1))+    , dftMatchesRef (3 :: Mod (2 ^ 8 + 1))+    ]+  , testGroup "dft is invertible"+    [ dftIsInvertible (0 :: Mod (2 ^ 0 + 1))+    , dftIsInvertible (2 :: Mod (2 ^ 1 + 1))+    , dftIsInvertible (2 :: Mod (2 ^ 2 + 1))+    , dftIsInvertible (3 :: Mod (2 ^ 4 + 1))+    , dftIsInvertible (3 :: Mod (2 ^ 8 + 1))+    ]+  , testProperty "dftMult matches reference" dftMultMatchesRef+  ]++dftMatchesRef :: KnownNat n1 => Mod n1 -> TestTree+dftMatchesRef primRoot = testProperty (show n) $ do+  xs <- U.replicateM n arbitrary+  pure $ dft primRoot xs === dftRef primRoot xs+  where+    n = fromIntegral (natVal primRoot - 1)++dftRef :: (Num a, U.Unbox a) => a -> U.Vector a -> U.Vector a+dftRef primRoot xs = U.generate (U.length xs) $+  \k -> sum (map (\j -> xs U.! j * primRoot ^ (j * k)) [0..n-1])+  where+    n = U.length xs++dftIsInvertible :: KnownNat n1 => Mod n1 -> TestTree+dftIsInvertible primRoot = testProperty (show n) $ do+  xs <- U.replicateM n arbitrary+  let ys = dft primRoot xs+      zs = inverseDft primRoot ys+  pure $ xs === zs+  where+    n = fromIntegral (natVal primRoot - 1)++dftMultMatchesRef :: UPoly Int -> UPoly Int -> Property+dftMultMatchesRef xs ys = zs === dftZs+  where+    xs', ys', dftZs' :: UPoly (Complex Double)+    xs' = toPoly $ U.map fromIntegral $ unPoly xs+    ys' = toPoly $ U.map fromIntegral $ unPoly ys+    dftZs' = dftMult (\k -> cis (2 * pi / fromIntegral k)) xs' ys'++    zs, dftZs :: UPoly (Complex Int)+    zs  = toPoly $ U.map (:+ 0) $ unPoly $ xs * ys+    dftZs  = toPoly $ U.map (\(x :+ y) -> round x :+ round y) $ unPoly dftZs'
test/Dense.hs view
@@ -1,24 +1,23 @@+{-# LANGUAGE CPP                        #-} {-# LANGUAGE DataKinds                  #-} {-# LANGUAGE FlexibleContexts           #-} {-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE ScopedTypeVariables        #-} -{-# OPTIONS_GHC -fno-warn-orphans #-}- module Dense   ( testSuite   , ShortPoly(..)   ) where -import Prelude hiding (gcd, quotRem, rem)+import Prelude hiding (gcd, quotRem, quot, rem)+import Control.Exception import Data.Euclidean (Euclidean(..), GcdDomain(..)) import Data.Int-import Data.Mod+import Data.Mod.Word import Data.Poly import qualified Data.Poly.Semiring as S import Data.Proxy-import Data.Semiring (Semiring)+import Data.Semiring (Semiring(..)) import qualified Data.Vector as V import qualified Data.Vector.Generic as G import qualified Data.Vector.Unboxed as U@@ -28,84 +27,88 @@ import Quaternion import TestUtils -instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (Poly v a) where-  arbitrary = S.toPoly . G.fromList <$> arbitrary-  shrink = fmap (S.toPoly . G.fromList) . shrink . G.toList . unPoly--instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (PolyOverField (Poly v a)) where-  arbitrary = PolyOverField . S.toPoly . G.fromList . (\xs -> take (length xs `mod` 10) xs) <$> arbitrary-  shrink = fmap (PolyOverField . S.toPoly . G.fromList) . shrink . G.toList . unPoly . unPolyOverField--newtype ShortPoly a = ShortPoly { unShortPoly :: a }-  deriving (Eq, Show, Semiring, GcdDomain, Euclidean)--instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (ShortPoly (Poly v a)) where-  arbitrary = ShortPoly . S.toPoly . G.fromList . (\xs -> take (length xs `mod` 10) xs) <$> arbitrary-  shrink = fmap (ShortPoly . S.toPoly . G.fromList) . shrink . G.toList . unPoly . unShortPoly- testSuite :: TestTree testSuite = testGroup "Dense"-    [ arithmeticTests-    , otherTests-    , lawsTests-    , evalTests-    , derivTests-    ]+  [ arithmeticTests+  , otherTests+  , divideByZeroTests+  , lawsTests+  , evalTests+  , derivTests+  , patternTests+  , conversionTests+  ]  lawsTests :: TestTree lawsTests = testGroup "Laws"   $ semiringTests ++ ringTests ++ numTests ++ euclideanTests ++ gcdDomainTests ++ isListTests ++ showTests  semiringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes semiringTests =-  [ mySemiringLaws (Proxy :: Proxy (Poly U.Vector ()))-  , mySemiringLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , mySemiringLaws (Proxy :: Proxy (Poly V.Vector Integer))-  , mySemiringLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  [ mySemiringLaws (Proxy :: Proxy (UPoly ()))+  , mySemiringLaws (Proxy :: Proxy (UPoly Int8))+  , mySemiringLaws (Proxy :: Proxy (VPoly Integer))+  , mySemiringLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]+#else+semiringTests = []+#endif  ringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes ringTests =-  [ myRingLaws (Proxy :: Proxy (Poly U.Vector ()))-  , myRingLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myRingLaws (Proxy :: Proxy (Poly V.Vector Integer))-  , myRingLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  [ myRingLaws (Proxy :: Proxy (UPoly ()))+  , myRingLaws (Proxy :: Proxy (UPoly Int8))+  , myRingLaws (Proxy :: Proxy (VPoly Integer))+  , myRingLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]+#else+ringTests = []+#endif  numTests :: [TestTree] numTests =-  [ myNumLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myNumLaws (Proxy :: Proxy (Poly V.Vector Integer))-  , myNumLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  [ myNumLaws (Proxy :: Proxy (UPoly Int8))+  , myNumLaws (Proxy :: Proxy (VPoly Integer))+  , myNumLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]  gcdDomainTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes gcdDomainTests =-  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector Integer)))-  , myGcdDomainLaws (Proxy :: Proxy (PolyOverField (Poly V.Vector (Mod 3))))-  , myGcdDomainLaws (Proxy :: Proxy (PolyOverField (Poly V.Vector Rational)))+  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VPoly Integer)))+  , myGcdDomainLaws (Proxy :: Proxy (ShortPoly (UPoly (Mod 3))))+  , myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VPoly Rational)))   ]+#else+gcdDomainTests = []+#endif  euclideanTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes euclideanTests =-  [ myEuclideanLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector (Mod 3))))-  , myEuclideanLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector Rational)))+  [ myEuclideanLaws (Proxy :: Proxy (ShortPoly (UPoly (Mod 3))))+  , myEuclideanLaws (Proxy :: Proxy (ShortPoly (VPoly Rational)))   ]+#else+euclideanTests = []+#endif  isListTests :: [TestTree] isListTests =-  [ myIsListLaws (Proxy :: Proxy (Poly U.Vector ()))-  , myIsListLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myIsListLaws (Proxy :: Proxy (Poly V.Vector Integer))-  , myIsListLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  [ myIsListLaws (Proxy :: Proxy (UPoly ()))+  , myIsListLaws (Proxy :: Proxy (UPoly Int8))+  , myIsListLaws (Proxy :: Proxy (VPoly Integer))+  , myIsListLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]  showTests :: [TestTree] showTests =-  [ myShowLaws (Proxy :: Proxy (Poly U.Vector ()))-  , myShowLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myShowLaws (Proxy :: Proxy (Poly V.Vector Integer))-  , myShowLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  [ myShowLaws (Proxy :: Proxy (UPoly ()))+  , myShowLaws (Proxy :: Proxy (UPoly Int8))+  , myShowLaws (Proxy :: Proxy (VPoly Integer))+  , myShowLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]  arithmeticTests :: TestTree@@ -119,6 +122,9 @@   , testProperty "multiplication matches reference" $     \(xs :: [Int]) ys -> toPoly (V.fromList (mulRef xs ys)) ===       toPoly (V.fromList xs) * toPoly (V.fromList ys)+  , tenTimesLess $+    testProperty "quotRemFractional matches quotRem" $+    \(xs :: VPoly Rational) ys -> ys /= 0 ==> quotRemFractional xs ys === quotRem xs ys   ]  addRef :: Num a => [a] -> [a] -> [a]@@ -158,16 +164,30 @@   , tenTimesLess $     testProperty "scale matches multiplication by monomial" $     \p c (xs :: UPoly a) -> scale p c xs === monomial p c * xs+  , tenTimesLess $+    testProperty "scale' matches multiplication by monomial'" $+    \p c (xs :: UPoly a) -> S.scale p c xs === S.monomial p c * xs   ]  monomialRef :: Num a => Word -> a -> [a] monomialRef p c = replicate (fromIntegral p) 0 ++ [c] +divideByZeroTests :: TestTree+divideByZeroTests = testGroup "divideByZero"+  [ testProperty "quotRem" $ testProp ((uncurry (+) .) . quotRem)+  , testProperty "quot"    $ testProp quot+  , testProperty "rem"     $ testProp rem+  , testProperty "divide"  $ testProp divide+  , testProperty "degree"  $ once $ degree (0 :: VPoly Rational) === 0+  ]+  where+    testProp f xs = ioProperty ((== Left DivideByZero) <$> try (evaluate (xs `f` (0 :: VPoly Rational))))+ evalTests :: TestTree evalTests = testGroup "eval" $ concat-  [ evalTestGroup  (Proxy :: Proxy (Poly U.Vector Int8))-  , evalTestGroup  (Proxy :: Proxy (Poly V.Vector Integer))-  , substTestGroup (Proxy :: Proxy (Poly U.Vector Int8))+  [ evalTestGroup  (Proxy :: Proxy (UPoly Int8))+  , evalTestGroup  (Proxy :: Proxy (VPoly Integer))+  , substTestGroup (Proxy :: Proxy (UPoly Int8))   ]  evalTestGroup@@ -177,18 +197,18 @@   -> [TestTree] evalTestGroup _ =   [ testProperty "eval (p + q) r = eval p r + eval q r" $-    \p q r -> e (p + q) r === e p r + e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p + q) r === e p r + e q r   , testProperty "eval (p * q) r = eval p r * eval q r" $-    \p q r -> e (p * q) r === e p r * e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p * q) r === e p r * e q r   , testProperty "eval x p = p" $     \p -> e X p === p   , testProperty "eval (monomial 0 c) p = c" $     \c p -> e (monomial 0 c) p === c    , testProperty "eval' (p + q) r = eval' p r + eval' q r" $-    \p q r -> e' (p + q) r === e' p r + e' q r+    \(ShortPoly p) (ShortPoly q) r -> e' (p + q) r === e' p r + e' q r   , testProperty "eval' (p * q) r = eval' p r * eval' q r" $-    \p q r -> e' (p * q) r === e' p r * e' q r+    \(ShortPoly p) (ShortPoly q) r -> e' (p * q) r === e' p r * e' q r   , testProperty "eval' x p = p" $     \p -> e' S.X p === p   , testProperty "eval' (S.monomial 0 c) p = c" $@@ -209,14 +229,14 @@ substTestGroup _ =   [ tenTimesLess $ tenTimesLess $ tenTimesLess $     testProperty "subst (p + q) r = subst p r + subst q r" $-    \p q r -> e (p + q) r === e p r + e q r+    \p q (ShortPoly r) -> e (p + q) r === e p r + e q r   , testProperty "subst x p = p" $     \p -> e X p === p   , testProperty "subst (monomial 0 c) p = monomial 0 c" $     \c p -> e (monomial 0 c) p === monomial 0 c   , tenTimesLess $ tenTimesLess $ tenTimesLess $     testProperty "subst' (p + q) r = subst' p r + subst' q r" $-    \p q r -> e' (p + q) r === e' p r + e' q r+    \p q (ShortPoly r) -> e' (p + q) r === e' p r + e' q r   , testProperty "subst' x p = p" $     \p -> e' S.X p === p   , testProperty "subst' (S.monomial 0 c) p = S.monomial 0 c" $@@ -231,21 +251,51 @@ derivTests :: TestTree derivTests = testGroup "deriv"   [ testProperty "deriv = S.deriv" $-    \(p :: Poly V.Vector Integer) -> deriv p === S.deriv p+    \(p :: VPoly Integer) -> deriv p === S.deriv p   , testProperty "integral = S.integral" $-    \(p :: Poly V.Vector Rational) -> integral p === S.integral p+    \(p :: VPoly Rational) -> integral p === S.integral p   , testProperty "deriv . integral = id" $-    \(p :: Poly V.Vector Rational) -> deriv (integral p) === p+    \(p :: VPoly Rational) -> deriv (integral p) === p   , testProperty "deriv c = 0" $-    \c -> deriv (monomial 0 c :: Poly V.Vector Int) === 0+    \c -> deriv (monomial 0 c :: UPoly Int) === 0   , testProperty "deriv cX = c" $-    \c -> deriv (monomial 0 c * X :: Poly V.Vector Int) === monomial 0 c+    \c -> deriv (monomial 0 c * X :: UPoly Int) === monomial 0 c   , testProperty "deriv (p + q) = deriv p + deriv q" $-    \p q -> deriv (p + q) === (deriv p + deriv q :: Poly V.Vector Int)+    \p q -> deriv (p + q) === (deriv p + deriv q :: UPoly Int)   , testProperty "deriv (p * q) = p * deriv q + q * deriv p" $-    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: Poly V.Vector Int)+    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: UPoly Int)   , tenTimesLess $ tenTimesLess $ tenTimesLess $     testProperty "deriv (subst p q) = deriv q * subst (deriv p) q" $-    \(p :: Poly V.Vector Int) (q :: Poly U.Vector Int) ->+    \(ShortPoly (p :: UPoly Int)) (ShortPoly (q :: UPoly Int)) ->       deriv (subst p q) === deriv q * subst (deriv p) q+  ]++patternTests :: TestTree+patternTests = testGroup "pattern"+  [ testProperty "X  :: UPoly Int" $ once $+    case (monomial 1 1 :: UPoly Int) of X -> True; _ -> False+  , testProperty "X  :: UPoly Int" $ once $+    (X :: UPoly Int) === monomial 1 1+  , testProperty "X' :: UPoly Int" $ once $+    case (S.monomial 1 1 :: UPoly Int) of S.X -> True; _ -> False+  , testProperty "X' :: UPoly Int" $ once $+    (S.X :: UPoly Int) === S.monomial 1 1+  , testProperty "X' :: UPoly ()" $ once $+    case (zero :: UPoly ()) of S.X -> True; _ -> False+  , testProperty "X' :: UPoly ()" $ once $+    (S.X :: UPoly ()) === zero+  ]++conversionTests :: TestTree+conversionTests = testGroup "conversions"+  [ testProperty "toPoly . unPoly = id" $+    \(xs :: UPoly Int8) -> xs === toPoly (unPoly xs)+  , testProperty "S.toPoly . S.unPoly = id" $+    \(xs :: UPoly Int8) -> xs === S.toPoly (S.unPoly xs)+#ifdef SupportSparse+  , testProperty "sparseToDense . denseToSparse = id" $+    \(xs :: UPoly Int8) -> xs === sparseToDense (denseToSparse xs)+  , testProperty "sparseToDense' . denseToSparse' = id" $+    \(xs :: UPoly Int8) -> xs === S.sparseToDense (S.denseToSparse xs)+#endif   ]
test/DenseLaurent.hs view
@@ -1,52 +1,36 @@+{-# LANGUAGE CPP                        #-} {-# LANGUAGE FlexibleContexts           #-} {-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE ScopedTypeVariables        #-} -{-# OPTIONS_GHC -fno-warn-orphans #-}- module DenseLaurent   ( testSuite   ) where -import Prelude hiding (gcd, quotRem, rem)-import Data.Euclidean (Euclidean(..), GcdDomain, Field)+import Prelude hiding (gcd, quotRem, quot, rem)+import Control.Exception+import Data.Euclidean (GcdDomain(..), Field) import Data.Int import qualified Data.Poly import Data.Poly.Laurent import Data.Proxy import Data.Semiring (Semiring(..))-import qualified Data.Vector as V import qualified Data.Vector.Generic as G import qualified Data.Vector.Unboxed as U import Test.Tasty import Test.Tasty.QuickCheck hiding (scale, numTests) -import Dense (ShortPoly(..)) import Quaternion import TestUtils -instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (Laurent v a) where-  arbitrary = toLaurent <$> ((`rem` 10) <$> arbitrary) <*> arbitrary-  shrink = fmap (uncurry toLaurent) . shrink . unLaurent--instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (LaurentOverField (Laurent v a)) where-  arbitrary = (LaurentOverField .) . toLaurent <$> ((`rem` 10) <$> arbitrary) <*> (Data.Poly.unPolyOverField <$> arbitrary)-  shrink = fmap (LaurentOverField . uncurry toLaurent . fmap Data.Poly.unPolyOverField) . shrink . fmap Data.Poly.PolyOverField . unLaurent . unLaurentOverField--newtype ShortLaurent a = ShortLaurent { unShortLaurent :: a }-  deriving (Eq, Show, Semiring, GcdDomain)--instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (ShortLaurent (Laurent v a)) where-  arbitrary = (ShortLaurent .) . toLaurent <$> ((`rem` 10) <$> arbitrary) <*> (unShortPoly <$> arbitrary)-  shrink = fmap (ShortLaurent . uncurry toLaurent . fmap unShortPoly) . shrink . fmap ShortPoly . unLaurent . unShortLaurent- testSuite :: TestTree testSuite = testGroup "DenseLaurent"   [ otherTests+  , divideByZeroTests   , lawsTests   , evalTests   , derivTests+  , patternTests   ]  lawsTests :: TestTree@@ -54,40 +38,52 @@   $ semiringTests ++ ringTests ++ numTests ++ gcdDomainTests ++ showTests  semiringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes semiringTests =-  [ mySemiringLaws (Proxy :: Proxy (Laurent U.Vector ()))-  , mySemiringLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , mySemiringLaws (Proxy :: Proxy (Laurent V.Vector Integer))-  , mySemiringLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  [ mySemiringLaws (Proxy :: Proxy (ULaurent ()))+  , mySemiringLaws (Proxy :: Proxy (ULaurent Int8))+  , mySemiringLaws (Proxy :: Proxy (VLaurent Integer))+  , mySemiringLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]+#else+semiringTests = []+#endif  ringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes ringTests =-  [ myRingLaws (Proxy :: Proxy (Laurent U.Vector ()))-  , myRingLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , myRingLaws (Proxy :: Proxy (Laurent V.Vector Integer))-  , myRingLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  [ myRingLaws (Proxy :: Proxy (ULaurent ()))+  , myRingLaws (Proxy :: Proxy (ULaurent Int8))+  , myRingLaws (Proxy :: Proxy (VLaurent Integer))+  , myRingLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]+#else+ringTests = []+#endif  numTests :: [TestTree] numTests =-  [ myNumLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , myNumLaws (Proxy :: Proxy (Laurent V.Vector Integer))-  , myNumLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  [ myNumLaws (Proxy :: Proxy (ULaurent Int8))+  , myNumLaws (Proxy :: Proxy (VLaurent Integer))+  , myNumLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]  gcdDomainTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes gcdDomainTests =-  [ myGcdDomainLaws (Proxy :: Proxy (ShortLaurent (Laurent V.Vector Integer)))-  , myGcdDomainLaws (Proxy :: Proxy (LaurentOverField (Laurent V.Vector Rational)))+  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VLaurent Integer)))+  , myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VLaurent Rational)))   ]+#else+gcdDomainTests = []+#endif  showTests :: [TestTree] showTests =-  [ myShowLaws (Proxy :: Proxy (Laurent U.Vector ()))-  , myShowLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , myShowLaws (Proxy :: Proxy (Laurent V.Vector Integer))-  , myShowLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  [ myShowLaws (Proxy :: Proxy (ULaurent ()))+  , myShowLaws (Proxy :: Proxy (ULaurent Int8))+  , myShowLaws (Proxy :: Proxy (VLaurent Integer))+  , myShowLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]  otherTests :: TestTree@@ -109,12 +105,22 @@   , tenTimesLess $     testProperty "scale matches multiplication by monomial" $     \p c (xs :: ULaurent a) -> scale p c xs === monomial p c * xs+  , tenTimesLess $+    testProperty "toLaurent . unLaurent" $+    \(xs :: ULaurent a) -> uncurry toLaurent (unLaurent xs) === xs   ] +divideByZeroTests :: TestTree+divideByZeroTests = testGroup "divideByZero"+  [ testProperty "divide"  $ testProp divide+  ]+  where+    testProp f xs = ioProperty ((== Left DivideByZero) <$> try (evaluate (xs `f` (0 :: VLaurent Rational))))+ evalTests :: TestTree evalTests = testGroup "eval" $ concat-  [ evalTestGroup  (Proxy :: Proxy (Laurent V.Vector Rational))-  , substTestGroup (Proxy :: Proxy (Laurent U.Vector Int8))+  [ evalTestGroup  (Proxy :: Proxy (VLaurent Rational))+  , substTestGroup (Proxy :: Proxy (ULaurent Int8))   ]  evalTestGroup@@ -124,9 +130,9 @@   -> [TestTree] evalTestGroup _ =   [ testProperty "eval (p + q) r = eval p r + eval q r" $-    \p q r -> e (p `plus` q) r === e p r `plus` e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p `plus` q) r === e p r `plus` e q r   , testProperty "eval (p * q) r = eval p r * eval q r" $-    \p q r -> e (p `times` q) r === e p r `times` e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p `times` q) r === e p r `times` e q r   , testProperty "eval x p = p" $     \p -> e X p === p   , testProperty "eval (monomial 0 c) p = c" $@@ -144,7 +150,7 @@ substTestGroup _ =   [ tenTimesLess $ tenTimesLess $ tenTimesLess $     testProperty "subst (p + q) r = subst p r + subst q r" $-    \p q r -> e (p + q) r === e p r + e q r+    \p q (ShortPoly r) -> e (p + q) r === e p r + e q r   , testProperty "subst x p = p" $     \p -> e Data.Poly.X p === p   , testProperty "subst (monomial 0 c) p = monomial 0 c" $@@ -157,15 +163,35 @@ derivTests :: TestTree derivTests = testGroup "deriv"   [ testProperty "deriv c = 0" $-    \c -> deriv (monomial 0 c :: Laurent V.Vector Int) === 0+    \c -> deriv (monomial 0 c :: ULaurent Int) === 0   , testProperty "deriv cX = c" $-    \c -> deriv (monomial 0 c * X :: Laurent V.Vector Int) === monomial 0 c+    \c -> deriv (monomial 0 c * X :: ULaurent Int) === monomial 0 c   , testProperty "deriv (p + q) = deriv p + deriv q" $-    \p q -> deriv (p + q) === (deriv p + deriv q :: Laurent V.Vector Int)+    \p q -> deriv (p + q) === (deriv p + deriv q :: ULaurent Int)   , testProperty "deriv (p * q) = p * deriv q + q * deriv p" $-    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: Laurent V.Vector Int)+    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: ULaurent Int)   , tenTimesLess $ tenTimesLess $ tenTimesLess $     testProperty "deriv (subst p q) = deriv q * subst (deriv p) q" $-    \(p :: Data.Poly.Poly V.Vector Int) (q :: Laurent U.Vector Int) ->+    \(ShortPoly (p :: Data.Poly.UPoly Int)) (ShortPoly (q :: ULaurent Int)) ->       deriv (subst p q) === deriv q * subst (Data.Poly.deriv p) q+  ]++patternTests :: TestTree+patternTests = testGroup "pattern"+  [ testProperty "X  :: ULaurent Int" $ once $+    case (monomial 1 1 :: ULaurent Int) of X -> True; _ -> False+  , testProperty "X  :: ULaurent Int" $ once $+    (X :: ULaurent Int) === monomial 1 1+  , testProperty "X :: ULaurent ()" $ once $+    case (zero :: ULaurent ()) of X -> True; _ -> False+  , testProperty "X :: ULaurent ()" $ once $+    (X :: ULaurent ()) === zero+  , testProperty "X^-k" $+    \(NonNegative j) k -> ((X^j)^-k :: ULaurent Int) === monomial (- j * k) 1+  , testProperty "^-" $+    \(p :: ULaurent Int) (NonNegative k) -> ioProperty $ do+      et <- try (evaluate (p^-k)) :: IO (Either PatternMatchFail (ULaurent Int))+      pure $ case et of+        Left{}  -> True+        Right t -> p^k * t == one   ]
test/Main.hs view
@@ -1,18 +1,30 @@+{-# LANGUAGE CPP #-}+ module Main where  import Test.Tasty -import qualified Dense as Dense-import qualified DenseLaurent as DenseLaurent-import qualified Orthogonal as Orthogonal-import qualified Sparse as Sparse-import qualified SparseLaurent as SparseLaurent+import qualified Dense+import qualified DenseLaurent+import qualified DFT+import qualified Orthogonal+#ifdef SupportSparse+import qualified Multi+import qualified MultiLaurent+import qualified Sparse+import qualified SparseLaurent+#endif  main :: IO () main = defaultMain $ testGroup "All"     [ Dense.testSuite     , DenseLaurent.testSuite+    , DFT.testSuite+    , Orthogonal.testSuite+#ifdef SupportSparse     , Sparse.testSuite     , SparseLaurent.testSuite-    , Orthogonal.testSuite+    , Multi.testSuite+    , MultiLaurent.testSuite+#endif     ]
+ test/Multi.hs view
@@ -0,0 +1,320 @@+{-# LANGUAGE CPP                        #-}+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE UndecidableInstances       #-}++module Multi+  ( testSuite+  ) where++import Prelude hiding (gcd, quotRem, rem)+import Control.Exception+import Data.Euclidean (GcdDomain(..))+import Data.Function+import Data.Int+import Data.List (groupBy, sortOn)+import Data.Mod.Word+import Data.Proxy+import Data.Semiring (Semiring(..))+import qualified Data.Vector as V+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Sized as SG+import qualified Data.Vector.Sized as SV+import qualified Data.Vector.Unboxed as U+import qualified Data.Vector.Unboxed.Sized as SU+import Test.Tasty+import Test.Tasty.QuickCheck hiding (scale, numTests)++import Data.Poly.Multi+import qualified Data.Poly.Multi.Semiring as S++import Quaternion+import TestUtils++testSuite :: TestTree+testSuite = testGroup "Multi"+  [ arithmeticTests+  , otherTests+  , divideByZeroTests+  , lawsTests+  , evalTests+  , derivTests+  , patternTests+  , conversionTests+  ]++lawsTests :: TestTree+lawsTests = testGroup "Laws"+  $ semiringTests ++ ringTests ++ numTests ++ gcdDomainTests ++ isListTests ++ showTests++semiringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes+semiringTests =+  [ mySemiringLaws (Proxy :: Proxy (UMultiPoly 3 ()))+  , mySemiringLaws (Proxy :: Proxy (ShortPoly (UMultiPoly 2 Int8)))+  , mySemiringLaws (Proxy :: Proxy (ShortPoly (VMultiPoly 2 Integer)))+  , tenTimesLess+  $ mySemiringLaws (Proxy :: Proxy (ShortPoly (UMultiPoly 2 (Quaternion Int))))+  ]+#else+semiringTests = []+#endif++ringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes+ringTests =+  [ myRingLaws (Proxy :: Proxy (UMultiPoly 3 ()))+  , myRingLaws (Proxy :: Proxy (UMultiPoly 3 Int8))+  , myRingLaws (Proxy :: Proxy (VMultiPoly 3 Integer))+  , myRingLaws (Proxy :: Proxy (UMultiPoly 3 (Quaternion Int)))+  ]+#else+ringTests = []+#endif++numTests :: [TestTree]+numTests =+  [ myNumLaws (Proxy :: Proxy (ShortPoly (UMultiPoly 2 Int8)))+  , myNumLaws (Proxy :: Proxy (ShortPoly (VMultiPoly 2 Integer)))+  , tenTimesLess+  $ myNumLaws (Proxy :: Proxy (ShortPoly (UMultiPoly 2 (Quaternion Int))))+  ]++gcdDomainTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes+gcdDomainTests =+  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VMultiPoly 3 Integer)))+  , tenTimesLess+  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VMultiPoly 3 (Mod 3))))+  , tenTimesLess+  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VMultiPoly 3 Rational)))+  ]+#else+gcdDomainTests = []+#endif++isListTests :: [TestTree]+isListTests =+  [ myIsListLaws (Proxy :: Proxy (UMultiPoly 3 ()))+  , myIsListLaws (Proxy :: Proxy (UMultiPoly 3 Int8))+  , myIsListLaws (Proxy :: Proxy (VMultiPoly 3 Integer))+  , tenTimesLess+  $ myIsListLaws (Proxy :: Proxy (UMultiPoly 3 (Quaternion Int)))+  ]++showTests :: [TestTree]+showTests =+  [ myShowLaws (Proxy :: Proxy (UMultiPoly 4 ()))+  , myShowLaws (Proxy :: Proxy (UMultiPoly 4 Int8))+  , myShowLaws (Proxy :: Proxy (VMultiPoly 4 Integer))+  , tenTimesLess+  $ myShowLaws (Proxy :: Proxy (UMultiPoly 4 (Quaternion Int)))+  ]++arithmeticTests :: TestTree+arithmeticTests = testGroup "Arithmetic"+  [ testProperty "addition matches reference" $+    \(xs :: [(SU.Vector 3 Word, Int)]) ys -> toMultiPoly (V.fromList (addRef xs ys)) ===+      toMultiPoly (V.fromList xs) + toMultiPoly (V.fromList ys)+  , testProperty "subtraction matches reference" $+    \(xs :: [(SU.Vector 3 Word, Int)]) ys -> toMultiPoly (V.fromList (subRef xs ys)) ===+      toMultiPoly (V.fromList xs) - toMultiPoly (V.fromList ys)+  , tenTimesLess $+    testProperty "multiplication matches reference" $+    \(xs :: [(SU.Vector 3 Word, Int)]) ys -> toMultiPoly (V.fromList (mulRef xs ys)) ===+      toMultiPoly (V.fromList xs) * toMultiPoly (V.fromList ys)+  ]++addRef :: (Num a, Ord t) => [(t, a)] -> [(t, a)] -> [(t, a)]+addRef [] ys = ys+addRef xs [] = xs+addRef xs@((xp, xc) : xs') ys@((yp, yc) : ys') =+  case xp `compare` yp of+    LT -> (xp, xc) : addRef xs' ys+    EQ -> (xp, xc + yc) : addRef xs' ys'+    GT -> (yp, yc) : addRef xs ys'++subRef :: (Num a, Ord t) => [(t, a)] -> [(t, a)] -> [(t, a)]+subRef [] ys = map (fmap negate) ys+subRef xs [] = xs+subRef xs@((xp, xc) : xs') ys@((yp, yc) : ys') =+  case xp `compare` yp of+    LT -> (xp, xc) : subRef xs' ys+    EQ -> (xp, xc - yc) : subRef xs' ys'+    GT -> (yp, negate yc) : subRef xs ys'++mulRef :: (Num a, Ord t, Num t) => [(t, a)] -> [(t, a)] -> [(t, a)]+mulRef xs ys+  = map (\ws -> (fst (head ws), sum (map snd ws)))+  $ groupBy ((==) `on` fst)+  $ sortOn fst+  $ [ (xp + yp, xc * yc) | (xp, xc) <- xs, (yp, yc) <- ys ]++otherTests :: TestTree+otherTests = testGroup "other" $ concat+  [ otherTestGroup (Proxy :: Proxy Int8)+  , otherTestGroup (Proxy :: Proxy (Quaternion Int))+  ]++otherTestGroup+  :: forall a.+     (Eq a, Show a, Semiring a, Num a, Arbitrary a, U.Unbox a, G.Vector U.Vector a)+  => Proxy a+  -> [TestTree]+otherTestGroup _ =+  [ testProperty "monomial matches reference" $+    \(ps :: SU.Vector 3 Word) (c :: a) -> monomial ps c === toMultiPoly (V.fromList (monomialRef ps c))+  , tenTimesLess $+    testProperty "scale matches multiplication by monomial" $+    \ps c (xs :: UMultiPoly 3 a) -> scale ps c xs === monomial ps c * xs+  , tenTimesLess $+    testProperty "scale' matches multiplication by monomial" $+    \ps c (xs :: UMultiPoly 3 a) -> S.scale ps c xs === S.monomial ps c * xs+  ]++monomialRef :: Num a => t -> a -> [(t, a)]+monomialRef p c = [(p, c)]++divideByZeroTests :: TestTree+divideByZeroTests = testGroup "divideByZero"+  [ testProperty "divide"  $ testProp divide+  ]+  where+    testProp f xs = ioProperty ((== Left DivideByZero) <$> try (evaluate (xs `f` (0 :: VMultiPoly 3 Rational))))++evalTests :: TestTree+evalTests = testGroup "eval" $ concat+  [ evalTestGroup  (Proxy :: Proxy (UMultiPoly 3 Int8))+  , evalTestGroup  (Proxy :: Proxy (VMultiPoly 3 Integer))+  , substTestGroup (Proxy :: Proxy (UMultiPoly 3 Int8))+  ]++evalTestGroup+  :: forall v a.+     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (SU.Vector 3 Word, a)), Show (v (SU.Vector 3 Word, a)), G.Vector v (SU.Vector 3 Word, a))+  => Proxy (MultiPoly v 3 a)+  -> [TestTree]+evalTestGroup _ =+  [ testProperty "eval (p + q) rs = eval p rs + eval q rs" $+    \(ShortPoly p) (ShortPoly q) rs -> e (p + q) rs === e p rs + e q rs+  , testProperty "eval (p * q) rs = eval p rs * eval q rs" $+    \(ShortPoly p) (ShortPoly q) rs -> e (p * q) rs === e p rs * e q rs+  , testProperty "eval x p = p" $+    \p -> e X (SV.fromTuple (p, undefined, undefined)) === p+  , testProperty "eval (monomial 0 c) p = c" $+    \c ps -> e (monomial 0 c) ps === c++  , testProperty "eval' (p + q) rs = eval' p rs + eval' q rs" $+    \(ShortPoly p) (ShortPoly q) rs -> e' (p + q) rs === e' p rs + e' q rs+  , testProperty "eval' (p * q) rs = eval' p rs * eval' q rs" $+    \(ShortPoly p) (ShortPoly q) rs -> e' (p * q) rs === e' p rs * e' q rs+  , testProperty "eval' x p = p" $+    \p -> e' S.X (SV.fromTuple (p, undefined, undefined)) === p+  , testProperty "eval' (monomial 0 c) p = c" $+    \c ps -> e' (monomial 0 c) ps === c+  ]+  where+    e :: MultiPoly v 3 a -> SV.Vector 3 a -> a+    e = eval+    e' :: MultiPoly v 3 a -> SV.Vector 3 a -> a+    e' = S.eval++substTestGroup+  :: forall v a.+     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (SU.Vector 3 Word, a)), Show (v (SU.Vector 3 Word, a)), G.Vector v (SU.Vector 3 Word, a))+  => Proxy (MultiPoly v 3 a)+  -> [TestTree]+substTestGroup _ =+  [ testProperty "subst x p = p" $+    \p -> e X (SV.fromTuple (p, undefined, undefined)) === p+  , testProperty "subst (monomial 0 c) ps = monomial 0 c" $+    \c ps -> e (monomial 0 c) ps === monomial 0 c+  , testProperty "subst' x p = p" $+    \p -> e' S.X (SV.fromTuple (p, undefined, undefined)) === p+  , testProperty "subst' (S.monomial 0 c) ps = S.monomial 0 c" $+    \c ps -> e' (S.monomial 0 c) ps === S.monomial 0 c+  ]+  where+    e :: MultiPoly v 3 a -> SV.Vector 3 (MultiPoly v 3 a) -> MultiPoly v 3 a+    e = subst+    e' :: MultiPoly v 3 a -> SV.Vector 3 (MultiPoly v 3 a) -> MultiPoly v 3 a+    e' = S.subst++derivTests :: TestTree+derivTests = testGroup "deriv"+  [ testProperty "deriv = S.deriv" $+    \k (p :: VMultiPoly 3 Integer) -> deriv k p === S.deriv k p+  , testProperty "integral = S.integral" $+    \k (p :: VMultiPoly 3 Rational) -> integral k p === S.integral k p+  , testProperty "deriv . integral = id" $+    \k (p :: VMultiPoly 3 Rational) ->+      deriv k (integral k p) === p+  , testProperty "deriv c = 0" $+    \k c ->+      deriv k (monomial 0 c :: UMultiPoly 3 Int) === 0+  , testProperty "deriv cX = c" $+    \c ->+      deriv 0 (monomial 0 c * X :: UMultiPoly 3 Int) === monomial 0 c+  , testProperty "deriv (p + q) = deriv p + deriv q" $+    \k p q ->+      deriv k (p + q) === (deriv k p + deriv k q :: UMultiPoly 3 Int)+  , testProperty "deriv (p * q) = p * deriv q + q * deriv p" $+    \k p q ->+      deriv k (p * q) === (p * deriv k q + q * deriv k p :: UMultiPoly 3 Int)+  ]++patternTests :: TestTree+patternTests = testGroup "pattern"+  [ testProperty "X  :: UMultiPoly Int" $ once $+    case (monomial 1 1 :: UMultiPoly 1 Int) of X -> True; _ -> False+  , testProperty "X  :: UMultiPoly Int" $ once $+    (X :: UMultiPoly 1 Int) === monomial 1 1+  , testProperty "S.X  :: UMultiPoly Int8" $ once $+    case (S.monomial 1 1 :: UMultiPoly 1 Int8) of S.X -> True; _ -> False+  , testProperty "S.X  :: UMultiPoly Int8" $ once $+    (S.X :: UMultiPoly 1 Int8) === S.monomial 1 1+  , testProperty "X :: UMultiPoly ()" $ once $+    case (zero :: UMultiPoly 1 ()) of S.X -> True; _ -> False+  , testProperty "X :: UMultiPoly ()" $ once $+    (S.X :: UMultiPoly 1 ()) === zero++  , testProperty "Y  :: UMultiPoly Int" $ once $+    case (monomial (SG.fromTuple (0, 1)) 1 :: UMultiPoly 2 Int) of Y -> True; _ -> False+  , testProperty "Y  :: UMultiPoly Int" $ once $+    (Y :: UMultiPoly 2 Int) === monomial (SG.fromTuple (0, 1)) 1+  , testProperty "S.Y  :: UMultiPoly Int8" $ once $+    case (S.monomial (SG.fromTuple (0, 1)) 1 :: UMultiPoly 2 Int8) of S.Y -> True; _ -> False+  , testProperty "S.Y  :: UMultiPoly Int8" $ once $+    (S.Y :: UMultiPoly 2 Int8) === S.monomial (SG.fromTuple (0, 1)) 1+  , testProperty "Y :: UMultiPoly ()" $ once $+    case (zero :: UMultiPoly 2 ()) of S.Y -> True; _ -> False+  , testProperty "Y :: UMultiPoly ()" $ once $+    (S.Y :: UMultiPoly 2 ()) === zero++  , testProperty "Z  :: UMultiPoly Int" $ once $+    case (monomial (SG.fromTuple (0, 0, 1)) 1 :: UMultiPoly 3 Int) of Z -> True; _ -> False+  , testProperty "Z  :: UMultiPoly Int" $ once $+    (Z :: UMultiPoly 3 Int) === monomial (SG.fromTuple (0, 0, 1)) 1+  , testProperty "S.Z  :: UMultiPoly Int8" $ once $+    case (S.monomial (SG.fromTuple (0, 0, 1)) 1 :: UMultiPoly 3 Int) of S.Z -> True; _ -> False+  , testProperty "S.Z  :: UMultiPoly Int" $ once $+    (S.Z :: UMultiPoly 3 Int) === S.monomial (SG.fromTuple (0, 0, 1)) 1+  , testProperty "Z :: UMultiPoly ()" $ once $+    case (zero :: UMultiPoly 3 ()) of S.Z -> True; _ -> False+  , testProperty "Z :: UMultiPoly ()" $ once $+    (S.Z :: UMultiPoly 3 ()) === zero+  ]++conversionTests :: TestTree+conversionTests = testGroup "conversions"+  [ testProperty "unsegregate . segregate = id" $+    \(xs :: UMultiPoly 3 Int8) -> xs === unsegregate (segregate xs)+  , testProperty "segregate . unsegregate = id" $+    \xs -> xs === segregate (unsegregate xs :: UMultiPoly 3 Int8)+  , testProperty "toMultiPoly . unMultiPoly = id" $+    \(xs :: UMultiPoly 3 Int8) -> xs === toMultiPoly (unMultiPoly xs)+  , testProperty "S.toMultiPoly . S.unMultiPoly = id" $+    \(xs :: UMultiPoly 3 Int8) -> xs === S.toMultiPoly (S.unMultiPoly xs)+  ]
+ test/MultiLaurent.hs view
@@ -0,0 +1,235 @@+{-# LANGUAGE CPP                        #-}+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE UndecidableInstances       #-}++module MultiLaurent+  ( testSuite+  ) where++import Prelude hiding (gcd, quotRem, quot, rem)+import Control.Exception+import Data.Euclidean (GcdDomain(..), Field)+import Data.Int+import qualified Data.Poly.Multi+import Data.Poly.Multi.Laurent+import Data.Proxy+import Data.Semiring (Semiring(..))+import qualified Data.Vector.Generic as G+import qualified Data.Vector.Generic.Sized as SG+import qualified Data.Vector.Sized as SV+import qualified Data.Vector.Unboxed as U+import qualified Data.Vector.Unboxed.Sized as SU+import Test.Tasty+import Test.Tasty.QuickCheck hiding (scale, numTests)++import Quaternion+import TestUtils++testSuite :: TestTree+testSuite = testGroup "MultiLaurent"+  [ otherTests+  , divideByZeroTests+  , lawsTests+  , evalTests+  , derivTests+  , patternTests+  , conversionTests+  ]++lawsTests :: TestTree+lawsTests = testGroup "Laws"+  $ semiringTests ++ ringTests ++ numTests ++ gcdDomainTests ++ isListTests ++ showTests++semiringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes+semiringTests =+  [ mySemiringLaws (Proxy :: Proxy (UMultiLaurent 3 ()))+  , mySemiringLaws (Proxy :: Proxy (ShortPoly (UMultiLaurent 2 Int8)))+  , mySemiringLaws (Proxy :: Proxy (ShortPoly (VMultiLaurent 2 Integer)))+  , tenTimesLess+  $ mySemiringLaws (Proxy :: Proxy (ShortPoly (UMultiLaurent 2 (Quaternion Int))))+  ]+#else+semiringTests = []+#endif++ringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes+ringTests =+  [ myRingLaws (Proxy :: Proxy (UMultiLaurent 3 ()))+  , myRingLaws (Proxy :: Proxy (UMultiLaurent 3 Int8))+  , myRingLaws (Proxy :: Proxy (VMultiLaurent 3 Integer))+  , myRingLaws (Proxy :: Proxy (UMultiLaurent 3 (Quaternion Int)))+  ]+#else+ringTests = []+#endif++numTests :: [TestTree]+numTests =+  [ myNumLaws (Proxy :: Proxy (ShortPoly (UMultiLaurent 2 Int8)))+  , myNumLaws (Proxy :: Proxy (ShortPoly (VMultiLaurent 2 Integer)))+  , tenTimesLess+  $ myNumLaws (Proxy :: Proxy (ShortPoly (UMultiLaurent 2 (Quaternion Int))))+  ]++gcdDomainTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes+gcdDomainTests =+  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VMultiLaurent 3 Integer)))+  , tenTimesLess+  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VMultiLaurent 3 Rational)))+  ]+#else+gcdDomainTests = []+#endif++isListTests :: [TestTree]+isListTests =+  [ myIsListLaws (Proxy :: Proxy (UMultiLaurent 3 ()))+  , myIsListLaws (Proxy :: Proxy (UMultiLaurent 3 Int8))+  , myIsListLaws (Proxy :: Proxy (VMultiLaurent 3 Integer))+  , tenTimesLess+  $ myIsListLaws (Proxy :: Proxy (UMultiLaurent 3 (Quaternion Int)))+  ]++showTests :: [TestTree]+showTests =+  [ myShowLaws (Proxy :: Proxy (UMultiLaurent 4 ()))+  , myShowLaws (Proxy :: Proxy (UMultiLaurent 4 Int8))+  , myShowLaws (Proxy :: Proxy (VMultiLaurent 4 Integer))+  , tenTimesLess+  $ myShowLaws (Proxy :: Proxy (UMultiLaurent 4 (Quaternion Int)))+  ]++otherTests :: TestTree+otherTests = testGroup "other" $ concat+  [ otherTestGroup (Proxy :: Proxy Int8)+  , otherTestGroup (Proxy :: Proxy (Quaternion Int))+  ]++otherTestGroup+  :: forall a.+     (Eq a, Show a, Semiring a, Num a, Arbitrary a, U.Unbox a, G.Vector U.Vector a)+  => Proxy a+  -> [TestTree]+otherTestGroup _ =+  [ testProperty "scale matches multiplication by monomial" $+    \p c (xs :: UMultiLaurent 3 a) -> scale p c xs === monomial p c * xs+  , tenTimesLess $+    testProperty "toMultiLaurent . unMultiLaurent" $+    \(xs :: UMultiLaurent 3 a) -> uncurry toMultiLaurent (unMultiLaurent xs) === xs+  ]++divideByZeroTests :: TestTree+divideByZeroTests = testGroup "divideByZero"+  [ testProperty "divide"  $ testProp divide+  ]+  where+    testProp f xs = ioProperty ((== Left DivideByZero) <$> try (evaluate (xs `f` (0 :: VMultiLaurent 3 Rational))))++evalTests :: TestTree+evalTests = testGroup "eval" $ concat+  [ evalTestGroup  (Proxy :: Proxy (VMultiLaurent 3 Rational))+  , substTestGroup (Proxy :: Proxy (UMultiLaurent 3 Int8))+  ]++evalTestGroup+  :: forall v a.+     (Eq a, Field a, Arbitrary a, Show a, Eq (v (Word, a)), Show (v (Word, a)), G.Vector v (Word, a), Eq (v (SU.Vector 3 Word, a)), Show (v (SU.Vector 3 Word, a)), G.Vector v (SU.Vector 3 Word, a))+  => Proxy (MultiLaurent v 3 a)+  -> [TestTree]+evalTestGroup _ =+  [ testProperty "eval (p + q) r = eval p r + eval q r" $+    \(ShortPoly p) (ShortPoly q) r -> e (p `plus` q) r === e p r `plus` e q r+  , testProperty "eval (p * q) r = eval p r * eval q r" $+    \(ShortPoly p) (ShortPoly q) r -> e (p `times` q) r === e p r `times` e q r+  , testProperty "eval x p = p" $+    \p -> e X (SV.fromTuple (p, undefined, undefined)) === p+  , testProperty "eval (monomial 0 c) p = c" $+    \c p -> e (monomial 0 c) p === c+  ]+  where+    e :: MultiLaurent v 3 a -> SV.Vector 3 a -> a+    e = eval++substTestGroup+  :: forall v a.+     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (SU.Vector 3 Word, a)), Show (v (Word, a)), G.Vector v (Word, a), G.Vector v (SU.Vector 3 Word, a))+  => Proxy (MultiLaurent v 3 a)+  -> [TestTree]+substTestGroup _ =+  [ testProperty "subst x p = p" $+    \p -> e Data.Poly.Multi.X (SV.fromTuple (p, undefined, undefined)) === p+  , testProperty "subst (monomial 0 c) p = monomial 0 c" $+    \c p -> e (Data.Poly.Multi.monomial 0 c) p === monomial 0 c+  ]+  where+    e :: Data.Poly.Multi.MultiPoly v 3 a -> SV.Vector 3 (MultiLaurent v 3 a) -> MultiLaurent v 3 a+    e = subst++derivTests :: TestTree+derivTests = testGroup "deriv"+  [ testProperty "deriv c = 0" $+    \k c -> deriv k (monomial 0 c :: UMultiLaurent 3 Int) === 0+  , testProperty "deriv cX = c" $+    \c -> deriv 0 (monomial 0 c * X :: UMultiLaurent 3 Int) === monomial 0 c+  , testProperty "deriv (p + q) = deriv p + deriv q" $+    \k p q -> deriv k (p + q) === (deriv k p + deriv k q :: UMultiLaurent 3 Int)+  , testProperty "deriv (p * q) = p * deriv q + q * deriv p" $+    \k p q -> deriv k (p * q) === (p * deriv k q + q * deriv k p :: UMultiLaurent 3 Int)+  ]++patternTests :: TestTree+patternTests = testGroup "pattern"+  [ testProperty "X  :: UMultiLaurent Int" $ once $+    case (monomial 1 1 :: UMultiLaurent 1 Int) of X -> True; _ -> False+  , testProperty "X  :: UMultiLaurent Int" $ once $+    (X :: UMultiLaurent 1 Int) === monomial 1 1+  , testProperty "X :: UMultiLaurent ()" $ once $+    case (zero :: UMultiLaurent 1 ()) of X -> True; _ -> False+  , testProperty "X :: UMultiLaurent ()" $ once $+    (X :: UMultiLaurent 1 ()) === zero++  , testProperty "Y  :: UMultiLaurent Int" $ once $+    case (monomial (SG.fromTuple (0, 1)) 1 :: UMultiLaurent 2 Int) of Y -> True; _ -> False+  , testProperty "Y  :: UMultiLaurent Int" $ once $+    (Y :: UMultiLaurent 2 Int) === monomial (SG.fromTuple (0, 1)) 1+  , testProperty "Y :: UMultiLaurent ()" $ once $+    case (zero :: UMultiLaurent 2 ()) of Y -> True; _ -> False+  , testProperty "Y :: UMultiLaurent ()" $ once $+    (Y :: UMultiLaurent 2 ()) === zero++  , testProperty "Z  :: UMultiLaurent Int" $ once $+    case (monomial (SG.fromTuple (0, 0, 1)) 1 :: UMultiLaurent 3 Int) of Z -> True; _ -> False+  , testProperty "Z  :: UMultiLaurent Int" $ once $+    (Z :: UMultiLaurent 3 Int) === monomial (SG.fromTuple (0, 0, 1)) 1+  , testProperty "Z :: UMultiLaurent ()" $ once $+    case (zero :: UMultiLaurent 3 ()) of Z -> True; _ -> False+  , testProperty "Z :: UMultiLaurent ()" $ once $+    (Z :: UMultiLaurent 3 ()) === zero++  , testProperty "X^-k" $+    \(NonNegative j) k -> ((X^j)^-k :: UMultiLaurent 1 Int) === monomial (SG.singleton (- j * k)) 1+  , testProperty "Y^-k" $+    \(NonNegative j) k -> ((Y^j)^-k :: UMultiLaurent 2 Int) === monomial (SG.fromTuple (0, - j * k)) 1+  , testProperty "Z^-k" $+    \(NonNegative j) k -> ((Z^j)^-k :: UMultiLaurent 3 Int) === monomial (SG.fromTuple (0, 0, - j * k)) 1+  , testProperty "^-" $+    \(p :: UMultiLaurent 3 Int) (NonNegative k) -> ioProperty $ do+      et <- try (evaluate (p^-k)) :: IO (Either PatternMatchFail (UMultiLaurent 3 Int))+      pure $ case et of+        Left{}  -> True+        Right t -> p^k * t == one+  ]++conversionTests :: TestTree+conversionTests = testGroup "conversions"+  [ testProperty "unsegregate . segregate = id" $+    \(xs :: UMultiLaurent 3 Int8) -> xs === unsegregate (segregate xs)+  , testProperty "segregate . unsegregate = id" $+    \xs -> xs === segregate (unsegregate xs :: UMultiLaurent 3 Int8)+  ]
test/Orthogonal.hs view
@@ -130,7 +130,7 @@   [ integral11 (x * y) === 0 | (x : xs) <- tails polys, y <- xs ]   where     polys :: [VPoly Rational]-    polys = take limit $ legendre+    polys = take limit legendre  hermiteProbRef :: [VPoly Integer] hermiteProbRef = iterate (\he -> [0, 1] * he - deriv he) 1
test/Quaternion.hs view
@@ -18,16 +18,14 @@   ) where  import Prelude hiding (negate)-import Control.Monad import Data.Semiring (Semiring(..), Ring(..), minus) import GHC.Generics import Test.Tasty.QuickCheck hiding (scale) -import Data.Vector.Unboxed (Vector)+import Data.Vector.Unboxed (Vector, Unbox) import qualified Data.Vector.Generic as G import Data.Vector.Unboxed.Mutable (MVector) import qualified Data.Vector.Generic.Mutable as M-import Data.Vector.Unboxed (Unbox)  data Quaternion a = Quaternion !a !a !a !a   deriving (Eq, Ord, Show, Generic)@@ -63,9 +61,9 @@ newtype instance MVector s (Quaternion a) = MV_Quaternion (MVector s (a, a, a, a)) newtype instance Vector    (Quaternion a) = V_Quaternion  (Vector    (a, a, a, a)) -instance (Unbox a) => Unbox (Quaternion a)+instance Unbox a => Unbox (Quaternion a) -instance (Unbox a) => M.MVector MVector (Quaternion a) where+instance Unbox a => M.MVector MVector (Quaternion a) where   {-# INLINE basicLength #-}   {-# INLINE basicUnsafeSlice #-}   {-# INLINE basicOverlaps #-}@@ -81,30 +79,30 @@   basicLength (MV_Quaternion v) = M.basicLength v   basicUnsafeSlice i n (MV_Quaternion v) = MV_Quaternion $ M.basicUnsafeSlice i n v   basicOverlaps (MV_Quaternion v1) (MV_Quaternion v2) = M.basicOverlaps v1 v2-  basicUnsafeNew n = MV_Quaternion `liftM` M.basicUnsafeNew n+  basicUnsafeNew n = MV_Quaternion `fmap` M.basicUnsafeNew n   basicInitialize (MV_Quaternion v) = M.basicInitialize v-  basicUnsafeReplicate n (Quaternion a b c d) = MV_Quaternion `liftM` M.basicUnsafeReplicate n (a, b, c, d)-  basicUnsafeRead (MV_Quaternion v) i = (\(a, b, c, d) -> Quaternion a b c d) `liftM` M.basicUnsafeRead v i+  basicUnsafeReplicate n (Quaternion a b c d) = MV_Quaternion `fmap` M.basicUnsafeReplicate n (a, b, c, d)+  basicUnsafeRead (MV_Quaternion v) i = (\(a, b, c, d) -> Quaternion a b c d) `fmap` M.basicUnsafeRead v i   basicUnsafeWrite (MV_Quaternion v) i (Quaternion a b c d) = M.basicUnsafeWrite v i (a, b, c, d)   basicClear (MV_Quaternion v) = M.basicClear v   basicSet (MV_Quaternion v) (Quaternion a b c d) = M.basicSet v (a, b, c, d)   basicUnsafeCopy (MV_Quaternion v1) (MV_Quaternion v2) = M.basicUnsafeCopy v1 v2   basicUnsafeMove (MV_Quaternion v1) (MV_Quaternion v2) = M.basicUnsafeMove v1 v2-  basicUnsafeGrow (MV_Quaternion v) n = MV_Quaternion `liftM` M.basicUnsafeGrow v n+  basicUnsafeGrow (MV_Quaternion v) n = MV_Quaternion `fmap` M.basicUnsafeGrow v n -instance (Unbox a) => G.Vector Vector (Quaternion a) where+instance Unbox a => G.Vector Vector (Quaternion a) where   {-# INLINE basicUnsafeFreeze #-}   {-# INLINE basicUnsafeThaw #-}   {-# INLINE basicLength #-}   {-# INLINE basicUnsafeSlice #-}   {-# INLINE basicUnsafeIndexM #-}   {-# INLINE elemseq #-}-  basicUnsafeFreeze (MV_Quaternion v) = V_Quaternion `liftM` G.basicUnsafeFreeze v-  basicUnsafeThaw (V_Quaternion v) = MV_Quaternion `liftM` G.basicUnsafeThaw v+  basicUnsafeFreeze (MV_Quaternion v) = V_Quaternion `fmap` G.basicUnsafeFreeze v+  basicUnsafeThaw (V_Quaternion v) = MV_Quaternion `fmap` G.basicUnsafeThaw v   basicLength (V_Quaternion v) = G.basicLength v   basicUnsafeSlice i n (V_Quaternion v) = V_Quaternion $ G.basicUnsafeSlice i n v   basicUnsafeIndexM (V_Quaternion v) i-                = (\(a, b, c, d) -> Quaternion a b c d) `liftM` G.basicUnsafeIndexM v i+                = (\(a, b, c, d) -> Quaternion a b c d) `fmap` G.basicUnsafeIndexM v i   basicUnsafeCopy (MV_Quaternion mv) (V_Quaternion v)                 = G.basicUnsafeCopy mv v   elemseq _ (Quaternion a b c d) z = G.elemseq (undefined :: Vector a) a
test/Sparse.hs view
@@ -1,116 +1,124 @@+{-# LANGUAGE CPP                        #-} {-# LANGUAGE DataKinds                  #-} {-# LANGUAGE FlexibleContexts           #-} {-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE ScopedTypeVariables        #-} {-# LANGUAGE UndecidableInstances       #-} -{-# OPTIONS_GHC -fno-warn-orphans #-}- module Sparse   ( testSuite   , ShortPoly(..)   ) where -import Prelude hiding (gcd, quotRem, rem)+import Prelude hiding (gcd, quotRem, quot, rem)+import Control.Exception import Data.Euclidean (Euclidean(..), GcdDomain(..)) import Data.Function import Data.Int import Data.List (groupBy, sortOn)-import Data.Mod+import Data.Mod.Word import Data.Poly.Sparse import qualified Data.Poly.Sparse.Semiring as S import Data.Proxy-import Data.Semiring (Semiring)+import Data.Semiring (Semiring(..)) import qualified Data.Vector as V import qualified Data.Vector.Generic as G import qualified Data.Vector.Unboxed as U+import qualified Data.Vector.Unboxed.Sized as SU import Test.Tasty import Test.Tasty.QuickCheck hiding (scale, numTests)  import Quaternion import TestUtils -instance (Eq a, Semiring a, Arbitrary a, G.Vector v (Word, a)) => Arbitrary (Poly v a) where-  arbitrary = S.toPoly . G.fromList <$> arbitrary-  shrink = fmap (S.toPoly . G.fromList) . shrink . G.toList . unPoly--newtype ShortPoly a = ShortPoly { unShortPoly :: a }-  deriving (Eq, Show, Semiring, GcdDomain, Euclidean)--instance (Eq a, Semiring a, Arbitrary a, G.Vector v (Word, a)) => Arbitrary (ShortPoly (Poly v a)) where-  arbitrary = ShortPoly . S.toPoly . G.fromList . (\xs -> take (length xs `mod` 5) xs) <$> arbitrary-  shrink = fmap (ShortPoly . S.toPoly . G.fromList) . shrink . G.toList . unPoly . unShortPoly- testSuite :: TestTree testSuite = testGroup "Sparse"-    [ arithmeticTests-    , otherTests-    , lawsTests-    , evalTests-    , derivTests-    ]+  [ arithmeticTests+  , otherTests+  , divideByZeroTests+  , lawsTests+  , evalTests+  , derivTests+  , patternTests+  , conversionTests+  ]  lawsTests :: TestTree lawsTests = testGroup "Laws"   $ semiringTests ++ ringTests ++ numTests ++ euclideanTests ++ gcdDomainTests ++ isListTests ++ showTests  semiringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes semiringTests =-  [ mySemiringLaws (Proxy :: Proxy (Poly U.Vector ()))-  , mySemiringLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , mySemiringLaws (Proxy :: Proxy (Poly V.Vector Integer))+  [ mySemiringLaws (Proxy :: Proxy (UPoly ()))+  , mySemiringLaws (Proxy :: Proxy (UPoly Int8))+  , mySemiringLaws (Proxy :: Proxy (VPoly Integer))   , tenTimesLess-  $ mySemiringLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  $ mySemiringLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]+#else+semiringTests = []+#endif  ringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes ringTests =-  [ myRingLaws (Proxy :: Proxy (Poly U.Vector ()))-  , myRingLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myRingLaws (Proxy :: Proxy (Poly V.Vector Integer))-  , myRingLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  [ myRingLaws (Proxy :: Proxy (UPoly ()))+  , myRingLaws (Proxy :: Proxy (UPoly Int8))+  , myRingLaws (Proxy :: Proxy (VPoly Integer))+  , myRingLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]+#else+ringTests = []+#endif  numTests :: [TestTree] numTests =-  [ myNumLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myNumLaws (Proxy :: Proxy (Poly V.Vector Integer))+  [ myNumLaws (Proxy :: Proxy (UPoly Int8))+  , myNumLaws (Proxy :: Proxy (VPoly Integer))   , tenTimesLess-  $ myNumLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  $ myNumLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]  gcdDomainTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes gcdDomainTests =-  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector Integer)))+  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VPoly Integer)))   , tenTimesLess-  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector (Mod 3))))+  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (UPoly (Mod 3))))   , tenTimesLess-  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector Rational)))+  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VPoly Rational)))   ]+#else+gcdDomainTests = []+#endif  euclideanTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes euclideanTests =-  [ myEuclideanLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector (Mod 3))))-  , myEuclideanLaws (Proxy :: Proxy (ShortPoly (Poly V.Vector Rational)))+  [ myEuclideanLaws (Proxy :: Proxy (ShortPoly (UPoly (Mod 3))))+  , myEuclideanLaws (Proxy :: Proxy (ShortPoly (VPoly Rational)))   ]+#else+euclideanTests = []+#endif  isListTests :: [TestTree] isListTests =-  [ myIsListLaws (Proxy :: Proxy (Poly U.Vector ()))-  , myIsListLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myIsListLaws (Proxy :: Proxy (Poly V.Vector Integer))+  [ myIsListLaws (Proxy :: Proxy (UPoly ()))+  , myIsListLaws (Proxy :: Proxy (UPoly Int8))+  , myIsListLaws (Proxy :: Proxy (VPoly Integer))   , tenTimesLess-  $ myIsListLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  $ myIsListLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]  showTests :: [TestTree] showTests =-  [ myShowLaws (Proxy :: Proxy (Poly U.Vector ()))-  , myShowLaws (Proxy :: Proxy (Poly U.Vector Int8))-  , myShowLaws (Proxy :: Proxy (Poly V.Vector Integer))+  [ myShowLaws (Proxy :: Proxy (UPoly ()))+  , myShowLaws (Proxy :: Proxy (UPoly Int8))+  , myShowLaws (Proxy :: Proxy (VPoly Integer))   , tenTimesLess-  $ myShowLaws (Proxy :: Proxy (Poly U.Vector (Quaternion Int)))+  $ myShowLaws (Proxy :: Proxy (UPoly (Quaternion Int)))   ]  arithmeticTests :: TestTree@@ -125,6 +133,9 @@     testProperty "multiplication matches reference" $     \(xs :: [(Word, Int)]) ys -> toPoly (V.fromList (mulRef xs ys)) ===       toPoly (V.fromList xs) * toPoly (V.fromList ys)+  , tenTimesLess $+    testProperty "quotRemFractional matches quotRem" $+    \(xs :: VPoly Rational) ys -> ys /= 0 ==> quotRemFractional xs ys === quotRem xs ys   ]  addRef :: Num a => [(Word, a)] -> [(Word, a)] -> [(Word, a)]@@ -173,37 +184,51 @@   , tenTimesLess $     testProperty "scale matches multiplication by monomial" $     \p c (xs :: UPoly a) -> scale p c xs === monomial p c * xs+  , tenTimesLess $+    testProperty "scale' matches multiplication by monomial'" $+    \p c (xs :: UPoly a) -> S.scale p c xs === S.monomial p c * xs   ]  monomialRef :: Num a => Word -> a -> [(Word, a)] monomialRef p c = [(p, c)] +divideByZeroTests :: TestTree+divideByZeroTests = testGroup "divideByZero"+  [ testProperty "quotRem" $ testProp ((uncurry (+) .) . quotRem)+  , testProperty "quot"    $ testProp quot+  , testProperty "rem"     $ testProp rem+  , testProperty "divide"  $ testProp divide+  , testProperty "degree"  $ once $ degree (0 :: VPoly Rational) === 0+  ]+  where+    testProp f xs = ioProperty ((== Left DivideByZero) <$> try (evaluate (xs `f` (0 :: VPoly Rational))))+ evalTests :: TestTree evalTests = testGroup "eval" $ concat-  [ evalTestGroup  (Proxy :: Proxy (Poly U.Vector Int8))-  , evalTestGroup  (Proxy :: Proxy (Poly V.Vector Integer))-  , substTestGroup (Proxy :: Proxy (Poly U.Vector Int8))+  [ evalTestGroup  (Proxy :: Proxy (UPoly Int8))+  , evalTestGroup  (Proxy :: Proxy (VPoly Integer))+  , substTestGroup (Proxy :: Proxy (UPoly Int8))   ]  evalTestGroup   :: forall v a.-     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (Word, a)), Show (v (Word, a)), G.Vector v (Word, a))+     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (Word, a)), Show (v (Word, a)), G.Vector v (Word, a), G.Vector v (SU.Vector 1 Word, a))   => Proxy (Poly v a)   -> [TestTree] evalTestGroup _ =   [ testProperty "eval (p + q) r = eval p r + eval q r" $-    \p q r -> e (p + q) r === e p r + e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p + q) r === e p r + e q r   , testProperty "eval (p * q) r = eval p r * eval q r" $-    \p q r -> e (p * q) r === e p r * e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p * q) r === e p r * e q r   , testProperty "eval x p = p" $     \p -> e X p === p   , testProperty "eval (monomial 0 c) p = c" $     \c p -> e (monomial 0 c) p === c    , testProperty "eval' (p + q) r = eval' p r + eval' q r" $-    \p q r -> e' (p + q) r === e' p r + e' q r+    \(ShortPoly p) (ShortPoly q) r -> e' (p + q) r === e' p r + e' q r   , testProperty "eval' (p * q) r = eval' p r * eval' q r" $-    \p q r -> e' (p * q) r === e' p r * e' q r+    \(ShortPoly p) (ShortPoly q) r -> e' (p * q) r === e' p r * e' q r   , testProperty "eval' x p = p" $     \p -> e' S.X p === p   , testProperty "eval' (S.monomial 0 c) p = c" $@@ -218,7 +243,7 @@  substTestGroup   :: forall v a.-     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (Word, a)), Show (v (Word, a)), G.Vector v (Word, a))+     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (SU.Vector 1 Word, a)), Show (v (SU.Vector 1 Word, a)), G.Vector v (Word, a), G.Vector v (SU.Vector 1 Word, a))   => Proxy (Poly v a)   -> [TestTree] substTestGroup _ =@@ -240,20 +265,45 @@ derivTests :: TestTree derivTests = testGroup "deriv"   [ testProperty "deriv = S.deriv" $-    \(p :: Poly V.Vector Integer) -> deriv p === S.deriv p+    \(p :: VPoly Integer) -> deriv p === S.deriv p   , testProperty "integral = S.integral" $-    \(p :: Poly V.Vector Rational) -> integral p === S.integral p+    \(p :: VPoly Rational) -> integral p === S.integral p   , testProperty "deriv . integral = id" $-    \(p :: Poly V.Vector Rational) -> deriv (integral p) === p+    \(p :: VPoly Rational) -> deriv (integral p) === p   , testProperty "deriv c = 0" $-    \c -> deriv (monomial 0 c :: Poly V.Vector Int) === 0+    \c -> deriv (monomial 0 c :: UPoly Int) === 0   , testProperty "deriv cX = c" $-    \c -> deriv (monomial 0 c * X :: Poly V.Vector Int) === monomial 0 c+    \c -> deriv (monomial 0 c * X :: UPoly Int) === monomial 0 c   , testProperty "deriv (p + q) = deriv p + deriv q" $-    \p q -> deriv (p + q) === (deriv p + deriv q :: Poly V.Vector Int)+    \p q -> deriv (p + q) === (deriv p + deriv q :: UPoly Int)   , testProperty "deriv (p * q) = p * deriv q + q * deriv p" $-    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: Poly V.Vector Int)-  -- , testProperty "deriv (subst p q) = deriv q * subst (deriv p) q" $-  --   \(p :: Poly V.Vector Int) (q :: Poly U.Vector Int) ->-  --     deriv (subst p q) === deriv q * subst (deriv p) q+    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: UPoly Int)+  ]++patternTests :: TestTree+patternTests = testGroup "pattern"+  [ testProperty "X  :: UPoly Int" $ once $+    case (monomial 1 1 :: UPoly Int) of X -> True; _ -> False+  , testProperty "X  :: UPoly Int" $ once $+    (X :: UPoly Int) === monomial 1 1+  , testProperty "X' :: UPoly Int" $ once $+    case (S.monomial 1 1 :: UPoly Int) of S.X -> True; _ -> False+  , testProperty "X' :: UPoly Int" $ once $+    (S.X :: UPoly Int) === S.monomial 1 1+  , testProperty "X' :: UPoly ()" $ once $+    case (zero :: UPoly ()) of S.X -> True; _ -> False+  , testProperty "X' :: UPoly ()" $ once $+    (S.X :: UPoly ()) === zero+  ]++conversionTests :: TestTree+conversionTests = testGroup "conversions"+  [ testProperty "denseToSparse . sparseToDense = id" $+    \(xs :: UPoly Int8) -> xs === denseToSparse (sparseToDense xs)+  , testProperty "denseToSparse' . sparseToDense' = id" $+    \(xs :: UPoly Int8) -> xs === S.denseToSparse (S.sparseToDense xs)+  , testProperty "toPoly . unPoly = id" $+    \(xs :: UPoly Int8) -> xs === toPoly (unPoly xs)+  , testProperty "S.toPoly . S.unPoly = id" $+    \(xs :: UPoly Int8) -> xs === S.toPoly (S.unPoly xs)   ]
test/SparseLaurent.hs view
@@ -1,103 +1,105 @@+{-# LANGUAGE CPP                        #-}+{-# LANGUAGE DataKinds                  #-} {-# LANGUAGE FlexibleContexts           #-} {-# LANGUAGE FlexibleInstances          #-}-{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE ScopedTypeVariables        #-} {-# LANGUAGE UndecidableInstances       #-} -{-# OPTIONS_GHC -fno-warn-orphans #-}- module SparseLaurent   ( testSuite   ) where -import Prelude hiding (gcd, quotRem, rem)-import Data.Euclidean (Euclidean(..), GcdDomain(..), Field)+import Prelude hiding (gcd, quotRem, quot, rem)+import Control.Exception+import Data.Euclidean (GcdDomain(..), Field) import Data.Int import qualified Data.Poly.Sparse import Data.Poly.Sparse.Laurent import Data.Proxy import Data.Semiring (Semiring(..))-import qualified Data.Vector as V import qualified Data.Vector.Generic as G import qualified Data.Vector.Unboxed as U+import qualified Data.Vector.Unboxed.Sized as SU import Test.Tasty import Test.Tasty.QuickCheck hiding (scale, numTests)  import Quaternion-import Sparse (ShortPoly(..)) import TestUtils -instance (Eq a, Semiring a, Arbitrary a, G.Vector v (Word, a)) => Arbitrary (Laurent v a) where-  arbitrary = toLaurent <$> ((`rem` 10) <$> arbitrary) <*> arbitrary-  shrink = fmap (uncurry toLaurent) . shrink . unLaurent--newtype ShortLaurent a = ShortLaurent { unShortLaurent :: a }-  deriving (Eq, Show, Semiring, GcdDomain)--instance (Eq a, Semiring a, Arbitrary a, G.Vector v (Word, a)) => Arbitrary (ShortLaurent (Laurent v a)) where-  arbitrary = (ShortLaurent .) . toLaurent <$> ((`rem` 10) <$> arbitrary) <*> (unShortPoly <$> arbitrary)-  shrink = fmap (ShortLaurent . uncurry toLaurent . fmap unShortPoly) . shrink . fmap ShortPoly . unLaurent . unShortLaurent- testSuite :: TestTree testSuite = testGroup "SparseLaurent"-    [ otherTests-    , lawsTests-    , evalTests-    , derivTests-    ]+  [ otherTests+  , divideByZeroTests+  , lawsTests+  , evalTests+  , derivTests+  , patternTests+  ]  lawsTests :: TestTree lawsTests = testGroup "Laws"   $ semiringTests ++ ringTests ++ numTests ++ gcdDomainTests ++ isListTests ++ showTests  semiringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes semiringTests =-  [ mySemiringLaws (Proxy :: Proxy (Laurent U.Vector ()))-  , mySemiringLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , mySemiringLaws (Proxy :: Proxy (Laurent V.Vector Integer))+  [ mySemiringLaws (Proxy :: Proxy (ULaurent ()))+  , mySemiringLaws (Proxy :: Proxy (ULaurent Int8))+  , mySemiringLaws (Proxy :: Proxy (VLaurent Integer))   , tenTimesLess-  $ mySemiringLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  $ mySemiringLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]+#else+semiringTests = []+#endif  ringTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes ringTests =-  [ myRingLaws (Proxy :: Proxy (Laurent U.Vector ()))-  , myRingLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , myRingLaws (Proxy :: Proxy (Laurent V.Vector Integer))-  , myRingLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  [ myRingLaws (Proxy :: Proxy (ULaurent ()))+  , myRingLaws (Proxy :: Proxy (ULaurent Int8))+  , myRingLaws (Proxy :: Proxy (VLaurent Integer))+  , myRingLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]+#else+ringTests = []+#endif  numTests :: [TestTree] numTests =-  [ myNumLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , myNumLaws (Proxy :: Proxy (Laurent V.Vector Integer))+  [ myNumLaws (Proxy :: Proxy (ULaurent Int8))+  , myNumLaws (Proxy :: Proxy (VLaurent Integer))   , tenTimesLess-  $ myNumLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  $ myNumLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]  gcdDomainTests :: [TestTree]+#ifdef MIN_VERSION_quickcheck_classes gcdDomainTests =-  [ myGcdDomainLaws (Proxy :: Proxy (ShortLaurent (Laurent V.Vector Integer)))+  [ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VLaurent Integer)))   , tenTimesLess-  $ myGcdDomainLaws (Proxy :: Proxy (ShortLaurent (Laurent V.Vector Rational)))+  $ myGcdDomainLaws (Proxy :: Proxy (ShortPoly (VLaurent Rational)))   ]+#else+gcdDomainTests = []+#endif  isListTests :: [TestTree] isListTests =-  [ myIsListLaws (Proxy :: Proxy (Laurent U.Vector ()))-  , myIsListLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , myIsListLaws (Proxy :: Proxy (Laurent V.Vector Integer))+  [ myIsListLaws (Proxy :: Proxy (ULaurent ()))+  , myIsListLaws (Proxy :: Proxy (ULaurent Int8))+  , myIsListLaws (Proxy :: Proxy (VLaurent Integer))   , tenTimesLess-  $ myIsListLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  $ myIsListLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]  showTests :: [TestTree] showTests =-  [ myShowLaws (Proxy :: Proxy (Laurent U.Vector ()))-  , myShowLaws (Proxy :: Proxy (Laurent U.Vector Int8))-  , myShowLaws (Proxy :: Proxy (Laurent V.Vector Integer))+  [ myShowLaws (Proxy :: Proxy (ULaurent ()))+  , myShowLaws (Proxy :: Proxy (ULaurent Int8))+  , myShowLaws (Proxy :: Proxy (VLaurent Integer))   , tenTimesLess-  $ myShowLaws (Proxy :: Proxy (Laurent U.Vector (Quaternion Int)))+  $ myShowLaws (Proxy :: Proxy (ULaurent (Quaternion Int)))   ]  otherTests :: TestTree@@ -119,24 +121,34 @@   , tenTimesLess $     testProperty "scale matches multiplication by monomial" $     \p c (xs :: ULaurent a) -> scale p c xs === monomial p c * xs+  , tenTimesLess $+    testProperty "toLaurent . unLaurent" $+    \(xs :: ULaurent a) -> uncurry toLaurent (unLaurent xs) === xs   ] +divideByZeroTests :: TestTree+divideByZeroTests = testGroup "divideByZero"+  [ testProperty "divide"  $ testProp divide+  ]+  where+    testProp f xs = ioProperty ((== Left DivideByZero) <$> try (evaluate (xs `f` (0 :: VLaurent Rational))))+ evalTests :: TestTree evalTests = testGroup "eval" $ concat-  [ evalTestGroup  (Proxy :: Proxy (Laurent V.Vector Rational))-  , substTestGroup (Proxy :: Proxy (Laurent U.Vector Int8))+  [ evalTestGroup  (Proxy :: Proxy (VLaurent Rational))+  , substTestGroup (Proxy :: Proxy (ULaurent Int8))   ]  evalTestGroup   :: forall v a.-     (Eq a, Field a, Arbitrary a, Show a, Eq (v (Word, a)), Show (v (Word, a)), G.Vector v (Word, a))+     (Eq a, Field a, Arbitrary a, Show a, Eq (v (Word, a)), Show (v (Word, a)), G.Vector v (Word, a), G.Vector v (SU.Vector 1 Word, a))   => Proxy (Laurent v a)   -> [TestTree] evalTestGroup _ =   [ testProperty "eval (p + q) r = eval p r + eval q r" $-    \p q r -> e (p `plus` q) r === e p r `plus` e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p `plus` q) r === e p r `plus` e q r   , testProperty "eval (p * q) r = eval p r * eval q r" $-    \p q r -> e (p `times` q) r === e p r `times` e q r+    \(ShortPoly p) (ShortPoly q) r -> e (p `times` q) r === e p r `times` e q r   , testProperty "eval x p = p" $     \p -> e X p === p   , testProperty "eval (monomial 0 c) p = c" $@@ -148,7 +160,7 @@  substTestGroup   :: forall v a.-     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (Word, a)), Show (v (Word, a)), G.Vector v (Word, a))+     (Eq a, Num a, Semiring a, Arbitrary a, Show a, Eq (v (SU.Vector 1 Word, a)), Show (v (Word, a)), G.Vector v (Word, a), G.Vector v (SU.Vector 1 Word, a))   => Proxy (Laurent v a)   -> [TestTree] substTestGroup _ =@@ -164,14 +176,31 @@ derivTests :: TestTree derivTests = testGroup "deriv"   [ testProperty "deriv c = 0" $-    \c -> deriv (monomial 0 c :: Laurent V.Vector Int) === 0+    \c -> deriv (monomial 0 c :: ULaurent Int) === 0   , testProperty "deriv cX = c" $-    \c -> deriv (monomial 0 c * X :: Laurent V.Vector Int) === monomial 0 c+    \c -> deriv (monomial 0 c * X :: ULaurent Int) === monomial 0 c   , testProperty "deriv (p + q) = deriv p + deriv q" $-    \p q -> deriv (p + q) === (deriv p + deriv q :: Laurent V.Vector Int)+    \p q -> deriv (p + q) === (deriv p + deriv q :: ULaurent Int)   , testProperty "deriv (p * q) = p * deriv q + q * deriv p" $-    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: Laurent V.Vector Int)-  -- , testProperty "deriv (subst p q) = deriv q * subst (deriv p) q" $-  --   \(p :: Laurent V.Vector Int) (q :: Laurent U.Vector Int) ->-  --     deriv (subst p q) === deriv q * subst (deriv p) q+    \p q -> deriv (p * q) === (p * deriv q + q * deriv p :: ULaurent Int)+  ]++patternTests :: TestTree+patternTests = testGroup "pattern"+  [ testProperty "X  :: ULaurent Int" $ once $+    case (monomial 1 1 :: ULaurent Int) of X -> True; _ -> False+  , testProperty "X  :: ULaurent Int" $ once $+    (X :: ULaurent Int) === monomial 1 1+  , testProperty "X :: ULaurent ()" $ once $+    case (zero :: ULaurent ()) of X -> True; _ -> False+  , testProperty "X :: ULaurent ()" $ once $+    (X :: ULaurent ()) === zero+  , testProperty "X^-k" $+    \(NonNegative j) k -> ((X^j)^-k :: ULaurent Int) === monomial (- j * k) 1+  , testProperty "^-" $+    \(p :: ULaurent Int) (NonNegative k) -> ioProperty $ do+      et <- try (evaluate (p^-k)) :: IO (Either PatternMatchFail (ULaurent Int))+      pure $ case et of+        Left{}  -> True+        Right t -> p^k * t == one   ]
test/TestUtils.hs view
@@ -1,46 +1,115 @@-{-# LANGUAGE CPP              #-}-{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE CPP                        #-}+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE FlexibleContexts           #-}+{-# LANGUAGE FlexibleInstances          #-}+{-# LANGUAGE GeneralizedNewtypeDeriving #-}+{-# LANGUAGE ScopedTypeVariables        #-}+{-# LANGUAGE UndecidableInstances       #-}  {-# OPTIONS_GHC -fno-warn-orphans #-}  module TestUtils-  ( tenTimesLess+  ( ShortPoly(..)+  , tenTimesLess+  , myNumLaws+#ifdef MIN_VERSION_quickcheck_classes   , mySemiringLaws   , myRingLaws-  , myNumLaws   , myGcdDomainLaws   , myEuclideanLaws+#endif   , myIsListLaws   , myShowLaws   ) where +import Prelude hiding (lcm, rem) import Data.Euclidean-import Data.Mod+import Data.Mod.Word import Data.Proxy-import Data.Semiring (Semiring, Ring)+import Data.Semiring (Semiring(..), Ring)+import qualified Data.Vector.Generic as G import GHC.Exts-import Test.QuickCheck.Classes+import GHC.TypeNats (KnownNat)+import Test.QuickCheck.Classes.Base import Test.Tasty import Test.Tasty.QuickCheck -#if MIN_VERSION_base(4,10,0)-import GHC.TypeNats (KnownNat)-#else-import GHC.TypeLits (KnownNat)+#ifdef MIN_VERSION_quickcheck_classes+import Test.QuickCheck.Classes #endif +import qualified Data.Poly.Semiring as Dense+import qualified Data.Poly.Laurent as DenseLaurent++#ifdef SupportSparse+import Control.Arrow+import Data.Finite+import qualified Data.Vector.Generic.Sized as SG+import qualified Data.Vector.Unboxed.Sized as SU+import Data.Poly.Multi.Semiring+import qualified Data.Poly.Multi.Laurent as MultiLaurent+#endif++newtype ShortPoly a = ShortPoly { unShortPoly :: a }+  deriving (Eq, Show, Semiring, GcdDomain, Euclidean, Num)+ instance KnownNat m => Arbitrary (Mod m) where   arbitrary = oneof [arbitraryBoundedEnum, fromInteger <$> arbitrary]   shrink = map fromInteger . shrink . toInteger . unMod +instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (Dense.Poly v a) where+  arbitrary = Dense.toPoly . G.fromList <$> arbitrary+  shrink = fmap (Dense.toPoly . G.fromList) . shrink . G.toList . Dense.unPoly++instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (ShortPoly (Dense.Poly v a)) where+  arbitrary = ShortPoly . Dense.toPoly . G.fromList . (\xs -> take (length xs `mod` 10) xs) <$> arbitrary+  shrink = fmap (ShortPoly . Dense.toPoly . G.fromList) . shrink . G.toList . Dense.unPoly . unShortPoly++instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (DenseLaurent.Laurent v a) where+  arbitrary = DenseLaurent.toLaurent <$> ((`rem` 10) <$> arbitrary) <*> arbitrary+  shrink = fmap (uncurry DenseLaurent.toLaurent) . shrink . DenseLaurent.unLaurent++instance (Eq a, Semiring a, Arbitrary a, G.Vector v a) => Arbitrary (ShortPoly (DenseLaurent.Laurent v a)) where+  arbitrary = (ShortPoly .) . DenseLaurent.toLaurent <$> ((`rem` 10) <$> arbitrary) <*> (unShortPoly <$> arbitrary)+  shrink = fmap (ShortPoly . uncurry DenseLaurent.toLaurent . fmap unShortPoly) . shrink . fmap ShortPoly . DenseLaurent.unLaurent . unShortPoly++#ifdef SupportSparse++instance KnownNat n => Arbitrary (Finite n) where+  arbitrary = elements finites++instance (Arbitrary a, KnownNat n, G.Vector v a) => Arbitrary (SG.Vector v n a) where+  arbitrary = SG.replicateM arbitrary+  shrink vs = [ vs SG.// [(i, x)] | i <- finites, x <- shrink (SG.index vs i) ]++instance (Eq a, Semiring a, Arbitrary a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Arbitrary (MultiPoly v n a) where+  arbitrary = toMultiPoly . G.fromList <$> arbitrary+  shrink = fmap (toMultiPoly . G.fromList) . shrink . G.toList . unMultiPoly++instance (Eq a, Semiring a, Arbitrary a, KnownNat n, G.Vector v (SU.Vector n Word, a)) => Arbitrary (ShortPoly (MultiPoly v n a)) where+  arbitrary = ShortPoly . toMultiPoly . G.fromList . (\xs -> take (length xs `mod` 4) (map (first (SU.map (`mod` 3))) xs)) <$> arbitrary+  shrink = fmap (ShortPoly . toMultiPoly . G.fromList) . shrink . G.toList . unMultiPoly . unShortPoly++instance (Eq a, Semiring a, Arbitrary a, KnownNat n, G.Vector v (Word, a), G.Vector v (SU.Vector n Word, a)) => Arbitrary (MultiLaurent.MultiLaurent v n a) where+  arbitrary = MultiLaurent.toMultiLaurent <$> (SU.map (`rem` 10) <$> arbitrary) <*> arbitrary+  shrink = fmap (uncurry MultiLaurent.toMultiLaurent) . shrink . MultiLaurent.unMultiLaurent++instance (Eq a, Semiring a, Arbitrary a, KnownNat n, G.Vector v (Word, a), G.Vector v (SU.Vector n Word, a)) => Arbitrary (ShortPoly (MultiLaurent.MultiLaurent v n a)) where+  arbitrary = (ShortPoly .) . MultiLaurent.toMultiLaurent <$> (SU.map (`rem` 10) <$> arbitrary) <*> (unShortPoly <$> arbitrary)+  shrink = fmap (ShortPoly . uncurry MultiLaurent.toMultiLaurent . fmap unShortPoly) . shrink . fmap ShortPoly . MultiLaurent.unMultiLaurent . unShortPoly++#endif++-------------------------------------------------------------------------------+ tenTimesLess :: TestTree -> TestTree tenTimesLess = adjustOption $   \(QuickCheckTests n) -> QuickCheckTests (max 100 (n `div` 10)) -mySemiringLaws :: (Eq a, Semiring a, Arbitrary a, Show a) => Proxy a -> TestTree-mySemiringLaws proxy = testGroup tpclss $ map tune props+myNumLaws :: (Eq a, Num a, Arbitrary a, Show a) => Proxy a -> TestTree+myNumLaws proxy = testGroup tpclss $ map tune props   where-    Laws tpclss props = semiringLaws proxy+    Laws tpclss props = numLaws proxy      tune pair = case fst pair of       "Multiplicative Associativity" ->@@ -49,19 +118,18 @@         tenTimesLess test       "Multiplication Right Distributes Over Addition" ->         tenTimesLess test+      "Subtraction" ->+        tenTimesLess test       _ -> test       where         test = uncurry testProperty pair -myRingLaws :: (Eq a, Ring a, Arbitrary a, Show a) => Proxy a -> TestTree-myRingLaws proxy = testGroup tpclss $ map (uncurry testProperty) props-  where-    Laws tpclss props = ringLaws proxy+#ifdef MIN_VERSION_quickcheck_classes -myNumLaws :: (Eq a, Num a, Arbitrary a, Show a) => Proxy a -> TestTree-myNumLaws proxy = testGroup tpclss $ map tune props+mySemiringLaws :: (Eq a, Semiring a, Arbitrary a, Show a) => Proxy a -> TestTree+mySemiringLaws proxy = testGroup tpclss $ map tune props   where-    Laws tpclss props = numLaws proxy+    Laws tpclss props = semiringLaws proxy      tune pair = case fst pair of       "Multiplicative Associativity" ->@@ -70,15 +138,18 @@         tenTimesLess test       "Multiplication Right Distributes Over Addition" ->         tenTimesLess test-      "Subtraction" ->-        tenTimesLess test       _ -> test       where         test = uncurry testProperty pair -myGcdDomainLaws :: (Eq a, GcdDomain a, Arbitrary a, Show a) => Proxy a -> TestTree-myGcdDomainLaws proxy = testGroup tpclss $ map tune props+myRingLaws :: (Eq a, Ring a, Arbitrary a, Show a) => Proxy a -> TestTree+myRingLaws proxy = testGroup tpclss $ map (uncurry testProperty) props   where+    Laws tpclss props = ringLaws proxy++myGcdDomainLaws :: forall a. (Eq a, GcdDomain a, Arbitrary a, Show a) => Proxy a -> TestTree+myGcdDomainLaws proxy = testGroup tpclss $ map tune $ lcm0 : props+  where     Laws tpclss props = gcdDomainLaws proxy      tune pair = case fst pair of@@ -91,10 +162,14 @@       where         test = uncurry testProperty pair +    lcm0 = ("lcm0", property $ \(x :: a) -> lcm x zero === zero .&&. lcm zero x === zero)+ myEuclideanLaws :: (Eq a, Euclidean a, Arbitrary a, Show a) => Proxy a -> TestTree myEuclideanLaws proxy = testGroup tpclss $ map (uncurry testProperty) props   where     Laws tpclss props = euclideanLaws proxy++#endif  myIsListLaws :: (Eq a, IsList a, Arbitrary a, Show a, Show (Item a), Arbitrary (Item a)) => Proxy a -> TestTree myIsListLaws proxy = testGroup tpclss $ map (uncurry testProperty) props