X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_omdoc%2Fcic2acic.mli;fp=helm%2Focaml%2Fcic_omdoc%2Fcic2acic.mli;h=2dd0a2f319652c0995b5230369ed582596df8aff;hb=ff981d975589f8d21a364e7cfe875647f7483cd9;hp=0288125b9a8ef6e64c17c6c85379346105d2b163;hpb=242e171b023f113228c55ad273797c63becf53e6;p=helm.git diff --git a/helm/ocaml/cic_omdoc/cic2acic.mli b/helm/ocaml/cic_omdoc/cic2acic.mli index 0288125b9..2dd0a2f31 100644 --- a/helm/ocaml/cic_omdoc/cic2acic.mli +++ b/helm/ocaml/cic_omdoc/cic2acic.mli @@ -31,11 +31,17 @@ type anntypes = {annsynthesized : Cic.annterm ; annexpected : Cic.annterm option} ;; +type sort_kind = [ `Prop | `Set | `Type | `CProp ] + +val string_of_sort: sort_kind -> string +val sort_of_string: string -> sort_kind +val sort_of_sort: Cic.sort -> sort_kind + val acic_of_cic_context' : int ref -> (* seed *) (Cic.id, Cic.term) Hashtbl.t -> (* ids_to_terms *) (Cic.id, Cic.id option) Hashtbl.t -> (* ids_to_father_ids *) - (Cic.id, string) Hashtbl.t -> (* ids_to_inner_sorts *) + (Cic.id, sort_kind) Hashtbl.t -> (* ids_to_inner_sorts *) (Cic.id, anntypes) Hashtbl.t -> (* ids_to_inner_types *) Cic.metasenv -> (* metasenv *) Cic.context -> (* context *) @@ -50,7 +56,7 @@ val acic_object_of_cic_object : Cic.annobj * (* annotated object *) (Cic.id, Cic.term) Hashtbl.t * (* ids_to_terms *) (Cic.id, Cic.id option) Hashtbl.t * (* ids_to_father_ids *) - (Cic.id, string) Hashtbl.t * (* ids_to_inner_sorts *) + (Cic.id, sort_kind) Hashtbl.t * (* ids_to_inner_sorts *) (Cic.id, anntypes) Hashtbl.t * (* ids_to_inner_types *) (Cic.id, Cic.conjecture) Hashtbl.t * (* ids_to_conjectures *) (Cic.id, Cic.hypothesis) Hashtbl.t (* ids_to_hypotheses *) @@ -61,5 +67,6 @@ val asequent_of_sequent : Cic.annconjecture * (* annotated conjecture *) (Cic.id, Cic.term) Hashtbl.t * (* ids_to_terms *) (Cic.id, Cic.id option) Hashtbl.t * (* ids_to_father_ids *) - (Cic.id, string) Hashtbl.t * (* ids_to_inner_sorts *) + (Cic.id, sort_kind) Hashtbl.t * (* ids_to_inner_sorts *) (Cic.id, Cic.hypothesis) Hashtbl.t (* ids_to_hypotheses *) +