conjuncts : term -> term list
conjuncts(list_mk_conj([t1;...;tn]))
# conjuncts `((p /\ q) /\ r) /\ ((p /\ s /\ t) /\ u)`;; val it : term list = [`p`; `q`; `r`; `p`; `s`; `t`; `u`] # conjuncts(list_mk_conj [`a /\ b`; `c:bool`; `d /\ e /\ f`]);; val it : term list = [`a`; `b`; `c`; `d`; `e`; `f`]