Mercurial > hg > Papers > 2018 > nozomi-master
annotate paper/type.tex @ 40:9110813f4f68
Writing typed expression
author | atton <atton@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 28 Jan 2017 17:10:51 +0900 |
parents | 5b1e3b62e6dc |
children | d14c3fa5f3ea |
rev | line source |
---|---|
28 | 1 \chapter{ラムダ計算と型システム} |
2 \label{chapter:type} | |
3 \ref{chapter:cbc} では CbC のモデル検査的検証アプローチとして、akasha を用いた有限の要素数の挿入時の仕様の検証を行なった。 | |
4 しかし、さらに多くの要素を検証したり無限回の挿入を検証するには状態の抽象化や CbC 側に記号実行の機構を組み込んだり証明を行なう必要がある。 | |
5 CbC は直接自身を証明する機構が存在しない。 | |
6 プログラムの性質を証明するには CbC の形式的な定義が必須となる。 | |
7 \ref{chapter:type} 章ではCbC の項の形式的な定義の一つとして、部分型を用いて CbC の CodeSegment と DataSegment が定義できることを示していく。 | |
30
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
8 また、型システムの別の利用方法として命題が型で表現できる Curry-Howard 対応を利用した証明が存在するが、その利用方法については\ref{chapter:agda}章で述べる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
9 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
10 % {{{ 型システムとは |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
11 \section{型システムとは} |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
12 型システムとは、計算する値を分類することにでプログラムがある種の振舞いを行なわないことを保証する機構の事である\cite{Pierce:2002:TPL:509043}\cite{pierce2013型システム入門プログラミング言語と型の理論}。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
13 ある種の振舞いとはプログラム中の評価不可能な式や、言語として未定義な式などが当て嵌まる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
14 例えば、gcc や clang といったコンパイラは関数定義時に指定された引数の型と呼び出し時の値の型が異なる時に警告を出す。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
15 % TODO: C の warning? |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
16 この警告は関数が受けつける範囲以外の値をプログラマが渡してしまった場合などに有効に働く。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
17 加えて、関数を定義する側も受け付ける値の範囲を限定できるため関数内部の処理を記述しやすい。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
18 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
19 型システムで行なえることには以下のようなものが存在する。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
20 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
21 \begin{itemize} |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
22 \item エラーの検出 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
23 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
24 文字列演算を行なう関数に整数を渡してしまったり、データの単位を間違えてしまったり、複雑な場合分けで境界条件を見落すなど、プログラマの不注意が型の不整合となって早期に指摘できる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
25 この指摘できる詳細さは、型システムの表現力とプログラムの内容に依存する。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
26 多用なデータ構造を扱うプログラム(コンパイラのような記号処理アプリケーションなど)は数値計算のような数種類の単純な型しか使わないプログラムよりも型検査器から受けられる恩恵が大きい。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
27 他にも、ある種のプログラムにとっては型は保守のためのツールともなる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
28 複雑なデータ構造を変更する時、その構造に関連するソースコードを型検査器は明らかにしてくれる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
29 |
31 | 30 \item 抽象化 |
30
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
31 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
32 型は大規模プログラムの抽象化の単位にもなる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
33 例えば特定のデータ構造に対する処理をモジュール化し、パッケージングすることができる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
34 モジュール化されたデータ構造は厳格に定義されたインターフェースを経由して呼び出すことになる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
35 このインターフェースは利用する側に取っては呼び出しの規約となり、実装する側にとってはモジュールの要約となる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
36 |
31 | 37 \item ドキュメント化 |
30
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
38 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
39 型はプログラムを理解する際にも有用である。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
40 関数やモジュールの型を確認することにより、どのデータを対象としているのかといった情報が手に入る。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
41 また、型はコンパイラが実行されるために検査されるため、コメントに埋め込まれた情報と異なり常に正しい情報を提供する。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
42 |
31 | 43 \item 言語の安全性 |
30
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
44 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
45 安全性のの定義は言語によって異なるが、型はデータの抽象化によってある種の安全性を確保できる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
46 例えば、プログラマは配列をソートする関数があった場合、与えられた配列のみがソートされ、他のデータには影響が無いことを期待するだろう。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
47 しかし、低水準言語ではメモリを直接扱えるため、予想された処理の範囲を越えてデータを破壊する可能性がある。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
48 より安全な言語ではメモリアクセスが抽象化し、データを破壊する可能性をプログラマに提供しないという選択肢がある。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
49 |
31 | 50 \item 効率性 |
30
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
51 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
52 そもそも、科学計算機における最初の型システムは Fortran などにおける式の区別であった。% TODO ref fortran |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
53 整数の算術式と実数の算術式を区別し、数値計算の効率化を測るために導入されたのである。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
54 型の導入により、コンパイラはプリミティブな演算とは異なる表現を用い、実行コードを生成する時に適切な機械語表現を行なえるようになった。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
55 昨今の高性能コンパイラでは最適化とコード生成のフェーズにおいて型検査器が収集する情報を多く利用している。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
56 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
57 \end{itemize} |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
58 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
59 型システムの定義には多くの定義が存在する。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
60 型の表現能力には単純型や総称型、部分型などが存在し、動的型付けや静的型付けなど、言語によってどの型システムを採用するかは言語の設計に依存する。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
61 例えば C言語では数値と文字を二項演算子 \verb/+/ で加算できるが、Haskell では加算することができない。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
62 これは Haskell が C言語よりも厳密な型システムを採用しているからである。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
63 具体的には Haskell は暗黙的な型変換を許さず、 C 言語は言語仕様として暗黙の型変換を持っている。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
64 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
65 型システムを定義することはプログラミング言語がどのような特徴を持つか決めることにも繋がる。 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
66 |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
67 % }}} |
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
68 |
38 | 69 % {{{ 型無し算術式 |
34 | 70 \section{型無し算術式} |
71 まず、型システムやその性質について述べるためにプログラミング言語そのものの基本的な性質について述べる。 | |
40 | 72 プログラムの構文と意味論、推論について考えるために自然数とブール値のみで構成される小さな言語を扱いながら考察する。 |
34 | 73 この言語は二種類の値しか持たないが、項の帰納的定義や証明、評価、実行時エラーのモデル化を表現することができる。 |
74 | |
75 この言語はブール定数 $ true $ と $ false $ 、条件式、数値定数 0 、算術演算子 $ succ $ と $ pred $ 、判定演算子 $ iszero $ のみからなる。 | |
76 算術演算子 $ succ $ は与えられた数の次の数を返し、 $ pred $ はその前の数を返す。 | |
77 判定演算子$ iszero $ は与えられた項が 0 なら $ true $ を返し、それ以外は $ false $ を返す。 | |
78 これらを文法として定義すると以下のリスト\ref{src:expr-term}のようになる。 | |
79 | |
80 \lstinputlisting[label=src:expr-term, caption=算術式の項定義] {src/expr-term.txt} | |
81 | |
82 この定義では算術式の項 $ t $ を定義している。 | |
83 $ ::= $ は項の集合の定義を表であり、$ t $ は項の変数のようなものである。 | |
84 それに続くすべての行は、構文の選択肢である。 | |
85 構文の選択肢内に存在する記号 $ t $ は任意の項を代入できることを表現している。 | |
86 このように再帰的に定義することにより、 \verb/ if (ifzero (succ 0)) then true else (pred (succ 0)) / といった項もこの定義に含まれる。 | |
87 例において、 $ succ $ 、 $ pred $ 、 $ iszero $ に複合的な引数を渡す場合は読みやすさのために括弧でくくっている。 | |
88 括弧の定義は項の定義には含んでいない。 | |
89 コンパイラなど具体的な字句をパースする必要がある場合、曖昧な構文を排除するために括弧の定義は必須である。 | |
90 しかし、今回は型システムに言及するために曖昧な構文は明示的に括弧で指示することで排除し、抽象的な構文のみを取り扱うこととする。 | |
91 | |
92 現在、項と式という用語は同一である。 | |
93 型のような別の構文表現を持つ計算体系においては式はあらゆる種類の構文を表す。 | |
94 項は計算の構文的表現という意味である。 | |
95 | |
96 この言語におけるプログラムとは上述の文法で与えられた形からなる項である。 | |
97 評価の結果は常にブール定数か自然数のどちらかになる。 | |
98 これら項は値と呼ばれ、項の評価順序の形式化において区別が必要となる。 | |
99 | |
100 なお、この項の定義においては \verb/succ true/ といった怪しい項の形成を許してしまう。 | |
101 実際、これらのプログラムは無意味なものであり、このような項表現を排除するために型システムを利用する。 | |
102 | |
103 ある言語の構文を定義する際に、他の表現かいくつか存在する。 | |
104 先程の定義は次の帰納的な定義のためのコンパクトな記法である。 | |
105 | |
106 \begin{definition} | |
107 項の集合とは以下の条件を満たす最小の集合 $ T $ である。 | |
108 \begin{eqnarray*} | |
109 \label{eq:expr} | |
110 \{true , false , 0\} \subseteq T \\ | |
111 t_1 \in T ならば \{succ \; t_1 , pred \; t_1 , iszero \; t_1\} \subseteq T \\ | |
112 t_1 \in T かつ t_2 \in T かつ t_3 \in T ならば if \; t_1 \; then \; t_2 else \; t_3 \subseteq T | |
113 \end{eqnarray*} | |
114 \end{definition} | |
115 | |
116 まず1つめの条件は、$ T $ に属する3つの式を挙げている。 | |
117 2つめと3つめの条件は、ある種の複合的な式が $ T $ に属することを判断するための規則を表している。 | |
118 最後の「最小」という単語は $ T $ がこの3つの条件によって要求される要素以外の要素を持たないことを表している。 | |
119 | |
120 また、項の帰納的表現の略記法として、二次元の推論規則形式を用いる方法もある。 | |
121 これは論理体系を自然演繹スタイルで表現するためによく使われる。 | |
122 自然演繹による証明は\ref{agda}章内で触れるが、今回は項表現として導入する。 | |
123 | |
124 \begin{definition} | |
36 | 125 項の集合は次の規則によって定義される。 |
126 | |
127 \begin{prooftree} | |
128 \AxiomC{$ true \in T $} | |
129 \end{prooftree} | |
130 | |
131 \begin{prooftree} | |
132 \AxiomC{$ false \in T $} | |
133 \end{prooftree} | |
134 | |
135 \begin{prooftree} | |
136 \AxiomC{$ 0 \in T $} | |
137 \end{prooftree} | |
138 | |
139 \begin{prooftree} | |
140 \AxiomC{$ t_1 \in T $} | |
141 \UnaryInfC{$ succ \; t_1 \in T$} | |
142 \end{prooftree} | |
143 | |
144 \begin{prooftree} | |
145 \AxiomC{$ t_1 \in T $} | |
146 \UnaryInfC{$ pred \; t_1 \in T$} | |
147 \end{prooftree} | |
148 | |
149 \begin{prooftree} | |
150 \AxiomC{$ t_1 \in T $} | |
151 \UnaryInfC{$ iszero \; t_1 \in T$} | |
152 \end{prooftree} | |
153 | |
154 \begin{prooftree} | |
155 \AxiomC{$ t_1 \in T $} | |
156 \AxiomC{$ t_2 \in T $} | |
157 \AxiomC{$ t_3 \in T $} | |
158 \TrinaryInfC{$ if \; t_1 \; then \; t_2 \; else \; t_3 \in T$} | |
159 \end{prooftree} | |
160 | |
34 | 161 \end{definition} |
162 | |
36 | 163 最初の$ true, \; false, \; 0 $の3つ規則は再帰的定義の1つめの条件と同じである。 |
164 それ以外の4つの規則は再帰的定義の2つめと3つめの条件と同じである。 | |
165 それぞれの規則は「もし線の上に列挙して前提が成立するのならば、線の下の結論を導出できる」と読む。 | |
166 $ T $ がこれらの規則を満たす最小の集合である事実は明示的に述べられない。 | |
167 | |
168 言語の構文は定義できたので、次は項がどう評価されるかの意味論について触れていく。 | |
169 意味論の形式化には操作的意味論や表示的意味論、公理的意味論やゲーム意味論などがあるが、ここでは操作的意味論について述べる。 | |
170 操作的意味論とは、言語の抽象機械を定義することにより言語の振舞いを規程する。 | |
171 この抽象機械が示す抽象とは、扱う命令がプロセッサの命令セットなどの具体的なものでないことを表している。 | |
172 単純な言語の抽象機械における状態は単なる項であり、機械の振舞いは遷移関数で定義される。 | |
173 この関数は各状態において項の単純化ステップを実行して次の状態を与えるか、機械を停止させる。 | |
174 ここで項 $ t $ の意味は、$ t $ を初期状態として動き始めた機械が達する最終状態である。 | |
175 | |
176 なお、一つの言語に複数の操作的意味論を与えることもある。 | |
177 例えば、プログラマが扱う項に似た機械状態を持つ意味論の他に、コンパイラの内部表現やインタプリタが扱う意味論を定義する。 | |
178 これらの振舞いが同じプログラムを実行した時に何かしらの意味であれば、結果としてその言語の実装の正しさを証明することに繋がる。 | |
179 | |
180 まずはブール式のみの操作的意味論を定義する。 | |
181 | |
182 \begin{definition} | |
37 | 183 ブール値(B) |
36 | 184 |
38 | 185 項 |
36 | 186 \begin{align*} |
187 t ::= && \text{項} \\ | |
188 true && \text{定数真} \\ | |
189 false && \text{定数偽} \\ | |
190 if \; t \; then \; t \; else \; t && \text{条件式} | |
191 \end{align*} | |
192 | |
193 値 | |
194 \begin{align*} | |
195 v ::= && \text{値} \\ | |
196 true && \text{真} \\ | |
197 false && \text{偽} | |
198 \end{align*} | |
199 | |
200 評価 | |
201 \begin{align*} | |
202 if \; true \; then \; t_2 \; else t_3 \rightarrow t_2 && \text{(E-IFTRUE)} \\ | |
203 if \; false \; then \; t_2 \; else t_3 \rightarrow t_3 && \text{(E-IFFALSE)} \\ | |
204 \AxiomC{$ t_1 \rightarrow t_1'$} | |
205 \UnaryInfC{$ if \; t_1 \; then \; t_2 \; else \; t_3 \rightarrow if \; t_1' \; then t_2 \; else \;t_3 $} | |
206 \DisplayProof | |
207 && \text{(E-IF)} | |
208 \end{align*} | |
37 | 209 |
210 \end{definition} | |
211 | |
212 評価の最終結果になりえる項である値は定数 $ true $ と $ false $ のみである。 | |
213 評価の定義は評価関係の定義である。 | |
214 評価関係 $ t \rightarrow t' $ は「$ t $ が1ステップで $ t' $ に評価される」と読む。 | |
215 直感的には抽象機械の状態が $ t $ ならば $ t' $ が手に入るという意味である。 | |
216 | |
217 評価関係は3つあるが、2つは前提を持たないため、2つの公理と1つの規則から成る。 | |
218 1つめの規則 E-IFTRUE の意味は、評価の対象となる項の条件式が定数 $ true $ である時に、then 節にある $ t_2 $ を残して他の全ての項を捨てるという意味である。 | |
219 E-EIFFALSE も同様に条件式が $ false $ の時に $ t_3 $ のみを残す。 | |
220 3つ目の規則 E-IF は条件式の評価である。 | |
221 条件式 $ t $ が $ t'$ に評価されうるのならば then 節と else 節を変えずに条件部のみを評価する。 | |
222 | |
223 評価の定義から分かることの中に、if の中の then節 と else 節は条件部より先に評価されないことがある。 | |
224 よって、この言語は条件式の評価に対し条件部から評価が優先されるという評価戦略を持つことが分かる。 | |
225 | |
226 \begin{definition} | |
227 推論規則のインスタンスとは、規則の結論や前提に対し、一貫して同じ項による書き換えを行なったものである。 | |
228 \end{definition} | |
229 | |
230 例えば、 | |
231 | |
232 \verb/if true then true else (if false then false else false)/ | |
233 | |
234 は E-IFTRUE のインスタンスであり、 E-IFTRUEの $ t_2 $ が \verb/true/ かつ $ t_3 $ が \verb/if false then false else false/ の時である。 | |
235 | |
236 \begin{definition} | |
237 1ステップ評価関係 $ \rightarrow $ とは、3つの評価の規則を満たす、項に関する最小の二項関係である。 | |
238 $ (t, \; t') $ がこの関係の元である時、「評価関係式 $ t \rightarrow t'$ は導出可能である」と言う。 | |
36 | 239 \end{definition} |
240 | |
37 | 241 ここで「最小」という言葉が表れるため、評価関係式 $ t \rightarrow t'$ が導出可能である時かつその時に限り、その関係式は規則によって正当化される。 |
242 すなわち評価関係式は公理 E-IFTRUE か E-IFFALSE 、前提が成り立つ時の E-IF のインスタンスとなる。 | |
243 与えられた評価関係式が導出可能であることを証明するには、葉が E-IFTRUE か E-IFFALSE であり、内部ノードのラベルが E-IF のインスタンスである導出木が示せれば良い。 | |
244 例えば以下の略記の元 $ if \; t \; then \; false \; then \; false \rightarrow if \; u \; then \; false \; else \; false $ の導出可能性は以下のような導出木によって示せる。 | |
36 | 245 |
37 | 246 \begin{itemize} |
247 \item $ s = if \; true \; then \; false \; else \; false $ | |
248 \item $ t = if \; s \; then \; true \; else \; true $ | |
249 \item $ u = if \; false \; then \; true \; else \; true $ | |
250 \end{itemize} | |
251 | |
252 | |
253 \begin{prooftree} | |
254 \AxiomC{} | |
255 \RightLabel{E-IFTRUE} | |
256 \UnaryInfC{ $ s \rightarrow true $ } | |
257 \RightLabel{E-IF} | |
258 \UnaryInfC{ $ t \rightarrow u $} | |
259 \RightLabel{E-IF} | |
260 \UnaryInfC{ $ if \; t \; then \; false \; then \; false/ \rightarrow if \; u \; then \; false \; else \; false $} | |
261 \end{prooftree} | |
262 | |
263 1ステップ評価関係は与えられた項に対して抽象機械の状態遷移を定義する。 | |
264 この時、機械がそれ以上ステップを進められない時にそれが最終結果となる。 | |
265 | |
266 \begin{definition} | |
267 正規形 | |
268 | |
269 項 $ t $ が正規形であるとは、$ t \rightarrow t'$となる評価規則が存在しないことである。 | |
270 \end{definition} | |
271 | |
272 この言語において $ true $ や $ false $ は正規形である。 | |
273 逆に言えば、構文的に正しい if が用いられている場合は評価することが可能なため正規形ではない。 | |
274 極端に言えばこの言語における全ての値は正規形なのである。 | |
275 しかし、他の言語における値は一般的に正規形ではない。 | |
276 実のところ、値でない正規形は実行時エラーとなって表れる。 | |
277 | |
40 | 278 実際にこの言語に自然数を導入し、値では無い正規形を確認していく。 |
34 | 279 |
280 | |
38 | 281 \begin{definition} |
282 算術式BN (B の拡張) の項 | |
283 \begin{align*} | |
284 t ::= && \text{項} \\ | |
285 true && \text{定数真} \\ | |
286 false && \text{定数偽} \\ | |
287 if \; t \; then \; t \; else \; t && \text{条件式} \\ | |
288 0 && \text{定数ゼロ} \\ | |
289 succ \; t && \text{後者値} \\ | |
290 pred \; t && \text{前者値} \\ | |
291 iszero \; t && \text{ゼロ判定} | |
292 \end{align*} | |
293 \end{definition} | |
294 | |
295 \begin{definition} | |
296 算術式BN の値 | |
297 \begin{align*} | |
298 v ::= && \text{値} \\ | |
299 true && \text{真} \\ | |
300 false && \text{偽} \\ | |
301 nv && \text{数値} \\ | |
302 \end{align*} | |
303 \end{definition} | |
304 | |
305 \begin{definition} | |
306 算術式BNの数値 | |
307 \begin{align*} | |
308 nv ::= && \text{数値} \\ | |
309 0 && \text{ゼロ} \\ | |
310 succ nv && \text{後者値} | |
311 \end{align*} | |
312 \end{definition} | |
313 | |
314 \begin{definition} | |
315 算術式BNの評価($ t \rightarrow t' $) | |
316 \begin{align*} | |
317 if \; true \; then \; t_2 \; else t_3 \rightarrow t_2 && \text{(E-IFTRUE)} \\ | |
318 if \; false \; then \; t_2 \; else t_3 \rightarrow t_3 && \text{(E-IFFALSE)} \\ | |
319 \AxiomC{$ t_1 \rightarrow t_1'$} | |
320 \UnaryInfC{$ if \; t_1 \; then \; t_2 \; else \; t_3 \rightarrow if \; t_1' \; then t_2 \; else \;t_3 $} | |
321 \DisplayProof && \text{(E-IF)} \\ | |
322 \AxiomC{$ pred \; 0 \rightarrow 0$} | |
323 \DisplayProof && \text{(E-PREDZERO)} \\ | |
324 \AxiomC{$ pred \; (succ \; nv_1) \rightarrow nv_1$} | |
325 \DisplayProof && \text{(E-PREDSUCC)} \\ | |
326 \AxiomC{$ t_1 \rightarrow t_1'$} | |
327 \UnaryInfC{$ pred \; t_1 \rightarrow pred \; t_1'$} | |
328 \DisplayProof && \text{(E-PRED)} \\ | |
329 \AxiomC{$ iszero \; 0 \rightarrow true$} | |
330 \DisplayProof && \text{(E-ISZEROZERO)} \\ | |
331 \AxiomC{$ iszero \; (succ \; nv_1) \rightarrow false$} | |
332 \DisplayProof && \text{(E-ISZEROSUCC)} \\ | |
333 \AxiomC{$ t_1 \rightarrow t_1'$} | |
334 \UnaryInfC{$ iszero \; t_1 \rightarrow iszero \; t_1'$} | |
335 \DisplayProof && \text{(E-ISZERO)} \\ | |
336 \end{align*} | |
337 \end{definition} | |
338 | |
339 今回値の定義に数値を表す構文要素が追加されている。 | |
340 数は0かある数に後者関数を適用したもののどちらかである。 | |
341 評価規則 E-PREDZERO、E-PREDSUCC、E-ISZEROZERO、E-ISZEROSUCC は演算 \verb/pred/ と \verb/iszero/ が数に適用された時にどう振る舞うかを定義している。 | |
342 E-SUCC 、 E-PRED 、 E-ISZERO の合同規則も E-IF のように部分項から先に評価することを示している。 | |
343 | |
344 数値の構文要素(nv)はこの定義によって重要な役割をはたす。 | |
345 例えば、 E-PREDSUCC 規則が適用できる項は任意の項 $ t $ ではなく数値 $nv_1$である。 | |
346 これは $ pred \; (succ \; (pred \; 0)) $ を $ pred 0 $ に評価できないことを意味する。 | |
347 なぜなら $ pred \; 0 $ は数値に含まれないからである。 | |
348 | |
349 ここで言語の操作的意味論について考える時、すべての項に関する振舞いを定義する必要がある。 | |
350 すべての項には $ pred \; 0 $ や $ succ false $ のような項も含まれる。 | |
351 しかし、 $ succ $ を $ false $ に適用する評価結果は定義されていないため、 $ succ \; false $ は正規形である。 | |
352 このような、正規形であるが値でない項は行き詰まり状態であるという。 | |
353 つまり、実行時エラーとは行き詰まり状態の項を指す。 | |
354 直感的な解釈としてはプログラムが無意味な状態になったこと示しておい、操作的意味論が次に何も行なえないことを特徴付けているのである。 | |
355 プログラング言語において実行時エラーはセグメンテーションフォールトや不正な命令などいくつかのものが挙げられるが、型システムを考える際にはこれらのエラーは行き詰まり状態という単一の概念で表す。 | |
356 | |
357 % }}} | |
34 | 358 |
40 | 359 \section{単純型} |
360 先程定義した算術式には $ pred \; false $ のようなこれ以上評価できない行き詰まり状態が存在する。 | |
361 項を実際に評価する前に評価が行き詰まり状態にならないことを保証したい。 | |
362 そのために、自然数に評価される項とブール値に評価される項とを区別する必要がある。 | |
363 項を分類するために2つの型 Nat と Bool を定義する。 | |
364 | |
365 ここで、項$t$が型 $T$を持つ、という表現を用いた場合、$t$を評価した結果が明らかに適切な形の値になることを意味する。 | |
366 明らかに、という意味は項を実行することなく静的に分かるという意味である。 | |
367 例えば項 $ if \; true \; then \; false \; else \; true $ は Bool 型を持ち、$ pred \; (succ \; (succ \; 0)) $ はNat 型を持つ。 | |
368 しかし、項の型の分析は保守的であり、$ if \; true \; then \; 0 \; else \; false $ のような項は実際には行き詰まりにならないが型を持てない。 | |
369 | |
370 算術式のための型付け関係は $ t : T $ と書き、項に型を割り当てる推論規則の集合によって定義される。 | |
371 具体的な数値とブール値に関する拡張は以下である。 | |
372 | |
373 \begin{definition} | |
374 NB(型付き) の新しい構文形式 | |
375 \begin{align*} | |
376 T ::= && \text{型 :} \\ | |
377 Bool && \text{ブール型} \\ | |
378 Nat && \text{自然数型} \\ | |
379 \end{align*} | |
380 \end{definition} | |
381 | |
382 | |
383 \begin{definition} | |
384 NB(型付き)の型付け規則 | |
385 \begin{align*} | |
386 true : Bool && \text{T-TRUE} \\ | |
387 false : Bool && \text{T-FALSE} \\ | |
388 \AxiomC{$t_1 : Bool$} | |
389 \AxiomC{$t_2 : T$} | |
390 \AxiomC{$t_3 : T$} | |
391 \TrinaryInfC{$if \; t_1 \; then \; t_2 \; else \; t_3 : T$} | |
392 \DisplayProof && \text{T-IF} \\ | |
393 0 : Nat && \text{T-ZERO} \\ | |
394 \AxiomC{$t_1 : Nat$} | |
395 \UnaryInfC{$ succ \; t_1 : Nat $} | |
396 \DisplayProof && \text{T-SUCC} \\ | |
397 \AxiomC{$t_1 : Nat$} | |
398 \UnaryInfC{$ pred \; t_1 : Nat $} | |
399 \DisplayProof && \text{T-PRED} \\ | |
400 \AxiomC{$t_1 : Nat$} | |
401 \UnaryInfC{$ iszero \; t_1 : Bool $} | |
402 \DisplayProof && \text{T-BOOL} | |
403 \end{align*} | |
404 \end{definition} | |
405 | |
406 T-TRUE と T-FALSE はブール定数に Bool 型を割り当てている。 | |
407 T-IFは条件式の部分にBool型を、部分式に関しては同じ型を要求している。 | |
408 これは同じ変数 $ T $ を二回使用することで制約を表している。 | |
409 | |
410 また、数に関しては T-ZERO は Nat 型を $ 0 $ に割り当てている。 | |
411 T-SUCC と T-PRED は $ t_1 $ が Nat である時に限り Nat 型となる。 | |
412 同様に、 T-ISZERO は $ t_1 $ が Nat である時に Bool となる。 | |
413 | |
414 \begin{definition} | |
415 算術式のための型付け関係とは、NBにおける規則のすべてのインスタンスを満たす、項と型の二項関係である。 | |
416 項$ t $ に対してある型 $ T $ が存在して $ t : T $ である時、 $ t $ は型付け可能である(または正しく型付けされている)という。 | |
417 \end{definition} | |
418 | |
419 型無し算術式の評価導出のように型付けも導出可能であり、それも規則のインスタンスの木である。 | |
420 型付け関係に含まれる二つ組 $(t, \; T)$は $ t : T $ を結論とする型付け導出により正当化される。 | |
421 例えば $ if \; (iszero \; 0) \; then \; 0 \; else \; (pred \; 0) : Nat $ の型付け判断の導出木である。 | |
422 | |
423 \begin{prooftree} | |
424 \AxiomC{} | |
425 \RightLabel{T-ZERO} | |
426 \UnaryInfC{$ 0 : Nat$} | |
427 \RightLabel{T-ISZERO} | |
428 \UnaryInfC{$ iszero \; 0 : Bool$} | |
429 \AxiomC{} | |
430 \RightLabel{T-ZERO} | |
431 \UnaryInfC{$ 0 : Nat$} | |
432 \AxiomC{} | |
433 \RightLabel{T-ZERO} | |
434 \UnaryInfC{$ 0 : Nat$} | |
435 \RightLabel{T-PRED} | |
436 \UnaryInfC{$ pred \; 0 : Bool$} | |
437 \RightLabel{T-IF} | |
438 \TrinaryInfC{ if \; (iszero \; 0) \; then \; 0 \; else \; (pred \; 0) : Nat } | |
439 \end{prooftree} | |
440 | |
441 % TODO: 進行と保存 | |
442 | |
32 | 443 % {{{ 型なしラムダ計算 |
30
55f67e448dcc
Add type system description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
28
diff
changeset
|
444 \section{型なしラムダ計算} |
38 | 445 計算とは何か、エラーとは何か、を算術式を定義することによって示してきた。 |
446 ここで、プログラミング言語における計算を形式的に定義していく。 | |
31 | 447 プログラミング言語は複雑だが、その計算はある本質的な仕組みからの派生形式として定式化可能であることを Peter Ladin が示した。 % TODO: ref TaPL 61 |
38 | 448 この時 Landin が使った本質的な仕組みとしての核計算がラムダ計算であった。 |
31 | 449 ラムダ計算は Alonzo Church が発明した形式的体系の一つである。 % TODO: ref |
450 ラムダ計算では全ての計算が関数定義と関数適用の基本的な演算に帰着される。 | |
451 ラムダ計算はプログラミング言語の機能の仕様記述や、言語設計と実装、型システムの研究に多く使われている。 | |
452 この計算体系の重要な点は、ラムダ計算内部で計算が記述できるプログラミング言語であると同時に、それ自身について厳格な証明が可能な数学的対象としてみなせる点にある。 | |
28 | 453 |
31 | 454 ラムダ計算はいろいろな方法で拡張できる。 |
455 数や組やレコードなどはラムダ計算そのもので模倣することができるが、記述が冗長になってしまう。 | |
456 それらの機能のための具体的な特殊構文を加えることは言語の利用者の視点で便利である。 | |
457 他にも書き換え可能な参照セルや非局所的な例外といった複雑な機能を表現することもできるが、膨大な変換を用いなければモデル化できない。 | |
458 それらを言語として備えた拡張に ML や Haskell といったものがある。 % TODO: ref | |
459 | |
460 ラムダ計算(または $ \lambda $ 計算) とは、関数定義と関数適用を純粋な形で表現する。 | |
461 ラムダ計算においてはすべてが関数である。 | |
462 関数によって受け付ける引数も関数であり、関数が返す結果もまた関数である。 | |
463 | |
464 ラムダ計算の項は変数と抽象と適用の3種類の項からなり、以下の文法に要約される。 | |
465 変数 $ x $ は項であり、項 $ t_1 $ から変数 $ x $ を抽象化した $ \lambda x . t_1 $ も項であり、項 $ t_1 $ を他の項 $ t_2 $ に適用した $ t_1 t_2 $ も項である。 | |
466 | |
467 \begin{multline*} | |
468 t ::= \\ | |
469 x \\ | |
470 \lambda x . t \\ | |
471 t \, t \\ | |
472 \end{multline*} | |
473 | |
474 ラムダ計算において関数適用は左結合とする。 | |
475 つまり、 $ s \, t \, u $ は $ (s \, t) \, u $ となる。 | |
476 | |
477 また、抽象の本体はできる限り右側へと拡大する。 | |
478 例えば $ \lambda x . \; \lambda y . \; x \, y \, x $ は $ \lambda x . (\lambda . y ((x \, y) \, x)) $ となる。 | |
479 | |
480 ラムダ計算には変数のスコープが存在する。 | |
481 抽象 $ \lambda x . t $ の本体 $ t $ の中に変数 $ x $ がある時、 $ x $ の出現は束縛されていると言う。 | |
482 同様に、 $ \lambda x $ は $ t $ をスコープとする束縛子であると言う。 | |
483 なお、 $ x $ を囲む抽象によって束縛されていない場所の $ x $ の出現は自由であると言う。 | |
484 例えば $ x \; y $ や $ \lambda y . \; x \; y $ における $ x $ の出現は自由だが、 $ \lambda x . x $ や $ \lambda z . \lambda x . \lambda y . x (y \; z) $ における $ x $ の出現は束縛されている。 | |
485 $ (\lambda x . x) \;x $ においては、最初の $ x $ の出現は束縛されているが、2つ目の出現は自由である。 | |
486 | |
487 ラムダ計算において、計算とは引数に対する関数の適用である。 | |
488 抽象に対して項を適用した場合、抽象の本体に存在する束縛変数に適用する項を代入したもので書き換える。 | |
489 図式的には | |
490 | |
491 \begin{equation*} | |
492 (\lambda x . t_{12}) t_2 \rightarrow [ x \mapsto t_2] t_{12} | |
493 \end{equation*} | |
494 | |
495 と記述する。 | |
496 ここで $ [ x \mapsto t_2] t_{12} $ とは、$ t_12 $ 中の自由な $ x $ を全て $ t_2 $ で置換した項を意味する。 | |
497 例えば、 $ (\lambda x . x) \; y $ は $ y $ となり、項 $ (\lambda x . x (\lambda x . x)) (y \; z) $ は $ y \; z \; (\lambda x . x) $ となる。 | |
498 | |
499 なお、 $ (\lambda x . t_{12}) t_2 $ という形の項を簡約基(redex, reducible expression) と呼び、上記の規則で簡約基を置換する操作をベータ簡約と呼ぶ。 | |
500 ラムダ計算のための評価戦略には数種類の戦略がある。 | |
501 | |
502 \begin{itemize} | |
503 \item 完全ベータ簡約 | |
504 | |
505 任意の簡約基がいつでも簡約されうる。 | |
506 つまり項の中からどの順番で簡約しても良い。 | |
507 | |
508 \item 正規順序簡約 | |
509 | |
510 最も左で最も外側の簡約基が最初に簡約される。 | |
511 | |
512 \item 名前呼び | |
513 | |
514 正規順序の中でも抽象の内部での簡約を許さない。 | |
515 名前呼びの変種は Algol-60 や Haskell で利用されている。 | |
516 なお、Haskell においては必要呼びという最適化された変種を利用している。 | |
517 | |
518 \item 値呼び | |
519 | |
520 ほとんどの言語はこの戦略を用いている。 | |
521 基本的には最も左の簡約基をを簡約するが、右側が既に値(計算が終了してもう簡約できない閉じた項)になっている簡約基のみを簡約する。 | |
522 \end{itemize} | |
523 | |
524 値呼び戦略は関数の引数が本体で使われるかに関わらず評価され、これは正格と呼ばれる。 | |
525 名前呼びなどの非正格な戦略は引数が使われる時のみ評価され、これは遅延評価とも呼ばれる。 | |
526 | |
527 ラムダ計算において、複数の引数は、関数を返り値として返す高階関数として定義できる。 | |
32 | 528 項 $ s $ が二つの自由変数 $ x $ と $ y $ を含むとすれば、 $ \lambda x . \lambda y . s $ と書くことで二つの引数を持つ関数を表現できる。 |
529 これは $ x $ に $ v $ が与えられた時、$ y $ を受けとり、 $ s $ の抽象内の自由な $ x $ を $ v $ に置き換えた部分を置換する関数、を返す。 | |
530 例えば $ (\lambda x . \lambda y . s) \; v \; w $ は $ (\lambda y . [x \mapsto v] s) w $ に簡約され、 $ [y \mapsto w][x \mapsto v]s $ に簡約される。 | |
531 なお、複数の引数を取る関数を高階関数に変換することはカリー化と呼ばれる。 | |
532 | |
39 | 533 % TODO: ラムダの再帰とかペアとかの解説 |
534 | |
535 ラムダ計算の帰納的な項は以下のように定義される。 | |
536 | |
537 \begin{definition} | |
538 $ V $ を変数名の加算集合とする。項の集合は以下を満たす最小の集合 $ T $ である。 | |
539 | |
540 \begin{eqnarray*} | |
541 任意の x \in V について x \in T \\ | |
542 t_1 \in T かつ x in V ならば \lambda x . t \in T \\ | |
543 t_1 \in T かつ t_2 \in T ならば t_1 \; t_2 \in T | |
544 \end{eqnarray*} | |
545 \end{definition} | |
546 | |
547 また、形式的な自由変数の定義を与える。 | |
548 | |
549 \begin{definition} | |
550 項 $ t $ の自由変数の集合は $ FV(t)$と書き、以下のように定義される。 | |
551 | |
552 \begin{eqnarray*} | |
553 FV(x) = \{ x \} \\ | |
554 FV(\lambda . t_1 x) = FV(t_1) \setminus \{ x \} \\ | |
555 FV(t_1 \; t_2) = FV(t_1) \cup FV(t_2) | |
556 \end{eqnarray*} | |
557 \end{definition} | |
558 | |
559 記号 $ \setminus $ は集合に対する二項演算子であり、$ S \setminus T := {x \in S : x \notin T}$ である。 | |
560 つまり、$ t_1 $の内部の自由変数の集合から $ x $ を抜いた集合である。 | |
561 | |
562 最後に代入について定義する。 | |
32 | 563 代入の操作は直感的には置換であるが、変数の束縛に注意しなくてはならない。 |
564 例えば抽象への代入を以下のように定義する。 | |
565 | |
566 \begin{equation*} | |
567 [ x \mapsto s ] (\lambda y . t_1) = \lambda y . [ x \mapsto s] t_1 | |
568 \end{equation*} | |
569 | |
570 この場合、束縛変数の名前によっては定義が破綻してしまう。例えば以下のようになる。 | |
571 | |
572 \begin{equation*} | |
573 [x \mapsto y](\lambda x . x) = \lambda x . y | |
574 \end{equation*} | |
575 | |
576 $ \lambda $ よって束縛されているはずの $ x $ が書き変わっている。 | |
577 これはスコープとして振る舞っていないので誤っている。 | |
578 この問題は項 $ t $ 内の変数 $ x $ の自由な出現と束縛された出現を区別しなかったために出現した誤りである。 | |
579 | |
580 そこで、$ x $ を束縛する項に対しては置換行なわないように定義を変える。 | |
581 | |
582 \begin{itemize} | |
583 \item $ y = x $ の場合 | |
584 \begin{equation*} | |
585 [ x \mapsto s ] (\lambda y . t_1) = \lambda y . t_1 | |
586 \end{equation*} | |
587 | |
588 \item $ y \neq x $ の場合 | |
589 \begin{equation*} | |
590 [ x \mapsto s ] (\lambda y . t_1) = \lambda y . [ x \mapsto s] t_1 | |
591 \end{equation*} | |
592 \end{itemize} | |
593 | |
594 この場合は束縛された変数を上書きしないが、逆に自由変数を束縛するケースが発生する。 | |
595 具体的には以下である。 | |
596 | |
597 \begin{equation*} | |
598 [ x \mapsto z] (\lambda z . x) = \lambda z . z | |
599 \end{equation*} | |
600 | |
601 項 $ s $ 中の自由変数が項 $ t $ に代入されて束縛される現象は変数捕獲と呼ばれる。 | |
602 これを避けるためには $ t $ の束縛変数の名前が $ s $ の自由変数の名前と異なることを保証する必要がある。 | |
603 変数捕獲を回避した代入操作は捕獲回避代入と呼ばれる。 | |
33
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
604 代入における名前の衝突を回避するために項の束縛変数の名前を一貫して変更することで変数捕獲を回避する方法も存在する。 |
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
605 束縛変数の名前を一貫して変更することをアルファ変換と呼ばれる。 |
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
606 これは関数抽象に対する束縛変数は問わないという直感からくるもので、 $ \lambda x . x $ も $ \lambda y . y $ も振舞いとしては同じ関数であるとみなすものである。 |
32 | 607 捕獲回避の条件を追加した代入の定義は以下のような定義となる。 |
608 | |
609 \begin{itemize} | |
610 \item 変数への代入 | |
611 | |
612 \begin{equation*} | |
613 [ x \mapsto s ] x = s | |
614 \end{equation*} | |
615 | |
616 \item 存在しない変数への代入($ y \neq x $ の時) | |
617 | |
618 \begin{equation*} | |
619 [ x \mapsto s ] y = y | |
620 \end{equation*} | |
621 | |
622 \item 抽象内の項への代入($ y \neq x $ かつ $ y $ が $ s $ の自由変数でない) | |
623 | |
624 \begin{equation*} | |
625 [ x \mapsto s ] (\lambda y . t_1) = \lambda y . [ x \mapsto s] t_1 | |
626 \end{equation*} | |
627 | |
628 \item 適用への代入 | |
629 | |
630 \begin{equation*} | |
631 [x \mapsto s] (t_1 \; t_2) = (t_1[x\mapsto s])([x \mapsto s] t_2) | |
632 \end{equation*} | |
633 | |
634 \end{itemize} | |
635 | |
636 この定義は少なくとも代入が行なわれる際には正しく代入が行なえる。 | |
33
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
637 さらに、抽象が束縛している変数を名前では無く数字として扱う名無し表現も存在する。 |
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
638 これは De Brujin 表現と呼ばれ、コンパイラ内部などでの項表現として用いられる。 % TODO: ref and spell check |
32 | 639 |
39 | 640 最終的な型無しラムダ計算 $ \lambda $ の項の定義と評価の要約を示す。 |
641 | |
642 \begin{definition} | |
643 $ \rightarrow $ (型無し) | |
644 | |
645 項 | |
646 \begin{align*} | |
647 t ::= && \text{項} \\ | |
648 \lambda x . t && \text{ラムダ抽象} \\ | |
649 t \; t && \text{関数適用} | |
650 \end{align*} | |
651 | |
652 値 | |
653 \begin{align*} | |
654 v ::= && \text{値} \\ | |
655 \lambda x . t && \text{ラムダ抽象値} | |
656 \end{align*} | |
657 | |
658 評価( $ t \rightarrow t' $) | |
659 | |
660 \begin{align*} | |
661 \AxiomC{$ t_1 \rightarrow t_1'$} | |
662 \UnaryInfC{$t_1 \; t_2 \rightarrow t_1' t_2$} | |
663 \DisplayProof && \text{E-APP1} \\ | |
664 \AxiomC{$ t_2 \rightarrow t_2'$} | |
665 \UnaryInfC{$v_1 \; t_2 \rightarrow v_1 t_2'$} | |
666 \DisplayProof && \text{E-APP2} \\ | |
667 (\lambda x . t_{12}) \; v_2 \rightarrow [ x \mapsto v_2] t_{12} | |
668 && \text{E-APPABS} | |
669 \end{align*} | |
670 \end{definition} | |
32 | 671 |
33
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
672 項は変数かラムダ抽象か関数適用の3つにより構成される。 |
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
673 また、ラムダ抽象値は全て値である。 |
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
674 加えて評価は関数適用を行なう E-APPABS 計算規則と、適用の項を書き換える E-APP1 と E-APP2 合同規則により定義される。 |
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
675 |
39 | 676 この定義からも評価戦略と評価順序が分かる。 |
677 関数を適用する E-APPABS は左側が抽象であり、右側が値である $v_2$ の時にしか適用されない。 | |
678 逆に、規則 E-APP1 の$t_1$は任意の項にマッチするため関数部分が値でない関数適用に用いる。 | |
679 一方、E-APP2 は左辺が値であるようになるまで評価されない。 | |
680 よって、関数適用 $ t_1 \; t_2 $ の評価順は、まずE-APP1を用いて$t_1$が値となった後にE-APP2を用いて$t_2$を値とし、最後にE-APPABSで関数を適用を行なう。 | |
33
74a29a48575a
Update lambda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
32
diff
changeset
|
681 |
32 | 682 |
683 % }}} | |
28 | 684 |
685 \section{単純型付きラムダ計算} | |
686 \section{部分型付け} | |
687 \section{部分型と Continuation based C} |