Re: [Hol-info] Best way to conduct a generalized IMP_TRANS

2019-03-19 Thread Haitao Zhang
Thanks for the suggestion! I can use satTheory.AND_IMP to renormalize the intermediate resolution back to an implicative form, which should work. The reason that this issue came up is that asm_simp_tac seems to be sensitive to the ordering of antecedents/assumptions. I was trying to do a step

Re: [Hol-info] Best way to conduct a generalized IMP_TRANS

2019-03-19 Thread Waqar Ahmad via hol-info
Hi Haitao, You can introduce the conjunction among the antecedents as: val GEN_IMP_TRANS_conj = (REWRITE_RULE [GSYM satTheory.AND_IMP] GEN_IMP_TRANS); val GEN_IMP_TRANS_conj = ⊢ ∀P Q R S. (∀x. P x ⇒ Q (R x)) ∧ (∀x. Q x ⇒ S x) ⇒ ∀x. P x ⇒ S (R x): thm On Tue, Mar 19, 2019 at 5:30 AM