inductive_set S1and A1and B1where "[] ∈ S1"
| "w ∈ A1==> b # w ∈ S1"
| "w ∈ B1==> a # w ∈ S1"
| "w ∈ S1==> a # w ∈ A1"
| "w ∈ S1==> b # w ∈ S1"
| "[v ∈ B1; v ∈ B1]==> a # v @ w ∈ B1"
inductive_set S2and A2and B2where "[] ∈ S2"
| "w ∈ A2==> b # w ∈ S2"
| "w ∈ B2==> a # w ∈ S2"
| "w ∈ S2==> a # w ∈ A2"
| "w ∈ S2==> b # w ∈ B2"
| "[v ∈ B2; v ∈ B2]==> a # v @ w ∈ B2"
inductive_set S3and A3and B3where "[] ∈ S3"
| "w ∈ A3==> b # w ∈ S3"
| "w ∈ B3==> a # w ∈ S3"
| "w ∈ S3==> a # w ∈ A3"
| "w ∈ S3==> b # w ∈ B3"
| "[v ∈ B3; w ∈ B3]==> a # v @ w ∈ B3"
inductive_set S4and A4and B4where "[] ∈ S4"
| "w ∈ A4==> b # w ∈ S4"
| "w ∈ B4==> a # w ∈ S4"
| "w ∈ S4==> a # w ∈ A4"
| "[v ∈ A4; w ∈ A4]==> b # v @ w ∈ A4"
| "w ∈ S4==> b # w ∈ B4"
| "[v ∈ B4; w ∈ B4]==> a # v @ w ∈ B4"
code_pred (expected_modes: o => bool, i => bool) S4p .
hide_const a b
section‹Semantics of programming languages›
subsection‹IMP›
type_synonym var = nat type_synonym state = "int list"
datatype com =
Skip |
Ass var "state => int" |
Seq com com | IF"state => bool" com com |
While "state => bool" com
inductive exec :: "com => state => state => bool"where "exec Skip s s" | "exec (Ass x e) s (s[x := e(s)])" | "exec c1 s1 s2 ==> exec c2 s2 s3 ==> exec (Seq c1 c2) s1 s3" | "b s ==> exec c1 s t ==> exec (IF b c1 c2) s t" | "~b s ==> exec c2 s t ==> exec (IF b c1 c2) s t" | "~b s ==> exec (While b c) s s" | "b s1 ==> exec c s1 s2 ==> exec (While b c) s2 s3 ==> exec (While b c) s1 s3"
datatype type =
Atom nat
| Fun type type (infixr‹==>›200)
datatype dB =
Var nat
| App dB dB (infixl‹🍋›200)
| Abs type dB
primrec
nth_el :: "'a list ==> nat ==> 'a option" (‹_⟨_⟩› [90, 0] 91) where "[]⟨i⟩ = None"
| "(x # xs)⟨i⟩ = (case i of 0 ==> Some x | Suc j ==> xs ⟨j⟩)"
inductive nth_el' :: "'a list ==> nat ==> 'a ==> bool" where "nth_el' (x # xs) 0 x"
| "nth_el' xs i y ==> nth_el' (x # xs) (Suc i) y"
inductive typing :: "type list ==> dB ==> type ==> bool" (‹_ ⊨ _ : _› [50, 50, 50] 50) where
Var [intro!]: "nth_el' env x T ==> env ⊨ Var x : T"
| Abs [intro!]: "T # env ⊨ t : U ==> env ⊨ Abs T t : (T ==> U)"
| App [intro!]: "env ⊨ s : T ==> U ==> env ⊨ t : T ==> env ⊨ (s 🍋 t) : U"
primrec
lift :: "[dB, nat] => dB" where "lift (Var i) k = (if i < k then Var i else Var (i + 1))"
| "lift (s 🍋 t) k = lift s k 🍋 lift t k"
| "lift (Abs T s) k = Abs T (lift s (k + 1))"
primrec
subst :: "[dB, dB, nat] => dB" (‹_[_'/_]› [300, 0, 0] 300) where
subst_Var: "(Var i)[s/k] = (if k < i then Var (i - 1) else if i = k then s else Var i)"
| subst_App: "(t 🍋 u)[s/k] = t[s/k] 🍋 u[s/k]"
| subst_Abs: "(Abs T t)[s/k] = Abs T (t[lift s 0 / k+1])"
inductive beta :: "[dB, dB] => bool" (infixl‹→\β›50) where
beta [simp, intro!]: "Abs T s 🍋 t →\<beta> s[t/0]"
| appL [simp, intro!]: "s →\<beta> t ==> s 🍋 u →\<beta> t 🍋 u"
| appR [simp, intro!]: "s →\<beta> t ==> u 🍋 s →\<beta> u 🍋 t"
| abs [simp, intro!]: "s →\<beta> t ==> Abs T s →\<beta> Abs T t"
code_pred (expected_modes: i => i => o => bool, i => i => i => bool) typing . thm typing.equation
code_pred (modes: i => i => bool, i => o => bool as reduce') beta . thm beta.equation
| IfTrue: "bval b s ==> (c1,s) ==> t ==> (IF b THEN c1 ELSE c2, s) ==> t"
| IfFalse: "¬bval b s ==> (c2,s) ==> t ==> (IF b THEN c1 ELSE c2, s) ==> t"
| WhileFalse: "¬bval b s ==> (WHILE b DO c,s) ==> s"
| WhileTrue: "bval b s1==> (c,s1) ==> s2==> (WHILE b DO c, s2) ==> s3 ==> (WHILE b DO c, s1) ==> s3"
code_pred big_step .
thm big_step.equation
definition list :: "(nat ==> 'a) ==> nat ==> 'a list"where "list s n = map s [0 ..< n]"
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.