berghofe@13403: (* Title: HOL/Extraction.thy berghofe@13403: ID: $Id$ berghofe@13403: Author: Stefan Berghofer, TU Muenchen berghofe@13403: *) berghofe@13403: berghofe@13403: header {* Program extraction for HOL *} berghofe@13403: nipkow@15131: theory Extraction haftmann@24194: imports Datatype haftmann@16417: uses "Tools/rewrite_hol_proof.ML" nipkow@15131: begin berghofe@13403: berghofe@13403: subsection {* Setup *} berghofe@13403: wenzelm@16121: setup {* wenzelm@16121: let berghofe@13725: fun realizes_set_proc (Const ("realizes", Type ("fun", [Type ("Null", []), _])) $ r $ berghofe@13725: (Const ("op :", _) $ x $ S)) = (case strip_comb S of skalberg@15531: (Var (ixn, U), ts) => SOME (list_comb (Var (ixn, binder_types U @ berghofe@13725: [HOLogic.dest_setT (body_type U)] ---> HOLogic.boolT), ts @ [x])) skalberg@15531: | (Free (s, U), ts) => SOME (list_comb (Free (s, binder_types U @ berghofe@13725: [HOLogic.dest_setT (body_type U)] ---> HOLogic.boolT), ts @ [x])) skalberg@15531: | _ => NONE) berghofe@13725: | realizes_set_proc (Const ("realizes", Type ("fun", [T, _])) $ r $ berghofe@13725: (Const ("op :", _) $ x $ S)) = (case strip_comb S of skalberg@15531: (Var (ixn, U), ts) => SOME (list_comb (Var (ixn, T :: binder_types U @ berghofe@13725: [HOLogic.dest_setT (body_type U)] ---> HOLogic.boolT), r :: ts @ [x])) skalberg@15531: | (Free (s, U), ts) => SOME (list_comb (Free (s, T :: binder_types U @ berghofe@13725: [HOLogic.dest_setT (body_type U)] ---> HOLogic.boolT), r :: ts @ [x])) skalberg@15531: | _ => NONE) skalberg@15531: | realizes_set_proc _ = NONE; berghofe@13725: berghofe@13725: fun mk_realizes_set r rT s (setT as Type ("set", [elT])) = berghofe@13725: Abs ("x", elT, Const ("realizes", rT --> HOLogic.boolT --> HOLogic.boolT) $ berghofe@13725: incr_boundvars 1 r $ (Const ("op :", elT --> setT --> HOLogic.boolT) $ berghofe@13725: Bound 0 $ incr_boundvars 1 s)); wenzelm@16121: in wenzelm@18708: Extraction.add_types skalberg@15531: [("bool", ([], NONE)), wenzelm@18708: ("set", ([realizes_set_proc], SOME mk_realizes_set))] #> wenzelm@18708: Extraction.set_preprocessor (fn thy => berghofe@13403: Proofterm.rewrite_proof_notypes berghofe@13403: ([], ("HOL/elim_cong", RewriteHOLProof.elim_cong) :: berghofe@13403: ProofRewriteRules.rprocs true) o wenzelm@17203: Proofterm.rewrite_proof thy berghofe@13599: (RewriteHOLProof.rews, ProofRewriteRules.rprocs true) o haftmann@27982: ProofRewriteRules.elim_vars (curry Const @{const_name default})) wenzelm@16121: end berghofe@13403: *} berghofe@13403: berghofe@13403: lemmas [extraction_expand] = berghofe@22281: meta_spec atomize_eq atomize_all atomize_imp atomize_conj berghofe@13403: allE rev_mp conjE Eq_TrueI Eq_FalseI eqTrueI eqTrueE eq_cong2 haftmann@20941: notE' impE' impE iffE imp_cong simp_thms eq_True eq_False wenzelm@18456: induct_forall_eq induct_implies_eq induct_equal_eq induct_conj_eq wenzelm@18456: induct_forall_def induct_implies_def induct_equal_def induct_conj_def wenzelm@18511: induct_atomize induct_rulify induct_rulify_fallback berghofe@25424: True_implies_equals TrueE berghofe@13403: berghofe@13403: datatype sumbool = Left | Right berghofe@13403: berghofe@13403: subsection {* Type of extracted program *} berghofe@13403: berghofe@13403: extract_type berghofe@13403: "typeof (Trueprop P) \ typeof P" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE(Null)) \ typeof Q \ Type (TYPE('Q)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('Q))" berghofe@13403: berghofe@13403: "typeof Q \ Type (TYPE(Null)) \ typeof (P \ Q) \ Type (TYPE(Null))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE('P)) \ typeof Q \ Type (TYPE('Q)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('P \ 'Q))" berghofe@13403: berghofe@13403: "(\x. typeof (P x)) \ (\x. Type (TYPE(Null))) \ berghofe@13403: typeof (\x. P x) \ Type (TYPE(Null))" berghofe@13403: berghofe@13403: "(\x. typeof (P x)) \ (\x. Type (TYPE('P))) \ berghofe@13403: typeof (\x::'a. P x) \ Type (TYPE('a \ 'P))" berghofe@13403: berghofe@13403: "(\x. typeof (P x)) \ (\x. Type (TYPE(Null))) \ berghofe@13403: typeof (\x::'a. P x) \ Type (TYPE('a))" berghofe@13403: berghofe@13403: "(\x. typeof (P x)) \ (\x. Type (TYPE('P))) \ berghofe@13403: typeof (\x::'a. P x) \ Type (TYPE('a \ 'P))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE(Null)) \ typeof Q \ Type (TYPE(Null)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE(sumbool))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE(Null)) \ typeof Q \ Type (TYPE('Q)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('Q option))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE('P)) \ typeof Q \ Type (TYPE(Null)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('P option))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE('P)) \ typeof Q \ Type (TYPE('Q)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('P + 'Q))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE(Null)) \ typeof Q \ Type (TYPE('Q)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('Q))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE('P)) \ typeof Q \ Type (TYPE(Null)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('P))" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE('P)) \ typeof Q \ Type (TYPE('Q)) \ berghofe@13403: typeof (P \ Q) \ Type (TYPE('P \ 'Q))" berghofe@13403: berghofe@13403: "typeof (P = Q) \ typeof ((P \ Q) \ (Q \ P))" berghofe@13403: berghofe@13403: "typeof (x \ P) \ typeof P" berghofe@13403: berghofe@13403: subsection {* Realizability *} berghofe@13403: berghofe@13403: realizability berghofe@13403: "(realizes t (Trueprop P)) \ (Trueprop (realizes t P))" berghofe@13403: berghofe@13403: "(typeof P) \ (Type (TYPE(Null))) \ berghofe@13403: (realizes t (P \ Q)) \ (realizes Null P \ realizes t Q)" berghofe@13403: berghofe@13403: "(typeof P) \ (Type (TYPE('P))) \ berghofe@13403: (typeof Q) \ (Type (TYPE(Null))) \ berghofe@13403: (realizes t (P \ Q)) \ (\x::'P. realizes x P \ realizes Null Q)" berghofe@13403: berghofe@13403: "(realizes t (P \ Q)) \ (\x. realizes x P \ realizes (t x) Q)" berghofe@13403: berghofe@13403: "(\x. typeof (P x)) \ (\x. Type (TYPE(Null))) \ berghofe@13403: (realizes t (\x. P x)) \ (\x. realizes Null (P x))" berghofe@13403: berghofe@13403: "(realizes t (\x. P x)) \ (\x. realizes (t x) (P x))" berghofe@13403: berghofe@13403: "(\x. typeof (P x)) \ (\x. Type (TYPE(Null))) \ berghofe@13403: (realizes t (\x. P x)) \ (realizes Null (P t))" berghofe@13403: berghofe@13403: "(realizes t (\x. P x)) \ (realizes (snd t) (P (fst t)))" berghofe@13403: berghofe@13403: "(typeof P) \ (Type (TYPE(Null))) \ berghofe@13403: (typeof Q) \ (Type (TYPE(Null))) \ berghofe@13403: (realizes t (P \ Q)) \ berghofe@13403: (case t of Left \ realizes Null P | Right \ realizes Null Q)" berghofe@13403: berghofe@13403: "(typeof P) \ (Type (TYPE(Null))) \ berghofe@13403: (realizes t (P \ Q)) \ berghofe@13403: (case t of None \ realizes Null P | Some q \ realizes q Q)" berghofe@13403: berghofe@13403: "(typeof Q) \ (Type (TYPE(Null))) \ berghofe@13403: (realizes t (P \ Q)) \ berghofe@13403: (case t of None \ realizes Null Q | Some p \ realizes p P)" berghofe@13403: berghofe@13403: "(realizes t (P \ Q)) \ berghofe@13403: (case t of Inl p \ realizes p P | Inr q \ realizes q Q)" berghofe@13403: berghofe@13403: "(typeof P) \ (Type (TYPE(Null))) \ berghofe@13403: (realizes t (P \ Q)) \ (realizes Null P \ realizes t Q)" berghofe@13403: berghofe@13403: "(typeof Q) \ (Type (TYPE(Null))) \ berghofe@13403: (realizes t (P \ Q)) \ (realizes t P \ realizes Null Q)" berghofe@13403: berghofe@13403: "(realizes t (P \ Q)) \ (realizes (fst t) P \ realizes (snd t) Q)" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE(Null)) \ berghofe@13403: realizes t (\ P) \ \ realizes Null P" berghofe@13403: berghofe@13403: "typeof P \ Type (TYPE('P)) \ berghofe@13403: realizes t (\ P) \ (\x::'P. \ realizes x P)" berghofe@13403: berghofe@13403: "typeof (P::bool) \ Type (TYPE(Null)) \ berghofe@13403: typeof Q \ Type (TYPE(Null)) \ berghofe@13403: realizes t (P = Q) \ realizes Null P = realizes Null Q" berghofe@13403: berghofe@13403: "(realizes t (P = Q)) \ (realizes t ((P \ Q) \ (Q \ P)))" berghofe@13403: berghofe@13403: subsection {* Computational content of basic inference rules *} berghofe@13403: berghofe@13403: theorem disjE_realizer: berghofe@13403: assumes r: "case x of Inl p \ P p | Inr q \ Q q" berghofe@13403: and r1: "\p. P p \ R (f p)" and r2: "\q. Q q \ R (g q)" berghofe@13403: shows "R (case x of Inl p \ f p | Inr q \ g q)" berghofe@13403: proof (cases x) berghofe@13403: case Inl berghofe@13403: with r show ?thesis by simp (rule r1) berghofe@13403: next berghofe@13403: case Inr berghofe@13403: with r show ?thesis by simp (rule r2) berghofe@13403: qed berghofe@13403: berghofe@13403: theorem disjE_realizer2: berghofe@13403: assumes r: "case x of None \ P | Some q \ Q q" berghofe@13403: and r1: "P \ R f" and r2: "\q. Q q \ R (g q)" berghofe@13403: shows "R (case x of None \ f | Some q \ g q)" berghofe@13403: proof (cases x) berghofe@13403: case None berghofe@13403: with r show ?thesis by simp (rule r1) berghofe@13403: next berghofe@13403: case Some berghofe@13403: with r show ?thesis by simp (rule r2) berghofe@13403: qed berghofe@13403: berghofe@13403: theorem disjE_realizer3: berghofe@13403: assumes r: "case x of Left \ P | Right \ Q" berghofe@13403: and r1: "P \ R f" and r2: "Q \ R g" berghofe@13403: shows "R (case x of Left \ f | Right \ g)" berghofe@13403: proof (cases x) berghofe@13403: case Left berghofe@13403: with r show ?thesis by simp (rule r1) berghofe@13403: next berghofe@13403: case Right berghofe@13403: with r show ?thesis by simp (rule r2) berghofe@13403: qed berghofe@13403: berghofe@13403: theorem conjI_realizer: berghofe@13403: "P p \ Q q \ P (fst (p, q)) \ Q (snd (p, q))" berghofe@13403: by simp berghofe@13403: berghofe@13403: theorem exI_realizer: berghofe@13918: "P y x \ P (snd (x, y)) (fst (x, y))" by simp berghofe@13918: berghofe@13918: theorem exE_realizer: "P (snd p) (fst p) \ berghofe@15393: (\x y. P y x \ Q (f x y)) \ Q (let (x, y) = p in f x y)" berghofe@15393: by (cases p) (simp add: Let_def) berghofe@13918: berghofe@13918: theorem exE_realizer': "P (snd p) (fst p) \ berghofe@13918: (\x y. P y x \ Q) \ Q" by (cases p) simp berghofe@13403: haftmann@27982: setup {* haftmann@27982: Sign.add_const_constraint (@{const_name "default"}, SOME @{typ "'a::type"}) haftmann@27982: *} haftmann@27982: berghofe@13403: realizers berghofe@13725: impI (P, Q): "\pq. pq" skalberg@14168: "\ P Q pq (h: _). allI \ _ \ (\ x. impI \ _ \ _ \ (h \ x))" berghofe@13403: berghofe@13403: impI (P): "Null" skalberg@14168: "\ P Q (h: _). allI \ _ \ (\ x. impI \ _ \ _ \ (h \ x))" berghofe@13403: skalberg@14168: impI (Q): "\q. q" "\ P Q q. impI \ _ \ _" berghofe@13403: berghofe@13725: impI: "Null" "impI" berghofe@13403: berghofe@13725: mp (P, Q): "\pq. pq" skalberg@14168: "\ P Q pq (h: _) p. mp \ _ \ _ \ (spec \ _ \ p \ h)" berghofe@13403: berghofe@13403: mp (P): "Null" skalberg@14168: "\ P Q (h: _) p. mp \ _ \ _ \ (spec \ _ \ p \ h)" berghofe@13403: skalberg@14168: mp (Q): "\q. q" "\ P Q q. mp \ _ \ _" berghofe@13403: berghofe@13725: mp: "Null" "mp" berghofe@13403: skalberg@14168: allI (P): "\p. p" "\ P p. allI \ _" berghofe@13403: berghofe@13725: allI: "Null" "allI" berghofe@13403: skalberg@14168: spec (P): "\x p. p x" "\ P x p. spec \ _ \ x" berghofe@13403: berghofe@13725: spec: "Null" "spec" berghofe@13403: skalberg@14168: exI (P): "\x p. (x, p)" "\ P x p. exI_realizer \ P \ p \ x" berghofe@13403: skalberg@14168: exI: "\x. x" "\ P x (h: _). h" berghofe@13403: berghofe@15393: exE (P, Q): "\p pq. let (x, y) = p in pq x y" skalberg@14168: "\ P Q p (h: _) pq. exE_realizer \ P \ p \ Q \ pq \ h" berghofe@13403: berghofe@13403: exE (P): "Null" skalberg@14168: "\ P Q p. exE_realizer' \ _ \ _ \ _" berghofe@13403: berghofe@13725: exE (Q): "\x pq. pq x" skalberg@14168: "\ P Q x (h1: _) pq (h2: _). h2 \ x \ h1" berghofe@13403: berghofe@13403: exE: "Null" skalberg@14168: "\ P Q x (h1: _) (h2: _). h2 \ x \ h1" berghofe@13403: berghofe@13725: conjI (P, Q): "Pair" skalberg@14168: "\ P Q p (h: _) q. conjI_realizer \ P \ p \ Q \ q \ h" berghofe@13403: berghofe@13725: conjI (P): "\p. p" skalberg@14168: "\ P Q p. conjI \ _ \ _" berghofe@13403: berghofe@13725: conjI (Q): "\q. q" skalberg@14168: "\ P Q (h: _) q. conjI \ _ \ _ \ h" berghofe@13403: berghofe@13725: conjI: "Null" "conjI" berghofe@13403: berghofe@13725: conjunct1 (P, Q): "fst" skalberg@14168: "\ P Q pq. conjunct1 \ _ \ _" berghofe@13403: berghofe@13725: conjunct1 (P): "\p. p" skalberg@14168: "\ P Q p. conjunct1 \ _ \ _" berghofe@13403: berghofe@13403: conjunct1 (Q): "Null" skalberg@14168: "\ P Q q. conjunct1 \ _ \ _" berghofe@13403: berghofe@13725: conjunct1: "Null" "conjunct1" berghofe@13403: berghofe@13725: conjunct2 (P, Q): "snd" skalberg@14168: "\ P Q pq. conjunct2 \ _ \ _" berghofe@13403: berghofe@13403: conjunct2 (P): "Null" skalberg@14168: "\ P Q p. conjunct2 \ _ \ _" berghofe@13403: berghofe@13725: conjunct2 (Q): "\p. p" skalberg@14168: "\ P Q p. conjunct2 \ _ \ _" berghofe@13403: berghofe@13725: conjunct2: "Null" "conjunct2" berghofe@13725: berghofe@13725: disjI1 (P, Q): "Inl" skalberg@14168: "\ P Q p. iffD2 \ _ \ _ \ (sum.cases_1 \ P \ _ \ p)" berghofe@13403: berghofe@13725: disjI1 (P): "Some" skalberg@14168: "\ P Q p. iffD2 \ _ \ _ \ (option.cases_2 \ _ \ P \ p)" berghofe@13403: berghofe@13725: disjI1 (Q): "None" skalberg@14168: "\ P Q. iffD2 \ _ \ _ \ (option.cases_1 \ _ \ _)" berghofe@13403: berghofe@13725: disjI1: "Left" skalberg@14168: "\ P Q. iffD2 \ _ \ _ \ (sumbool.cases_1 \ _ \ _)" berghofe@13403: berghofe@13725: disjI2 (P, Q): "Inr" skalberg@14168: "\ Q P q. iffD2 \ _ \ _ \ (sum.cases_2 \ _ \ Q \ q)" berghofe@13403: berghofe@13725: disjI2 (P): "None" skalberg@14168: "\ Q P. iffD2 \ _ \ _ \ (option.cases_1 \ _ \ _)" berghofe@13403: berghofe@13725: disjI2 (Q): "Some" skalberg@14168: "\ Q P q. iffD2 \ _ \ _ \ (option.cases_2 \ _ \ Q \ q)" berghofe@13403: berghofe@13725: disjI2: "Right" skalberg@14168: "\ Q P. iffD2 \ _ \ _ \ (sumbool.cases_2 \ _ \ _)" berghofe@13403: berghofe@13725: disjE (P, Q, R): "\pq pr qr. berghofe@13403: (case pq of Inl p \ pr p | Inr q \ qr q)" skalberg@14168: "\ P Q R pq (h1: _) pr (h2: _) qr. berghofe@13725: disjE_realizer \ _ \ _ \ pq \ R \ pr \ qr \ h1 \ h2" berghofe@13403: berghofe@13725: disjE (Q, R): "\pq pr qr. berghofe@13403: (case pq of None \ pr | Some q \ qr q)" skalberg@14168: "\ P Q R pq (h1: _) pr (h2: _) qr. berghofe@13725: disjE_realizer2 \ _ \ _ \ pq \ R \ pr \ qr \ h1 \ h2" berghofe@13403: berghofe@13725: disjE (P, R): "\pq pr qr. berghofe@13403: (case pq of None \ qr | Some p \ pr p)" skalberg@14168: "\ P Q R pq (h1: _) pr (h2: _) qr (h3: _). berghofe@13725: disjE_realizer2 \ _ \ _ \ pq \ R \ qr \ pr \ h1 \ h3 \ h2" berghofe@13403: berghofe@13725: disjE (R): "\pq pr qr. berghofe@13403: (case pq of Left \ pr | Right \ qr)" skalberg@14168: "\ P Q R pq (h1: _) pr (h2: _) qr. berghofe@13725: disjE_realizer3 \ _ \ _ \ pq \ R \ pr \ qr \ h1 \ h2" berghofe@13403: berghofe@13403: disjE (P, Q): "Null" skalberg@14168: "\ P Q R pq. disjE_realizer \ _ \ _ \ pq \ (\x. R) \ _ \ _" berghofe@13403: berghofe@13403: disjE (Q): "Null" skalberg@14168: "\ P Q R pq. disjE_realizer2 \ _ \ _ \ pq \ (\x. R) \ _ \ _" berghofe@13403: berghofe@13403: disjE (P): "Null" skalberg@14168: "\ P Q R pq (h1: _) (h2: _) (h3: _). berghofe@13725: disjE_realizer2 \ _ \ _ \ pq \ (\x. R) \ _ \ _ \ h1 \ h3 \ h2" berghofe@13403: berghofe@13403: disjE: "Null" skalberg@14168: "\ P Q R pq. disjE_realizer3 \ _ \ _ \ pq \ (\x. R) \ _ \ _" berghofe@13403: haftmann@27982: FalseE (P): "default" skalberg@14168: "\ P. FalseE \ _" berghofe@13403: berghofe@13725: FalseE: "Null" "FalseE" berghofe@13403: berghofe@13403: notI (P): "Null" skalberg@14168: "\ P (h: _). allI \ _ \ (\ x. notI \ _ \ (h \ x))" berghofe@13403: berghofe@13725: notI: "Null" "notI" berghofe@13403: haftmann@27982: notE (P, R): "\p. default" skalberg@14168: "\ P R (h: _) p. notE \ _ \ _ \ (spec \ _ \ p \ h)" berghofe@13403: berghofe@13403: notE (P): "Null" skalberg@14168: "\ P R (h: _) p. notE \ _ \ _ \ (spec \ _ \ p \ h)" berghofe@13403: haftmann@27982: notE (R): "default" skalberg@14168: "\ P R. notE \ _ \ _" berghofe@13403: berghofe@13725: notE: "Null" "notE" berghofe@13403: berghofe@13725: subst (P): "\s t ps. ps" skalberg@14168: "\ s t P (h: _) ps. subst \ s \ t \ P ps \ h" berghofe@13403: berghofe@13725: subst: "Null" "subst" berghofe@13725: berghofe@13725: iffD1 (P, Q): "fst" skalberg@14168: "\ Q P pq (h: _) p. berghofe@13403: mp \ _ \ _ \ (spec \ _ \ p \ (conjunct1 \ _ \ _ \ h))" berghofe@13403: berghofe@13725: iffD1 (P): "\p. p" skalberg@14168: "\ Q P p (h: _). mp \ _ \ _ \ (conjunct1 \ _ \ _ \ h)" berghofe@13403: berghofe@13403: iffD1 (Q): "Null" skalberg@14168: "\ Q P q1 (h: _) q2. berghofe@13403: mp \ _ \ _ \ (spec \ _ \ q2 \ (conjunct1 \ _ \ _ \ h))" berghofe@13403: berghofe@13725: iffD1: "Null" "iffD1" berghofe@13403: berghofe@13725: iffD2 (P, Q): "snd" skalberg@14168: "\ P Q pq (h: _) q. berghofe@13403: mp \ _ \ _ \ (spec \ _ \ q \ (conjunct2 \ _ \ _ \ h))" berghofe@13403: berghofe@13725: iffD2 (P): "\p. p" skalberg@14168: "\ P Q p (h: _). mp \ _ \ _ \ (conjunct2 \ _ \ _ \ h)" berghofe@13403: berghofe@13403: iffD2 (Q): "Null" skalberg@14168: "\ P Q q1 (h: _) q2. berghofe@13403: mp \ _ \ _ \ (spec \ _ \ q2 \ (conjunct2 \ _ \ _ \ h))" berghofe@13403: berghofe@13725: iffD2: "Null" "iffD2" berghofe@13403: berghofe@13725: iffI (P, Q): "Pair" skalberg@14168: "\ P Q pq (h1 : _) qp (h2 : _). conjI_realizer \ berghofe@13725: (\pq. \x. P x \ Q (pq x)) \ pq \ berghofe@13725: (\qp. \x. Q x \ P (qp x)) \ qp \ skalberg@14168: (allI \ _ \ (\ x. impI \ _ \ _ \ (h1 \ x))) \ skalberg@14168: (allI \ _ \ (\ x. impI \ _ \ _ \ (h2 \ x)))" berghofe@13403: berghofe@13725: iffI (P): "\p. p" skalberg@14168: "\ P Q (h1 : _) p (h2 : _). conjI \ _ \ _ \ skalberg@14168: (allI \ _ \ (\ x. impI \ _ \ _ \ (h1 \ x))) \ berghofe@13403: (impI \ _ \ _ \ h2)" berghofe@13403: berghofe@13725: iffI (Q): "\q. q" skalberg@14168: "\ P Q q (h1 : _) (h2 : _). conjI \ _ \ _ \ berghofe@13403: (impI \ _ \ _ \ h1) \ skalberg@14168: (allI \ _ \ (\ x. impI \ _ \ _ \ (h2 \ x)))" berghofe@13403: berghofe@13725: iffI: "Null" "iffI" berghofe@13403: berghofe@13725: (* berghofe@13403: classical: "Null" skalberg@14168: "\ P. classical \ _" berghofe@13725: *) berghofe@13403: haftmann@27982: setup {* haftmann@27982: Sign.add_const_constraint (@{const_name "default"}, SOME @{typ "'a::default"}) haftmann@27982: *} haftmann@27982: berghofe@13403: end