annotate paper/src/axiom-taut.agda.replaced @ 2:c7acb9211784

add code, figure. and paper fix content
author ryokka
date Mon, 27 Jan 2020 20:41:36 +0900
parents
children b5fffa8ae875
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 _@$\Rightarrow$@_ : Bool → Bool → Bool
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
2 false @$\Rightarrow$@ _ = true
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
3 true @$\Rightarrow$@ true = true
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
4 true @$\Rightarrow$@ false = false
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
5
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
6 Axiom : Cond @$\rightarrow$@ PrimComm @$\rightarrow$@ Cond @$\rightarrow$@ Set
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
7 Axiom pre comm post = ∀ (env : Env) → (pre env) @$\Rightarrow$@ ( post (comm env)) @$\equiv$@ true
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
8
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
9 Tautology : Cond @$\rightarrow$@ Cond @$\rightarrow$@ Set
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
10 Tautology pre post = ∀ (env : Env) → (pre env) @$\Rightarrow$@ (post env) @$\equiv$@ true