cyp (short for "Check Your Proof") verifies proofs about Haskell-like programs. It is designed as an teaching aid for undergraduate courses in functional programming.
The implemented logic is untyped higher-order equational logic, but without lambda expressions. In addition, structural induction over datatypes is supported.
The terms follow standard Haskell-syntax and the background theory can be constructed from datatype declarations, function definitions and arbitrary equations.
The use of this tool to verify Haskell functions is justified by the following considerations:
- Fast and Loose Reasoning is Morally Correct.
- We convinced ourselves that for a type-correct background-theory and a type-correct proposition a proof exists if and only if a type-correct proof exists. A formal proof is still missing. Here, type-correct is meant in the sense of Haskell's type system, but without type-classes.
Extract the program to some directory and run
$ cabal update
$ cabal sandbox init
$ cabal install --only-dependencies --enable-tests
$ cabal build
This produces a binary cyp
in the dist/build/cyp
folder. You can then check a proof by running
cyp <background.cthy> <proof.cprf>
where <background.cthy>
defines the program and available lemmas and <proof.cprf>
contains the proof to be checked.
You may also use Stack to build the tool.
The source code for cyp also contains some example theories and proofs (look for the files in test-data/pos
).
A proof file can contain an arbitrary number of lemmas. Proofs of later lemmas can use the the previously proven lemmas. Each lemma starts with stating the equation to be proved:
Lemma: <lhs> .=. <rhs>
where <lhs>
and <rhs>
are arbitrary Haskell expressions. cyp supports plain equational proofs as well as proofs by (structural induction). A equational proof is introduced by the
Proof
keyword and followed by one or two lists of equations:
<term a1>
(by ) .=. . . . (by ) .=.
<term b1>
(by ) .=. . . . (by ) .=.
Each term must be given on a separate line and be indented by at least one space. If two lists are given, they are handled as if the second list was reversed and appended to the first. An equational proof is accepted if
- The first term is equal to
<lhs>
and the last term is equal to<rhs>
- All steps in the equation list are valid. A step
<term a> .=. <term b>
is valid if<term a>
can be rewritten to<term b>
(or vice versa) by applying a single equation (either from the background-theory or from one of the previously proven lemmas).
The proof is then concluded by
QED
An induction proof is introduced by the line
Proof by induction on <type> <var>
where <var>
is the Variable on which we want to perform induction on <type>
is the name of the datatype this variable has. Then, for each constructor <con>
of <type>
, there must be a line
Case <con>
followed by a list of equations, like for an equational proof. Again, the proof is concluded by:
QED
- There is no check that the functions defined in the background theory terminate (on finite inputs). The focus of this tool is checking the proofs of students against some known-to-be-good background theory.