packages feed

tensort 0.2.0.2 → 0.2.0.3

raw patch · 4 files changed

+12/−6 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -37,3 +37,7 @@ ## 0.2.0.2 -- 2024-06-13  * Cleanup testing and CI++## 0.2.0.3 -- 2024-06-16++* Improve testing compatibility (fix text breaking Stackage build)
README.md view
@@ -9,9 +9,11 @@ prioritize robustness in conditions defined in David H. Ackley's [Beyond Efficiency](https://www.cs.unm.edu/~ackley/be-201301131528.pdf). -Note: This project is still under construction. The Library is -functional but I have yet to add much documentation and benchmarking.-There's likely a lot of room for improvement in the code as well.+Note: This project is still under construction. Everything works and according+to my calculations will perform excellently under Ackley's testing conditions.+Still to add: benchmarking to prove how cool it is, documentation +additions/revisions, memes. There's likely a lot of room for improvement in the+code as well.  ## Table of Contents @@ -22,7 +24,7 @@   - [Why Haskell?](#why-haskell) - [Project structure](#project-structure) - [Algorithms overview](#algorithms-overview)-  - [Tensort](#tensort-1)+  - [Tensort](#tensort)     - [Preface](#preface)     - [Structure](#structure)     - [Algorithm](#algorithm)
tensort.cabal view
@@ -20,7 +20,7 @@ -- PVP summary:     +-+------- breaking API changes --                  | | +----- non-breaking API additions --                  | | | +--- code changes with no API change-version:            0.2.0.2+version:            0.2.0.3  tested-with:        GHC==9.8.2,                      GHC==9.6.4, 
test/TestCheck.hs view
@@ -17,7 +17,7 @@ --   ...exit with failure check :: (Testable prop) => prop -> IO () check prop = do-  result <- quickCheckResult (withDiscardRatio 2000 prop)+  result <- quickCheckWithResult stdArgs {maxDiscardRatio = 2000} prop   unless (isPass result) exitFailure  -- | Returns True if a test passes, and False otherwise