Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/Isabelle/Archive-of-Formal-Proofs/thys/Slicing/While/   (Sammlung formaler Beweise Version 2026-5©)  Datei vom 29.4.2026 mit Größe 3 kB image not shown  

Quelle  Com.thy

  Sprache: Isabelle
 

chapter Instantiating the Framework with a simple While-Language

section Commands

theory Com imports Main begin

subsection Variables and Values

type_synonym vname = string ― names for variables

datatype val
  = Bool bool      ― Boolean value
  | Intg int       ― integer value

abbreviation "true == Bool True"
abbreviation "false == Bool False"

subsection Expressions and Commands

datatype bop = Eq | And | Less | Add | Sub     ― names of binary operations

datatype expr
  = Val val                                          ― value
  | Var vname                                        ― local variable
  | BinOp expr bop expr    (_ «_¬ _ [80,0,8180)  ― binary operation


fun binop :: "bop ==> val ==> val ==> val option"
where "binop Eq v1 v2 = Some(Bool(v1 = v2))"
  | "binop And (Bool b1) (Bool b2) = Some(Bool(b1 b2))"
  | "binop Less (Intg i1) (Intg i2) = Some(Bool(i1 < i2))"
  | "binop Add (Intg i1) (Intg i2) = Some(Intg(i1 + i2))"
  | "binop Sub (Intg i1) (Intg i2) = Some(Intg(i1 - i2))"
  | "binop bop v1 v2 = None"


datatype cmd
  = Skip
  | LAss vname expr        (_:=_ [70,7070)  ― local assignment
  | Seq cmd cmd            (_;;/ _ [61,6060)
  | Cond expr cmd cmd      (if '(_') _/ else _ [80,79,7970)
  | While expr cmd         (while '(_') _ [80,7970)


fun num_inner_nodes :: "cmd ==> nat" (#:_)
where "#:Skip = 1"
  | "#:(V:=e) = 2"       (* zusätzlicher Skip-Knoten *)
  | "#:(c1;;c2) = #:c1 + #:c2"
  | "#:(if (b) c1 else c2) = #:c1 + #:c2 + 1"
  | "#:(while (b) c) = #:c + 2" (* zusätzlicher Skip-Knoten *)
  


lemma num_inner_nodes_gr_0:"#:c > 0"
by(induct c) auto

lemma [dest]:"#:c = 0 ==> False"
by(induct c) auto

subsection The state

type_synonym state = "vname val"

fun "interpret" :: "expr ==> state ==> val option"
where Val: "interpret (Val v) s = Some v"
  | Var: "interpret (Var V) s = s V"
  | BinOp: "interpret (e1«bop¬e2) s =
    (case interpret e1 s of None ==> None
                         | Some v1 ==> (case interpret e2 s of None ==> None
                                                           | Some v2 ==> (
      case binop bop v1 v2 of None ==> None | Some v ==> Some v)))"

end

Messung V0.5 in Prozent
C=82 H=100 G=91

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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.