]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/paramodulation/utils.mli
moved string_of_equality into utils
[helm.git] / helm / ocaml / paramodulation / utils.mli
1 (* (weight of constants, [(meta, weight_of_meta)]) *)
2 type weight = int * (int * int) list;;
3
4 type comparison = Lt | Le | Eq | Ge | Gt | Incomparable;;
5
6 val print_metasenv: Cic.metasenv -> string
7
8 val print_subst: Cic.substitution -> string
9
10 val string_of_weight: weight -> string
11
12 val weight_of_term: Cic.term -> weight
13
14 val normalize_weight: int -> weight -> weight
15
16 val string_of_comparison: comparison -> string
17
18 val compare_weights: ?normalize:bool -> weight -> weight -> comparison
19
20 val nonrec_kbo: Cic.term -> Cic.term -> comparison
21
22 val string_of_equality:
23   ?env:Inference.environment -> Inference.equality -> string
24
25 val nonrec_kbo_w: (Cic.term * weight) -> (Cic.term * weight) -> comparison
26
27 val names_of_context: Cic.context -> (Cic.name option) list
28
29