X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fng_tactics%2FnTacStatus.ml;h=819160eab02a149e48a637c86ffa599efe015c11;hb=6b76c5b3b82753966cabffd8536d8dd9f8cada20;hp=118261af027c2efa101facb0d21a39d611b03a0e;hpb=aa5c8c99c9f7ae285883cff133fc02b3d064888c;p=helm.git diff --git a/matita/components/ng_tactics/nTacStatus.ml b/matita/components/ng_tactics/nTacStatus.ml index 118261af0..819160eab 100644 --- a/matita/components/ng_tactics/nTacStatus.ml +++ b/matita/components/ng_tactics/nTacStatus.ml @@ -568,8 +568,8 @@ let compare e1 e2 = match e1,e2 with | Constant (u1,a1),Constant (u2,a2) -> let x = NUri.compare u1 u2 in - if x = 0 then Pervasives.compare a1 a2 else x - | e1,e2 -> Pervasives.compare e1 e2 + if x = 0 then Stdlib.compare a1 a2 else x + | e1,e2 -> Stdlib.compare e1 e2 ;; @@ -578,7 +578,7 @@ end module Ncic_termOT : Set.OrderedType with type t = cic_term = struct type t = cic_term - let compare = Pervasives.compare + let compare = Stdlib.compare end module Ncic_termSet : Set.S with type elt = cic_term = Set.Make(Ncic_termOT)