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

Quelle  uexpr_rep_eq.ML

  Sprache: SML
 

(******************************************************************************)
(* Project: The Isabelle/UTP Proof System                                     *)
(* File: uexpr_rep_eq.ML                                                      *)
(* Authors: Simon Foster & Frank Zeyda (University of York, UK)               *)
(* Emails: simon.foster@york.ac.uk frank.zeyda@york.ac.uk                     *)
(******************************************************************************)
(* LAST REVIEWED: 2 Mar 2017 *)

(* UEXPR_REP_EQ Signature *)

signature UEXPR_REP_EQ =
sig
  val get_uexpr_rep_eq_thms : theory -> thm list
  val read_uexpr_rep_eq_thms : theory -> theory
end;

(* uexpr_rep_eq Structure *)

structure uexpr_rep_eq : UEXPR_REP_EQ =
struct
  (* Theory Data to store the relevant transfer laws. *)

  structure UTP_Tactics_Data = Theory_Data
  (
    type T = thm list;
    val empty = [];
    val merge = Thm.merge_thms;
  );

  val get_uexpr_rep_eq_thms = UTP_Tactics_Data.get;
  val put_uexpr_rep_eq_thms = UTP_Tactics_Data.put;

  val uexpr_rep_eq_query =
  let val query_string = "name:\"rep_eq\" \"Rep_uexpr ?e = ?t\"" in
    Find_Theorems.read_query Position.none query_string
  end;

  fun read_uexpr_rep_eq_thms thy =
    let val ctxt = Proof_Context.init_global thy;
      val facts = Find_Theorems.find_theorems_cmd
        ctxt NONE NONE true uexpr_rep_eq_query;
    in
      (put_uexpr_rep_eq_thms (map snd (snd facts)) thy)
    end;
end;

Messung V0.5 in Prozent
C=78 H=100 G=89

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