speculate: discovery of properties about Haskell functions

[ bsd3, library, testing ] [ Propose Tags ]

Speculate automatically discovers laws about Haskell functions. Give Speculate a bunch of Haskell functions and it will discover laws like:

  • equations, such as 'id x == x';

  • inequalities, such as '0 <= x * x';

  • conditional equations, such as 'x 0 == x + abs x == 0'.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.2.8, 0.2.9, 0.2.10, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.4.1, 0.4.2, 0.4.4, 0.4.6, 0.4.8, 0.4.10, 0.4.12, 0.4.14, 0.4.16, 0.4.18, 0.4.20
Dependencies base (>=4 && <5), cmdargs, containers, leancheck (>=0.6.1) [details]
License BSD-3-Clause
Author Rudy Matela, Colin Runciman
Maintainer Rudy Matela <rudy@matela.com.br>
Category Testing
Home page https://github.com/rudymatela/speculate#readme
Source repo head: git clone https://github.com/rudymatela/speculate
this: git clone https://github.com/rudymatela/speculate(tag v0.2.0)
Uploaded by rudymatela at 2017-03-09T17:37:20Z
Distributions LTSHaskell:0.4.20, NixOS:0.4.20, Stackage:0.4.20
Reverse Dependencies 3 direct, 0 indirect [details]
Downloads 14046 total (91 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-03-09 [all 1 reports]

Readme for speculate-0.2.0

[back to package description]

Speculate

Speculate automatically discovers laws about Haskell functions. Give Speculate a bunch of Haskell functions and it will discover laws like:

  • equations, such as id x == x;
  • inequalities, such as 0 <= x * x;
  • conditional equations, such as x <= 0 ==> x + abs x == 0.

Speculate is similar to, and inspired by, QuickSpec.

Crash Course

Install pre-requisites:

$ cabal install cmdargs
$ cabal install leancheck

Clone and enter the repository:

$ git clone https://github.com/rudymatela/speculate
$ cd speculate

There are some examples in the eg folter. For example eg/plus-abs.hs:

$ cat eg/plus-abs.hs
...
...

Compile and run with:

$ ghc -isrc eg/plus-abs.hs
$ ./eg/plus-abs
...

Installing Speculate

Pre-requisites are cmdargs and leancheck. You can install them with:

$ cabal install cmdargs
$ cabal install leancheck

No cabal package has been made yet. For now, clone the repository with:

$ git clone https://github.com/rudymatela/speculate

and compile programs that use it with:

$ ghc -ipath/to/speculate/src program.hs

Using Speculate

Speculate is used as a library: import it, then call the function speculate with relevant arguments. The following program Speculates about the functions (+) and abs:

import Test.Speculate

main :: IO ()
main = speculate args
  { constants =
      [ showConstant (0::Int)
      , showConstant (1::Int)
      , constant "+"   ((+)  :: Int -> Int -> Int)
      , constant "abs" (abs  :: Int -> Int)
      ]
  }

when run, it prints the following:

_ :: Int  (holes: Int)
0 :: Int
1 :: Int
(+) :: Int -> Int -> Int
abs :: Int -> Int

    abs (abs x) == abs x
          x + 0 == x
          x + y == y + x
    (x + y) + z == x + (y + z)
abs (x + abs x) == x + abs x
  abs x + abs x == abs (x + x)
abs (1 + abs x) == 1 + abs x

x <= abs x
0 <= abs x
x <= x + 1

Now, if we add <= and < as background constants on args

  , constants =
      [ showConstant (0::Int)
      , showConstant (1::Int)
      , constant "+"   ((+)  :: Int -> Int -> Int)
      , constant "abs" (abs  :: Int -> Int)
      , background
      , constant "<="  ((<=) :: Int -> Int -> Bool)
      , constant "<"   ((<)  :: Int -> Int -> Bool)
      ]

then run again, we get the following as well:

    y <= x ==> abs (x + abs y) == x + abs y
    x <= 0 ==>       x + abs x == 0
abs x <= y ==>     abs (x + y) == x + y
abs y <= x ==>     abs (x + y) == x + y

For more examples, see the eg folder.

Similarities and Differences to QuickSpec

Speculate is inspired by QuickSpec. Like QuickSpec, Speculate uses testing to speculate equational laws about given Haskell functions. There are some differences:

Speculate QuickSpec
testing enumerative (LeanCheck) random (QuickCheck)
equational laws yes (after completion) yes (as discovered)
inequational laws yes no
conditional laws yes restricted to a set of predicates
polymorphism no yes
performance slower faster

For most examples, Speculate runs slower than QuickSpec 2 but faster than QuickSpec 1.

More documentation

For more examples, see the eg and bench folders.