]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/acic_procedural/proceduralClassify.mli
added auto_cache in the dupable status after an
[helm.git] / helm / software / components / acic_procedural / proceduralClassify.mli
index aea3c6e8164dd1af743670cfd959a6d6d29a3997..fed7d9db7b42996a717a85dc92d1c747f3eb25fc 100644 (file)
  * http://cs.unibo.it/helm/.
  *)
 
-type dependence = CicInspect.S.t * bool
+type dependences = (CicInspect.S.t * bool) list
 
 type conclusion = (int * int * UriManager.uri * int) option
 
-val classify: Cic.context -> Cic.term -> dependence list * conclusion
+val make: 'a list -> dependences
 
-val to_string: dependence list * conclusion -> string
+val classify: Cic.context -> Cic.term -> dependences * conclusion
+
+val adjust: Cic.context -> Cic.annterm list -> ?goal:Cic.term -> dependences -> dependences
+
+val to_string: CicInspect.S.t -> dependences * conclusion -> string