liquid-parallel (empty) → 3.2.2.0
raw patch · 7 files changed
+79/−0 lines, 7 filesdep +liquid-basedep +liquidhaskelldep +parallelbuild-type:Customsetup-changed
Dependencies added: liquid-base, liquidhaskell, parallel
Files
- LICENSE +30/−0
- Setup.hs +6/−0
- liquid-parallel.cabal +31/−0
- src/Control/Parallel.hs +3/−0
- src/Control/Parallel/Strategies.hs +3/−0
- src/Control/Parallel/Strategies.spec +3/−0
- src/Control/Seq.hs +3/−0
+ LICENSE view
@@ -0,0 +1,30 @@+Copyright (c) 2013-2014, Ranjit Jhala++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.++ * 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.++ * Neither the name of Ranjit Jhala nor the names of other+ contributors may be used to endorse or promote products derived+ from this software without specific prior written permission.++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.
+ Setup.hs view
@@ -0,0 +1,6 @@+module Main where++import Language.Haskell.Liquid.Cabal (liquidHaskellMain)++main :: IO ()+main = liquidHaskellMain
+ liquid-parallel.cabal view
@@ -0,0 +1,31 @@+cabal-version: 1.24+name: liquid-parallel+version: 3.2.2.0+synopsis: LiquidHaskell specs for the parallel package+description: LiquidHaskell specs for the parallel package.+license: BSD3+license-file: LICENSE+copyright: 2010-19 Ranjit Jhala & Niki Vazou & Eric L. Seidel, University of California, San Diego.+author: Ranjit Jhala, Niki Vazou, Eric Seidel+maintainer: Ranjit Jhala <jhala@cs.ucsd.edu>+category: Language+homepage: https://github.com/ucsd-progsys/liquidhaskell+build-type: Custom++data-files: src/Control/Parallel/Strategies.spec++custom-setup+ setup-depends: Cabal, base, liquidhaskell++library+ exposed-modules: Control.Seq+ Control.Parallel+ Control.Parallel.Strategies+ hs-source-dirs: src+ build-depends: liquid-base < 4.15+ , parallel >= 3.2.0.0 && < 3.3+ , liquidhaskell >= 0.8.10.1+ default-language: Haskell2010+ default-extensions: PackageImports+ if impl(ghc >= 8.10)+ ghc-options: -fplugin=LiquidHaskell
+ src/Control/Parallel.hs view
@@ -0,0 +1,3 @@+module Control.Parallel (module Exports) where++import "parallel" Control.Parallel as Exports
+ src/Control/Parallel/Strategies.hs view
@@ -0,0 +1,3 @@+module Control.Parallel.Strategies ( module Exports ) where++import "parallel" Control.Parallel.Strategies as Exports
+ src/Control/Parallel/Strategies.spec view
@@ -0,0 +1,3 @@+module spec Control.Parallel.Strategies where++assume withStrategy :: Control.Parallel.Strategies.Strategy a -> x:a -> {v:a | v == x}
+ src/Control/Seq.hs view
@@ -0,0 +1,3 @@+module Control.Seq (module Exports) where++import "parallel" Control.Seq as Exports