lean2/tests/lean/tst3.lean.expected.out
Leonardo de Moura 2179e57db3 refactor(builtin): move if_then_else to its own module
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-09 14:08:39 -08:00

35 lines
779 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Set: pp::colors
Set: pp::unicode
Imported 'if_then_else'
Notation has been redefined, the existing notation:
notation 60 if _ then _ else _
has been replaced with:
notation 10 if _ then _
because they conflict with each other.
The precedence of 'then' changed from 60 to 10.
notation 10 if _ then _ : implies
if then ⊥
if then (if a then ⊥)
implies (implies a ⊥)
notation 100 _ |- _ ; _ : f
f c d e
c |- d ; e
(c !) !
fact (fact c)
The precedence of ';' changed from 100 to 30.
[ c ; d ]
[ c ; ([ d ; e ]) ]
g c (g d e)
notation 40 _ << _ >> : h
d << e >>
[ c ; d << e >> ]
g c (h d e)
c ** d ++ e ** c
p1 p2 ∧ p3
r (s c d) (s e c)
or p1 (and p2 p3)
c = d d = c
¬ p1 p2
p1 ∧ p3 p2 ∧ p3
or (not p1) p2
or (and p1 p3) (and p2 p3)