Skip to content

Commit

Permalink
Initial move from the private to public repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Austin committed Feb 17, 2015
1 parent 61f3dff commit 05922e0
Show file tree
Hide file tree
Showing 58 changed files with 8,705 additions and 0 deletions.
91 changes: 91 additions & 0 deletions HaskHOL-Math.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: haskhol-math
version: 0.0.1
synopsis: HaskHOL libraries for mathematical and structural reasoning.
description: More details can be found at the following page:
http://haskhol.org.
license: BSD3
license-file: LICENSE
author: Evan Austin <[email protected]>
maintainer: Evan Austin <[email protected]>
category: Theorem Provers
cabal-version: >=1.18
build-type: Simple
stability: experimental
homepage: http://haskhol.org

library
default-language: Haskell2010
default-extensions: ConstraintKinds, DeriveDataTypeable, OverloadedStrings,
QuasiQuotes, TemplateHaskell, TypeFamilies
build-depends: base >=4.7
, template-haskell >=2.9
, parsec >=3.1
, pretty >=1.1
, vector >= 0.10
, haskhol-core >=1.1
, haskhol-deductive >=0.1

exposed-modules:
HaskHOL.Math
HaskHOL.Lib.Pair
HaskHOL.Lib.Nums
HaskHOL.Lib.Recursion
HaskHOL.Lib.Arith
HaskHOL.Lib.WF
HaskHOL.Lib.CalcNum
HaskHOL.Lib.Normalizer
HaskHOL.Lib.Grobner
HaskHOL.Lib.IndTypes
HaskHOL.Lib.Lists
exposed: True
buildable: True
hs-source-dirs: src
other-modules:
HaskHOL.Lib.Pair.A
HaskHOL.Lib.Pair.A.Base
HaskHOL.Lib.Pair.A.Context
HaskHOL.Lib.Pair.B
HaskHOL.Lib.Pair.B.Base
HaskHOL.Lib.Pair.B.Context
HaskHOL.Lib.Pair.C
HaskHOL.Lib.Pair.C.Base
HaskHOL.Lib.Pair.C.Context
HaskHOL.Lib.Pair.Base
HaskHOL.Lib.Pair.Context
HaskHOL.Lib.Nums.A
HaskHOL.Lib.Nums.A.Base
HaskHOL.Lib.Nums.A.Context
HaskHOL.Lib.Nums.B
HaskHOL.Lib.Nums.B.Base
HaskHOL.Lib.Nums.B.Context
HaskHOL.Lib.Nums.Base
HaskHOL.Lib.Nums.Context
HaskHOL.Lib.Arith.A
HaskHOL.Lib.Arith.A.Base
HaskHOL.Lib.Arith.A.Context
HaskHOL.Lib.Arith.Base
HaskHOL.Lib.Arith.Context
HaskHOL.Lib.WF.Base
HaskHOL.Lib.WF.Context
HaskHOL.Lib.CalcNum.Pre
HaskHOL.Lib.CalcNum.Pre2
HaskHOL.Lib.IndTypes.A
HaskHOL.Lib.IndTypes.A.Base
HaskHOL.Lib.IndTypes.A.Context
HaskHOL.Lib.IndTypes.A.Pre
HaskHOL.Lib.IndTypes.B
HaskHOL.Lib.IndTypes.B.Base
HaskHOL.Lib.IndTypes.B.Context
HaskHOL.Lib.IndTypes.B.Pre
HaskHOL.Lib.IndTypes.Base
HaskHOL.Lib.IndTypes.Context
HaskHOL.Lib.IndTypes.Pre
HaskHOL.Lib.Lists.A
HaskHOL.Lib.Lists.A.Base
HaskHOL.Lib.Lists.A.Context
HaskHOL.Lib.Lists.Base
HaskHOL.Lib.Lists.Context

ghc-prof-options: -prof -fprof-auto
ghc-options: -Wall

24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Copyright (c) 2013, University of Kansas
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.

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.

2 changes: 2 additions & 0 deletions Setup.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain
Loading

0 comments on commit 05922e0

Please sign in to comment.