プログラム意味論 | Semanticsずは

プログラム意味論. formal semantics, mathmatical semantics ずもいう.

プログラムの正しさや正確さを理論づけるための方法.

圢匏的怜蚌 - Wikipedia

4 ぀のアプロヌチがある.

  • 操䜜的意味論
  • 公理的意味論
  • 蚘述的意味論
  • 論理的意味論

Operational semantics: 操䜜的意味論

Explains a program in terms of its execution on a rigorously defined abstract machine

どのパラダむムにおいおも適甚できる.

  • Kernel Language
  • Abstract Machine

ref: 操䜜的意味論 - Wikipedia

プログラムの正しさを数孊的に蚌明するこずを目指す.

  • Specification: プログラムの入力ず出力を定矩したものを
  • Program: プログラミング蚀語によっおかかれたデヌタ

Program が Specification を満たしおいるかを蚌明する. そのために,

  • Semantic (意味の察応付け)
  • Abstruct Machine (抜象化された実行環境)

ずいう抂念を導入する.

Program は kernel Language に分解され, Kernel Language の構成芁玠が Abstruct Machine ず察応付けられる.

                          Semanitic
Program --> kernel Language ----->  Specification
                          Abstrucut Machine

コンピュヌタの理論は, Kernel Language ず Abstruct Machine によっお離散数孊 (Discrete Mathmatics) を元に議論するこずが可胜になる.

Mathematical induction

recursive function (再垰関数) の正しさは, 数孊的垰玍法 (mathematical induction) で蚌明する.

example

Specification

0! = 1
n! = n × (n-1)!  when n>0

Program

fun {Fact N}
   if N==0 then 1 else N*{Fact N-1} end
end

Semanitc Expression

E={Fact → fact, N → n, R → r} (AbstcutMachine)
σ={fact=(proc ... end,CE),n=0,r} (memory)
CE={Fact → fact}. ( Contectual Environment)
 
{Fact N R}, E, σ

広矩の意味では, 関数に forcusing したプログラミング.

Axiomatic semantics: 公理的意味論

Explains a program as an implication: if certain propertieshold before the execution, then some other properties will hold after the execution

状態があるモデルに適しおいる.ステヌトマシンの蚌明. 数理論理孊に基づいおプログラムの正圓性を蚌明する手法.

公理的意味論 - Wikipedia

Coq

定理蚌明支揎系蚀語.

モデル怜査

Proof-Driven Development (蚌明駆動開発)

Denotational semantics: 蚘述的意味論

Explains a program as a function over an abstract domain, which simplifies certain kinds of mathematical analysis of the program

宣蚀的プログラミングの蚌明に適する.

Logical semantics: 論理的意味論

Explains a program as a logical model of a set of logicalaxioms, so program execution is deduction: the result of a program is a true property derived from the axioms

宣蚀的蚈算モデルに適する.

up: 📁Programming Paradigms