annotate paper/src/term3.agda @ 19:046b2b20d6c7 default tip

fix
author ryokka
date Mon, 09 Mar 2020 11:25:49 +0900
parents c7acb9211784
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
1 lemma1 : {c10 :ℕ} → Axiom (stmt1Cond {c10}) (λ env → record { varn = varn env ; vari = 0 }) (stmt2Cond {c\
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
2 10})
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
3 lemma1 {c10} env = impl⇒ ( λ cond → let open ≡-Reasoning in
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
4 begin
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
5 (Equal (varn env) c10 ) ∧ true
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
6 ≡⟨ ∧true ⟩
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
7 Equal (varn env) c10
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
8 ≡⟨ cond ⟩
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
9 true
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
10 ∎ )