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

Quelle  Aodv_Basic.thy

  Sprache: Isabelle
 

(*  Title:       Aodv_Basic.thy
    License:     BSD 2-Clause. See LICENSE.
    Author:      Timothy Bourke, Inria
*)


section "Basic data types and constants"

theory Aodv_Basic
imports Main AWN.AWN_SOS
begin

text These definitions are shared with all variants.

type_synonym rreqid = nat
type_synonym sqn = nat

datatype k = Known | Unknown
abbreviation kno where "kno Known"
abbreviation unk where "unk Unknown"

datatype p = NoRequestRequired | RequestRequired
abbreviation noreq where "noreq NoRequestRequired"
abbreviation req where "req RequestRequired"

datatype f = Valid | Invalid
abbreviation val where "val Valid"
abbreviation inv where "inv Invalid"

lemma not_ks [simp]:                                      
   "(x kno) = (x = unk)"
   "(x unk) = (x = kno)"
  by (cases x, clarsimp+)+

lemma not_ps [simp]:
  "(x noreq) = (x = req)"
  "(x req) = (x = noreq)"
  by (cases x, clarsimp+)+

lemma not_ffs [simp]:
  "(x val) = (x = inv)"
  "(x inv) = (x = val)"
  by (cases x, clarsimp+)+

end

Messung V0.5 in Prozent
C=69 H=95 G=82

¤ Dauer der Verarbeitung: 0.1 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.