matrix-market-attoparsec 0.1.0.4 → 0.1.0.5
raw patch · 5 files changed
+14/−31 lines, 5 filesdep ~scientificPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
Dependency ranges changed: scientific
API changes (from Hackage documentation)
+ Data.Matrix.MatrixMarket: data ImportError
Files
- LICENSE +4/−25
- matrix-market-attoparsec.cabal +3/−3
- src/Control/Exception/Common.hs +2/−1
- src/Data/Matrix/MatrixMarket.hs +3/−1
- src/Data/Matrix/MatrixMarket/Internal.hs +2/−1
LICENSE view
@@ -1,30 +1,9 @@ Copyright Marco Zocca (c) 2017 -All rights reserved.--Redistribution and use in source and binary forms, with or without-modification, are permitted provided that the following conditions are met:-- * Redistributions of source code must retain the above copyright- notice, this list of conditions and the following disclaimer.+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions in binary form must reproduce the above- copyright notice, this list of conditions and the following- disclaimer in the documentation and/or other materials provided- with the distribution.+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Neither the name of Marco Zocca nor the names of other- contributors may be used to endorse or promote products derived- from this software without specific prior written permission.+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
matrix-market-attoparsec.cabal view
@@ -1,9 +1,9 @@ name: matrix-market-attoparsec-version: 0.1.0.4+version: 0.1.0.5 synopsis: Parsing and serialization functions for the NIST Matrix Market format description: Please see README.md homepage: https://github.com/ocramz/matrix-market-attoparsec-license: GPL-3+license: BSD2 license-file: LICENSE author: Marco Zocca maintainer: zocca marco gmail@@ -32,7 +32,7 @@ , base >= 4.7 && < 5 , bytestring >= 0.9 , exceptions- , scientific >= 0.3.4.9+ , scientific >= 0.3.3.8 -- executable matrix-market-attoparsec -- default-language: Haskell2010
src/Control/Exception/Common.hs view
@@ -1,7 +1,8 @@+{-# language DeriveDataTypeable #-} module Control.Exception.Common where import Control.Exception-import Control.Monad.Catch (MonadThrow (..))+-- import Control.Monad.Catch (MonadThrow (..)) import Data.Typeable -- (TypeRep, Typeable, typeRep)
src/Data/Matrix/MatrixMarket.hs view
@@ -29,6 +29,8 @@ -- ** Matrix-related nnz, dim, numDat, -- ** Array-related- dimArr, numDatArr) where+ dimArr, numDatArr,+ -- * Exceptions+ ImportError) where import Data.Matrix.MatrixMarket.Internal as M
src/Data/Matrix/MatrixMarket/Internal.hs view
@@ -22,7 +22,8 @@ Matrix(..), Array(..), Format (Coordinate, Array), Structure (General, Symmetric, Hermitian, Skew), nnz, dim, numDat,- dimArr, numDatArr) where+ dimArr, numDatArr,+ ImportError) where