src/HOL/Import/patches/patch1
author wenzelm
Wed, 12 Mar 2025 11:39:00 +0100
changeset 82265 4b875a4c83b0
parent 81931 3c888cd24351
permissions -rw-r--r--
update for release;

--- hol-light/statements.ml	1970-01-01 01:00:00.000000000 +0100
+++ hol-light-patched/statements.ml	2025-01-18 11:12:11.185279392 +0100
@@ -0,0 +1,6 @@
+let dump_theorems () =
+  let oc = open_out "theorems" in
+  output_value oc (map (fun (a,b) -> (a, dest_thm b)) !theorems);
+  close_out oc
+;;
+dump_theorems ();;
--- hol-light/stage1.ml	1970-01-01 01:00:00.000000000 +0100
+++ hol-light-patched/stage1.ml	2025-01-18 11:12:11.185279392 +0100
@@ -0,0 +1,5 @@
+#use "hol.ml";;
+(*LOAD MORE*)
+#use "update_database.ml";;
+#use "statements.ml";;
+exit 0;;
--- hol-light/stage2.ml	1970-01-01 01:00:00.000000000 +0100
+++ hol-light-patched/stage2.ml	2025-01-18 11:12:11.384276293 +0100
@@ -0,0 +1,4 @@
+#use "hol.ml";;
+(*LOAD MORE*)
+stop_recording ();;
+exit 0;;