Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/Isabelle/HOL/ex/   (Beweissystem Isabelle Version 2025-1©)  Datei vom 16.11.2025 mit Größe 2 kB image not shown  

Quelle  Multiquote.thy   Sprache: Isabelle

 
(*  Title:      HOL/ex/Multiquote.thy
    Author:     Markus Wenzel, TU Muenchen
*)


section Multiple nested quotations and anti-quotations

theory Multiquote
imports Main
begin

text 
  Multiple nested quotations and anti-quotations -- basically a
  generalized version of de-Bruijn representation.


syntax
  "_quote" :: "'b \ ('a \ 'b)"    («_¬ [0] 1000)
  "_antiquote" :: "('a \ 'b) \ 'b"    (🍋_ [1000] 1000)

parse_translation 
  let
    fun antiquote_tr i (Const (🍋_antiquote, _) $
          (t as Const (🍋_antiquote, _) $ _)) = skip_antiquote_tr i t
      | antiquote_tr i (Const (🍋_antiquote, _) $ t) =
          antiquote_tr i t $ Bound i
      | antiquote_tr i (t $ u) = antiquote_tr i t $ antiquote_tr i u
      | antiquote_tr i (Abs (x, T, t)) = Abs (x, T, antiquote_tr (i + 1) t)
      | antiquote_tr _ a = a
    and skip_antiquote_tr i ((c as Const (🍋_antiquote, _)) $ t) =
          c $ skip_antiquote_tr i t
      | skip_antiquote_tr i t = antiquote_tr i t;

    fun quote_tr [t] = Abs ("s", dummyT, antiquote_tr 0 (Term.incr_boundvars 1 t))
      | quote_tr ts = raise TERM ("quote_tr", ts);
  in [(🍋_quote, K quote_tr)] end


text basic examples
term "\a + b + c\"
term "\a + b + c + \x + \y + 1\"
term "\\(f w) + \x\"
term "\f \x \y z\"

text advanced examples
term "\\\\x + \y\\"
term "\\\\x + \y\ \ \f\"
term "\\(f \ \g)\"
term "\\\\(f \ \g)\\"

end

Messung V0.5
C=97 H=99 G=97

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ¤

*© 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.