text‹The syntax of commands is defined by two mutually recursive
datatypes: ‹'a ann_com\ for annotated commands and \'a
com›for non-annotated commands.›
text‹The function‹pre› extracts the precondition of an
annotated command:›
primrecpre ::"'a ann_com \ 'a assn"where "pre (AnnBasic r f) = r"
| "pre (AnnSeq c1 c2) = pre c1"
| "pre (AnnCond1 r b c1 c2) = r"
| "pre (AnnCond2 r b c) = r"
| "pre (AnnWhile r b i c) = r"
| "pre (AnnAwait r b c) = r"
text‹Well-formedness predicate for atomic programs:›
primrec atom_com :: "'a com \ bool"where "atom_com (Parallel Ts) = False"
| "atom_com (Basic f) = True"
| "atom_com (Seq c1 c2) = (atom_com c1 \ atom_com c2)"
| "atom_com (Cond b c1 c2) = (atom_com c1 \ atom_com c2)"
| "atom_com (While b i c) = atom_com c"
end
Messung V0.5
¤ Dauer der Verarbeitung: 0.10 Sekunden
(vorverarbeitet)
¤
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.