Add proof by evaluation examples
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c22bd8b6ed
commit
71d76a891c
1 changed files with 6 additions and 0 deletions
6
examples/lean/ex4.lean
Normal file
6
examples/lean/ex4.lean
Normal file
|
@ -0,0 +1,6 @@
|
|||
Definition a : Nat := 10
|
||||
(* Trivial indicates a "proof by evaluation" *)
|
||||
Theorem T1 : a > 0 := Trivial
|
||||
Theorem T2 : a - 5 > 3 := Trivial
|
||||
(* The next one fails *)
|
||||
Theorem T3- : a > 11 := Trivial
|
Loading…
Reference in a new issue