We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example problem:
val _ = Hol_datatype `ptree = Leaf of 'ts | Node of 'nts => ptree list` val ptsize_def = Define` (ptsize (Leaf t) = 1) /\ (ptsize (Node nt ps) = ptsizel ps + 1) /\ (ptsizel [] = 0) /\ (ptsizel (p::ps) = ptsize p + ptsizel ps) ` val ptsize_gt0 = prove( ``!t. 0 < ptsize t``, Induct_on `t` (* raises exception *) );
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered:
Clean quotient examples: now use core Mutual lib, rather than own copy
0d99413
This is a start, of sorts, on having a go at github issue #10
mn200
No branches or pull requests
Example problem:
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: