Skip to content
Snippets Groups Projects
Commit 03747b58 authored by hondet's avatar hondet
Browse files

Reduction rule in star, variable

parent 18c66708
No related branches found
No related tags found
Loading
......@@ -15,5 +15,4 @@ qed
theorem and_elim_1 a b (_: Prf (a ∧ (λ_, b))): Prf a
proof
assume a b h
qed
admit
......@@ -18,11 +18,13 @@ symbol fst {t: Set} (_: El t): El (pull t)
symbol pair' (t: Set) (_: El (pull t)): El t
definition pair t m (_: Prf (tcc t m)) ≔ pair' t m
rule fst (pair' _ $m) ↪ $m
rule tcc (psub {$t} $a) $x
↪ (tcc $t $x) ∧ (λy: Prf (tcc $t $x), $a (pair $t $x y))
rule pull bool ↪ bool
rule tcc bool $x ↪ true
rule tcc bool _ ↪ true
rule fst {bool} $x ↪ $x
rule pair' bool $x _ ↪ $x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment