tropical-geometry 0.0.0 → 0.0.0.1
raw patch · 2 files changed
+108/−93 lines, 2 filesdep ~basedep ~containersdep ~criterionPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, containers, criterion, hlint-test, tasty, tasty-hspec, tasty-hunit
API changes (from Hackage documentation)
Files
- package.yaml +1/−1
- tropical-geometry.cabal +107/−92
package.yaml view
@@ -2,7 +2,7 @@ # Cabal file when you run `stack build`. See the hpack website for help with # this file: <https://github.com/sol/hpack>. name: tropical-geometry-version: '0.0.0'+version: '0.0.0.1' github: "ferynando7/tropical-geometry" license: GPL-3 author: "Fernando Zhapa"
tropical-geometry.cabal view
@@ -1,107 +1,122 @@-cabal-version: >=1.10-name: tropical-geometry-version: 0.0.0-license: GPL-3-license-file: LICENSE-maintainer: Fernando Zhapa-author: Fernando Zhapa-homepage: https://github.com/ferynando7/tropical-geometry#readme-bug-reports: https://github.com/ferynando7/tropical-geometry/issues-synopsis: A Tropical Geometry package for Haskell-description:- This package includes Tropical algebra and geometry stuff such as tropical numbers, tropical matrices, and tropical polynomials. Also you can find here an algorithm to compute tropical hypersurfaces for polynomials in two variables.-category: Algebra, Geometry, Tropical Geometry-build-type: Simple+-- This file has been generated from package.yaml by hpack version 0.28.2.+--+-- see: https://github.com/sol/hpack+--+-- hash: 53dd4a7acd8ade173a39eac25004715c97d5308eda32dd85c431115e6b383c27++name: tropical-geometry+version: 0.0.0.1+synopsis: A Tropical Geometry package for Haskell+homepage: https://github.com/ferynando7/tropical-geometry#readme+bug-reports: https://github.com/ferynando7/tropical-geometry/issues+category: Algebra, Geometry, Tropical Geometry +author: Fernando Zhapa+maintainer: Fernando Zhapa+license: GPL-3+license-file: LICENSE+description: This package includes Tropical algebra and geometry stuff such as tropical numbers, tropical matrices, and tropical polynomials. Also you can find here an algorithm to compute tropical hypersurfaces for polynomials in two variables.+build-type: Simple+cabal-version: >= 1.10 extra-source-files: CHANGELOG.md+-- LICENSE.md package.yaml README.md stack.yaml source-repository head- type: git- location: https://github.com/ferynando7/tropical-geometry+ type: git+ location: https://github.com/ferynando7/tropical-geometry ++ library- exposed-modules:- Polynomial.Monomial- Polynomial.Prelude- Polynomial.Hypersurface- Arithmetic.Numbers- Arithmetic.Matrix- Geometry.ConvexHull2- Geometry.ConvexHull3- Geometry.Polytope- Geometry.Polyhedral- Graphics.Drawings- Core- hs-source-dirs: library- other-modules:- Paths_tropical_geometry- default-language: Haskell2010- ghc-options: -Wall -freverse-errors -ferror-spans- build-depends:- algebra >=4.3.1 && <4.4,- base >=4.11.1.0 && <4.12,- containers >=0.5.11.0 && <0.6,- gloss >=1.12.0.0 && <1.13,- lens >=4.16.1 && <4.17,- matrix >=0.3.6.1 && <0.4,- numeric-prelude >=0.4.3.1 && <0.5,- semiring-simple >=1.0.0.1 && <1.1,- singletons >=2.4.1 && <2.5,- sized >=0.3.0.0 && <0.4,- type-natural >=0.8.2.0 && <0.9+ exposed-modules:+ Polynomial.Monomial+ Polynomial.Prelude+ Polynomial.Hypersurface+ Arithmetic.Numbers+ Arithmetic.Matrix+ Geometry.ConvexHull2+ Geometry.ConvexHull3+ Geometry.Polytope+ Geometry.Polyhedral+ Graphics.Drawings+ Core+ other-modules:+ Paths_tropical_geometry+ hs-source-dirs:+ library+ ghc-options: -Wall+ -freverse-errors+ -ferror-spans+ build-depends:+ algebra >=4.3.1 && <4.4,+ base >=4.11.1.0 && <4.12,+ containers >=0.5.11.0 && <0.6,+ gloss >=1.12.0.0 && <1.13,+ lens >=4.16.1 && <4.17,+ matrix >=0.3.6.1 && <0.4,+ numeric-prelude >=0.4.3.1 && <0.5,+ semiring-simple >=1.0.0.1 && <1.1,+ singletons >=2.4.1 && <2.5,+ sized >=0.3.0.0 && <0.4,+ type-natural >=0.8.2.0 && <0.9+ default-language: Haskell2010 +++ executable tropical-geometry- main-is: Main.hs- hs-source-dirs: executable- other-modules:- Paths_tropical_geometry- default-language: Haskell2010- ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N- -freverse-errors- build-depends:- tropical-geometry -any,- base >=4.11.1.0 && <4.12+ main-is: Main.hs+ other-modules:+ Paths_tropical_geometry+ hs-source-dirs:+ executable+ ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N -freverse-errors+ build-depends:+ tropical-geometry,+ base+ default-language: Haskell2010 test-suite tropical-geometry-test-suite- type: exitcode-stdio-1.0- main-is: Main.hs- hs-source-dirs: test-suite- other-modules:- Paths_tropical_geometry- TPolynomial.TMonomial- TPolynomial.TPrelude- TArithmetic.TMatrix- TArithmetic.TNumbers- TGeometry.TConvexHull2- TGeometry.TConvexHull3- TGeometry.TPolytope- TGeometry.TPolyhedral- TPolynomial.THypersurface- default-language: Haskell2010- ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N- -freverse-errors- build-depends:- tropical-geometry -any,- base >=4.11.1.0 && <4.12,- tasty >=1.1.0.4 && <1.2,- tasty-hspec >=1.1.5.1 && <1.2,- tasty-hunit >=0.10.0.1 && <0.11,- containers >=0.5.11.0 && <0.6,- hlint-test >=0.1.0.0 && <0.2+ type: exitcode-stdio-1.0+ main-is: Main.hs+ other-modules:+ Paths_tropical_geometry+ TPolynomial.TMonomial+ TPolynomial.TPrelude+ TArithmetic.TMatrix+ TArithmetic.TNumbers+ TGeometry.TConvexHull2+ TGeometry.TConvexHull3+ TGeometry.TPolytope+ TGeometry.TPolyhedral+ TPolynomial.THypersurface + hs-source-dirs:+ test-suite+ ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N -freverse-errors+ build-depends:+ tropical-geometry+ , base+ , tasty+ , tasty-hspec+ , tasty-hunit+ , containers+ , hlint-test+ default-language: Haskell2010+ benchmark tropical-geometry-benchmarks- type: exitcode-stdio-1.0- main-is: Main.hs- hs-source-dirs: benchmark- other-modules:- Paths_tropical_geometry- default-language: Haskell2010- ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N- -freverse-errors- build-depends:- tropical-geometry -any,- base >=4.11.1.0 && <4.12,- criterion >=1.4.1.0 && <1.5+ type: exitcode-stdio-1.0+ main-is: Main.hs+ other-modules:+ Paths_tropical_geometry+ hs-source-dirs:+ benchmark+ ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N -freverse-errors+ build-depends:+ tropical-geometry+ , base+ , criterion+ default-language: Haskell2010