annotate paper/tex/hoare.tex @ 3:959f4b34d6f4

add final thesis
author soto
date Tue, 09 Feb 2021 18:44:53 +0900
parents
children bf1f62556b81
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
1 \chapter{Hoare Logic}
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
2
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
3 \section{Hoare Logic}
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
4 Hoare Logic\ref{hoare} とは C.A.R Hoare、
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
5 R.W Floyd が考案したプログラムの検証の手法である。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
6 これは、「プログラムの事前条件(P)が成立しているとき、コマンド(C)実行して停止すると事後条件(Q)が成り立つ」
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
7 というもので、CbCの実行を継続するという性質に非常に相性が良い。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
8 Hoare Logic を表記すると以下のようになる。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
9 $$ \{P\}\ C \ \{Q\} $$
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
10 この3つ組は Hoare Triple と呼ばれる。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
11
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
12 Hoare Triple の事後条件を受け取り、
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
13 異なる条件を返す別の Hoare Triple を繋げることでプログラムを記述していく。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
14
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
15 Hoare Logic の検証では、
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
16 「条件がすべて正しく接続されている」かつ「コマンドが停止する」ことが必要である。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
17 これらを満たし、
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
18 事前条件から事後条件を導けることを検証することで Hoare Logic の健全性を示すことができる。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
19
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
20 \section{Hoare による Code Gear の検証 }
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
21
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
22 \figref{hoare}が agda にて Hoare Logic を用いて Code Gear を検証する際の流れになる。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
23 input DataGear が Hoare Logic上の Pre Condition(事前条件)となり、
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
24 output DataGear が Post Conditionとなる。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
25 各DataGear が Pre / Post Condition を満たしているかの検証は、
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
26 各 Condition を Meta DataGear で定義し、
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
27 条件を満たしているのかをMeta CodeGear で検証する。
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
28
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
29 \begin{center}
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
30 \includegraphics[height=3.4cm]{pic/hoare_cg_dg.pdf}
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
31 %\caption{CodeGear、DataGear での Hoare Logic}
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
32 \label{hoare}
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
33 \end{center}
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
34
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
35
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
36