CONJ_LIST : (int -> thm -> thm list)
A |- t1 /\ (t2 /\ ( ... /\ tn)...) ------------------------------------ CONJ_LIST n (A |- t1 /\ ... /\ tn) A |- t1 A |- t2 ... A |- tn
A |- (x /\ y) /\ z /\ wHere are some applications of CONJ_LIST to th:
#CONJ_LIST 0 th;; evaluation failed CONJ_LIST #CONJ_LIST 1 th;; [A |- (x /\ y) /\ z /\ w] : thm list #CONJ_LIST 2 th;; [A |- x /\ y; A |- z /\ w] : thm list #CONJ_LIST 3 th;; [A |- x /\ y; A |- z; A |- w] : thm list #CONJ_LIST 4 th;; evaluation failed CONJ_LIST