(***********************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) (* const_order kn1 kn2 | (VarKey id1, VarKey id2) -> var_order id1 id2 | _ -> false (* summary operations *) let init() = (cst_transp := KNpred.full; var_transp := Idpred.full) let freeze () = (!var_transp, !cst_transp) let unfreeze (vo,co) = (cst_transp := co; var_transp := vo)