# HG changeset patch # User wenzelm # Date 1704055214 -3600 # Node ID 719563e4816a69e3fb1c7b6201a9da782baf029c # Parent e1895596e1b9bb791a15e90f83fde662dfd83c00 tuned signature; diff -r e1895596e1b9 -r 719563e4816a src/Pure/proofterm.ML --- a/src/Pure/proofterm.ML Sun Dec 31 19:24:37 2023 +0100 +++ b/src/Pure/proofterm.ML Sun Dec 31 21:40:14 2023 +0100 @@ -147,7 +147,7 @@ val could_unify: proof * proof -> bool type sorts_proof = (class * class -> proof) * (string * class list list * class -> proof) val of_sort_proof: Sorts.algebra -> sorts_proof -> (typ * class -> proof) -> typ * sort -> proof list - val axm_proof: string -> term -> proof + val axiom_proof: string -> term -> proof val oracle_proof: string -> term -> proof val shrink_proof: proof -> proof @@ -1201,7 +1201,7 @@ val head = mk (name, prop1, NONE); in proof_combP (proof_combt' (head, args), map PClass outer_constraints) end; -val axm_proof = const_proof PAxm; +val axiom_proof = const_proof PAxm; val oracle_proof = const_proof Oracle; val shrink_proof = diff -r e1895596e1b9 -r 719563e4816a src/Pure/thm.ML --- a/src/Pure/thm.ML Sun Dec 31 19:24:37 2023 +0100 +++ b/src/Pure/thm.ML Sun Dec 31 21:40:14 2023 +0100 @@ -870,7 +870,7 @@ SOME prop => let fun zproof () = ZTerm.axiom_proof thy name prop; - fun proof () = Proofterm.axm_proof name prop; + fun proof () = Proofterm.axiom_proof name prop; val cert = Context.Certificate thy; val maxidx = maxidx_of_term prop; val shyps = Sorts.insert_term prop [];