From cb1ae314411d78952062e5092804b85d981ad6e1 Mon Sep 17 00:00:00 2001 From: barras Date: Wed, 12 Mar 2003 17:49:21 +0000 Subject: *** empty log message *** git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3761 85f007b7-540e-0410-9357-904b9bb8a0f7 --- contrib/omega/coq_omega.ml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'contrib/omega/coq_omega.ml') diff --git a/contrib/omega/coq_omega.ml b/contrib/omega/coq_omega.ml index 4373da462..651b808c0 100644 --- a/contrib/omega/coq_omega.ml +++ b/contrib/omega/coq_omega.ml @@ -151,7 +151,7 @@ let dest_const_apply t = | Ind isp -> IndRef isp | _ -> raise Destruct in - id_of_global None ref, args + id_of_global ref, args type result = | Kvar of string @@ -164,11 +164,11 @@ let destructurate t = (* let env = Global.env() in*) match kind_of_term c, args with | Const sp, args -> - Kapp (string_of_id (id_of_global None (ConstRef sp)),args) + Kapp (string_of_id (id_of_global (ConstRef sp)),args) | Construct csp , args -> - Kapp (string_of_id (id_of_global None (ConstructRef csp)), args) + Kapp (string_of_id (id_of_global (ConstructRef csp)), args) | Ind isp, args -> - Kapp (string_of_id (id_of_global None (IndRef isp)),args) + Kapp (string_of_id (id_of_global (IndRef isp)),args) | Var id,[] -> Kvar(string_of_id id) | Prod (Anonymous,typ,body), [] -> Kimp(typ,body) | Prod (Name _,_,_),[] -> error "Omega: Not a quantifier-free goal" -- cgit v1.2.3