more robust hybrid treatment of Pure, notably for Isabelle/Dedukti;
authorwenzelm
Sun, 20 Oct 2019 21:34:29 +0200
changeset 70917 693e811b91bb
parent 70916 4c15217d6266
child 70918 d36f600c6500
more robust hybrid treatment of Pure, notably for Isabelle/Dedukti;
src/Pure/ROOT
src/Pure/Thy/export_theory.ML
--- a/src/Pure/ROOT	Sun Oct 20 21:12:18 2019 +0200
+++ b/src/Pure/ROOT	Sun Oct 20 21:34:29 2019 +0200
@@ -4,7 +4,7 @@
   description "
     The Pure logical framework.
   "
-  options [threads = 1, export_proofs, export_standard_proofs]
+  options [threads = 1, export_proofs, export_standard_proofs, prune_proofs = false]
   theories [export_theory]
     Pure (global)
   theories
--- a/src/Pure/Thy/export_theory.ML	Sun Oct 20 21:12:18 2019 +0200
+++ b/src/Pure/Thy/export_theory.ML	Sun Oct 20 21:34:29 2019 +0200
@@ -255,13 +255,11 @@
     val lookup_thm_id = Global_Theory.lookup_thm_id thy;
 
     fun proof_boxes_of thm thm_id =
-      if export_standard_proofs then []
-      else
-        let
-          val dep_boxes =
-            thm |> Thm_Deps.proof_boxes (fn thm_id' =>
-              if #serial thm_id = #serial thm_id' then false else is_some (lookup_thm_id thm_id'));
-        in dep_boxes @ [thm_id] end;
+      let
+        val dep_boxes =
+          thm |> Thm_Deps.proof_boxes (fn thm_id' =>
+            if #serial thm_id = #serial thm_id' then false else is_some (lookup_thm_id thm_id'));
+      in dep_boxes @ [thm_id] end;
 
     fun expand_name thm_id (header: Proofterm.thm_header) =
       if #serial header = #serial thm_id then ""