ããã°ã©ã æå³è« | Semanticsãšã¯
ããã°ã©ã æå³è«. formal semantics, mathmatical semantics ãšããã.
ããã°ã©ã ã®æ£ãããæ£ç¢ºããçè«ã¥ããããã®æ¹æ³.
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
å®ç蚌ææ¯æŽç³»èšèª.
- Coq - Wikipedia
- ããã°ã©ãã³ã° Coq
- Coq ã§ç¬ç¿ãããªãã©ã®ããŒãžããã? ãšèããããšãã®ã¡ã¢ - ç°¡æœãª Q
ã¢ãã«æ€æ»
-
VDM
ã¢ãã«æ€æ»çšã®ãœãããŠã§ã¢
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
宣èšçèšç®ã¢ãã«ã«é©ãã.