-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathno.mli
82 lines (64 loc) · 2.51 KB
/
no.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
open Signatures
type zero
type 'a plus
type 'a minus
type minus_omega
type plus_omega
type _ t
val zero : zero t
val one : zero plus t
val minus_one : zero minus t
val two : zero plus plus t
val minus_two : zero minus minus t
val minus_omega : minus_omega t
val plus_omega : plus_omega t
type strict
type nonstrict
type _ strictness = Strict : strict strictness | Nonstrict : nonstrict strictness
type (_, _, _) lt
val le_refl : 'a t -> ('a, nonstrict, 'a) lt
val plusomega_nlt : (plus_omega, strict, 'a) lt -> 'b
val lt_to_le : ('a, strict, 'b) lt -> ('a, 's, 'b) lt
val le_plusomega : 'a t -> ('a, nonstrict, plus_omega) lt
val minusomega_le : 'a t -> (minus_omega, nonstrict, 'a) lt
val minusomega_lt_plusomega : (minus_omega, strict, plus_omega) lt
val zero_lt_plusomega : (zero, 's, plus_omega) lt
val minusomega_lt_zero : (minus_omega, 's, zero) lt
type (_, _, _) strict_trans =
| Strict_any : (strict, 'a, 'b) strict_trans
| Any_strict : ('a, strict, 'b) strict_trans
| Nonstrict_nonstrict : (nonstrict, nonstrict, nonstrict) strict_trans
type (_, _) has_strict_trans =
| Strict_trans : ('s1, 's2, 's3) strict_trans -> ('s1, 's2) has_strict_trans
val strict_trans : 's1 strictness -> 's2 strictness -> ('s1, 's2) has_strict_trans
val equal : 'a t -> 'b t -> ('a, 'b) Eq.compare
val equalb : 'a t -> 'b t -> bool
val lt_trans :
('s1, 's2, 's3) strict_trans -> ('a, 's1, 'b) lt -> ('b, 's2, 'c) lt -> ('a, 's3, 'c) lt
val lt_trans1 : ('a, 's1, 'b) lt -> ('b, 's2, 'c) lt -> ('a, 's1, 'c) lt
val compare : 's strictness -> 'a t -> 'b t -> ('a, 's, 'b) lt option
val to_rat : 'a t -> Q.t
val to_string : 'a t -> string
type wrapped = Wrap : 'a t -> wrapped
val of_rat : Q.t -> wrapped option
module Map : sig
module Make : functor (F : Fam2) -> sig
module Key : sig
type nonrec 'a t = 'a t
end
include MAP with module Key := Key and module F := F
type ('x, 'b) map_compare = {
map_lt : 'a 's. ('a, strict, 'b) lt -> ('x, 'a) F.t -> ('x, 'a) F.t;
map_gt : 'a 's. ('b, strict, 'a) lt -> ('x, 'a) F.t -> ('x, 'a) F.t;
map_eq : ('x, 'b) F.t -> ('x, 'b) F.t;
}
val map_compare : ('x, 'b) map_compare -> 'b Key.t -> 'x t -> 'x t
type ('x, 'a) upper =
| Upper : ('a, strict, 'c) lt * ('x, 'c) F.t -> ('x, 'a) upper
| No_upper : ('x, 'a) upper
type ('x, 'a) lower =
| Lower : ('b, strict, 'a) lt * ('x, 'b) F.t -> ('x, 'a) lower
| No_lower : ('x, 'a) lower
val add_cut : 'b Key.t -> (('x, 'b) lower -> ('x, 'b) upper -> ('x, 'b) F.t) -> 'x t -> 'x t
end
end