(************************************************************************) (* * The Rocq Prover / The Rocq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************)
module type HashedType = sig type t val compare : t -> t -> int val hash : t -> int end
module SetMake(M : HashedType) = struct (** Hash Sets use hashes to prevent doing too many comparison tests. They associate to each hash the set of keys having that hash.
Invariants:
1. There is no empty set in the intmap. 2. All values in the same set have the same hash, which is the int to which it is associated in the intmap.
*)
module Set = Set.Make(M)
type elt = M.t
type t = Set.t Int.Map.t
let empty = Int.Map.empty
let is_empty = Int.Map.is_empty
let mem x s = if Int.Map.is_empty s thenfalse else let h = M.hash x in try let m = Int.Map.find h s in Set.mem x m with Not_found -> false
let add x s = let h = M.hash x in
Int.Map.update h (function
| None -> Some (Set.singleton x)
| Some m -> Some (Set.add x m))
s
let singleton x = let h = M.hash x in let m = Set.singleton x in
Int.Map.singleton h m
let remove x s = if Int.Map.is_empty s then s else let h = M.hash x in
Int.Map.update h (function
| None -> None
| Some m -> let m = Set.remove x m in ifSet.is_empty m then None else Some m)
s
let height s = Int.Map.height s
let is_smaller s1 s2 = height s1 <= height s2 + 3
(** Assumes s1 << s2 *) let fast_union s1 s2 = let fold h s accu = try Int.Map.modify h (fun _ s' -> Set.fold Set.add s s') accu with Not_found -> Int.Map.add h s accu in
Int.Map.fold fold s1 s2
let union s1 s2 = if is_smaller s1 s2 then fast_union s1 s2 elseif is_smaller s2 s1 then fast_union s2 s1 else let fu _ m1 m2 = match m1, m2 with
| None, None -> None
| (Some _ as m), None | None, (Some _ as m) -> m
| Some m1, Some m2 -> Some (Set.union m1 m2) in
Int.Map.merge fu s1 s2
(** Assumes s1 << s2 *) let fast_inter s1 s2 = let fold h s accu = try let s' = Int.Map.find h s2 in let si = Set.filter (fun e -> Set.mem e s') s in ifSet.is_empty si then accu else Int.Map.add h si accu with Not_found -> accu in
Int.Map.fold fold s1 Int.Map.empty
let inter s1 s2 = if is_smaller s1 s2 then fast_inter s1 s2 elseif is_smaller s2 s1 then fast_inter s2 s1 else let fu _ m1 m2 = match m1, m2 with
| None, None -> None
| Some _, None | None, Some _ -> None
| Some m1, Some m2 -> let m = Set.inter m1 m2 in ifSet.is_empty m then None else Some m in
Int.Map.merge fu s1 s2
(** Assumes s1 << s2 *) let fast_diff_l s1 s2 = let fold h s accu = try let s' = Int.Map.find h s2 in let si = Set.filter (fun e -> not (Set.mem e s')) s in ifSet.is_empty si then accu else Int.Map.add h si accu with Not_found -> Int.Map.add h s accu in
Int.Map.fold fold s1 Int.Map.empty
(** Assumes s2 << s1 *) let fast_diff_r s1 s2 = let fold h s accu = try let s' = Int.Map.find h accu in let si = Set.filter (fun e -> not (Set.mem e s)) s' in ifSet.is_empty si then Int.Map.remove h accu else Int.Map.set h si accu with Not_found -> accu in
Int.Map.fold fold s2 s1
let diff s1 s2 = if is_smaller s1 s2 then fast_diff_l s1 s2 elseif is_smaller s2 s2 then fast_diff_r s1 s2 else let fu _ m1 m2 = match m1, m2 with
| None, None -> None
| (Some _ as m), None -> m
| None, Some _ -> None
| Some m1, Some m2 -> let m = Set.diff m1 m2 in ifSet.is_empty m then None else Some m in
Int.Map.merge fu s1 s2
let compare s1 s2 = Int.Map.compare Set.compare s1 s2
let equal s1 s2 = Int.Map.equal Set.equal s1 s2
let subset s1 s2 = let check h m1 = let m2 = try Int.Map.find h s2 with Not_found -> Set.empty in Set.subset m1 m2 in
Int.Map.for_all check s1
let iter f s = let fi _ m = Set.iter f m in
Int.Map.iter fi s
let fold f s accu = let ff _ m accu = Set.fold f m accu in
Int.Map.fold ff s accu
let for_all f s = let ff _ m = Set.for_all f m in
Int.Map.for_all ff s
letexists f s = let fe _ m = Set.exists f m in
Int.Map.exists fe s
letfilter f s = let ff m = Set.filter f m in let s = Int.Map.map ff s in
Int.Map.filter (fun _ m -> not (Set.is_empty m)) s
let filter_map f s =
Int.Map.filter_map (fun _ m -> let m = Set.filter_map f m in ifSet.is_empty m then None else Some m)
s
let partition f s = let fold h m (sl, sr) = let (ml, mr) = Set.partition f m in let sl = ifSet.is_empty ml then sl else Int.Map.add h ml sl in let sr = ifSet.is_empty mr then sr else Int.Map.add h mr sr in
(sl, sr) in
Int.Map.fold fold s (Int.Map.empty, Int.Map.empty)
let cardinal s = let fold _ m accu = accu + Set.cardinal m in
Int.Map.fold fold s 0
let elements s = let fold _ m accu = Set.fold (fun x accu -> x :: accu) m accu in
Int.Map.fold fold s []
let choose s = let (_, m) = Int.Map.choose s in Set.choose m
end
module Make(M : HashedType) = struct (** This module is essentially the same as SetMake, except that we have maps
instead of sets in the intmap. Invariants are the same. *)
module Set = SetMake(M)
module Map = CMap.Make(M)
type key = M.t
type'a t = 'a Map.t Int.Map.t
let empty = Int.Map.empty
let is_empty = Int.Map.is_empty
let mem k s = if Int.Map.is_empty s thenfalse else let h = M.hash k in try let m = Int.Map.find h s in Map.mem k m with Not_found -> false
let add k x s = let h = M.hash k in
Int.Map.update h (function
| None -> Some (Map.singleton k x)
| Some m -> Some (Map.add k x m))
s
let singleton k x = let h = M.hash k in
Int.Map.singleton h (Map.singleton k x)
let remove k s = if Int.Map.is_empty s then s else let h = M.hash k in
Int.Map.update h (function
| None -> None
| Some m -> let m = Map.remove k m in ifMap.is_empty m then None else Some m)
s
let merge f s1 s2 = let fm h m1 m2 = match m1, m2 with
| None, None -> None
| Some m, None -> let m = Map.merge f m Map.empty in ifMap.is_empty m then None else Some m
| None, Some m -> let m = Map.merge f Map.empty m in ifMap.is_empty m then None else Some m
| Some m1, Some m2 -> let m = Map.merge f m1 m2 in ifMap.is_empty m then None else Some m in
Int.Map.merge fm s1 s2
let union f s1 s2 = let fm h m1 m2 = let m = Map.union f m1 m2 in ifMap.is_empty m then None else Some m in
Int.Map.union fm s1 s2
let compare f s1 s2 = let fc m1 m2 = Map.compare f m1 m2 in
Int.Map.compare fc s1 s2
let equal f s1 s2 = let fe m1 m2 = Map.equal f m1 m2 in
Int.Map.equal fe s1 s2
let iter f s = let fi _ m = Map.iter f m in
Int.Map.iter fi s
let fold f s accu = let ff _ m accu = Map.fold f m accu in
Int.Map.fold ff s accu
let for_all f s = let ff _ m = Map.for_all f m in
Int.Map.for_all ff s
letexists f s = let fe _ m = Map.exists f m in
Int.Map.exists fe s
letfilter f s = let ff m = Map.filter f m in let s = Int.Map.map ff s in
Int.Map.filter (fun _ m -> not (Map.is_empty m)) s
let filter_map f s = let ff m = Map.filter_map f m in let s = Int.Map.map ff s in
Int.Map.filter (fun _ m -> not (Map.is_empty m)) s
let partition f s = let fold h m (sl, sr) = let (ml, mr) = Map.partition f m in let sl = ifMap.is_empty ml then sl else Int.Map.add h ml sl in let sr = ifMap.is_empty mr then sr else Int.Map.add h mr sr in
(sl, sr) in
Int.Map.fold fold s (Int.Map.empty, Int.Map.empty)
let cardinal s = let fold _ m accu = accu + Map.cardinal m in
Int.Map.fold fold s 0
let bindings s = let fold _ m accu = Map.fold (fun k x accu -> (k, x) :: accu) m accu in
Int.Map.fold fold s []
let choose s = let (_, m) = Int.Map.choose s in Map.choose m
let choose_opt s = try Some (choose s) with Not_found -> None
letfind k s = if Int.Map.is_empty s thenraise Not_found else let h = M.hash k in let m = Int.Map.find h s in Map.find k m
let find_opt k s = if Int.Map.is_empty s then None else let h = M.hash k in match Int.Map.find_opt h s with
| None -> None
| Some m -> Map.find_opt k m
let get k s = let h = M.hash k in let m = Int.Map.get h s in Map.get k m
letmap f s = let fs m = Map.map f m in
Int.Map.map fs s
let mapi f s = let fs m = Map.mapi f m in
Int.Map.map fs s
let modify k f s = if Int.Map.is_empty s thenraise Not_found else let h = M.hash k in
Int.Map.modify h (fun _ m -> Map.modify k f m) s
let bind f s = let fb m = Map.bind f m in
Int.Map.map fb s
let domain s = Int.Map.mapMap.domain s
letset k x s = if Int.Map.is_empty s thenraise Not_found else let h = M.hash k in
Int.Map.modify h (fun _ m -> Map.set k x m) s
module Smart = struct
letmap f s = let fs m = Map.Smart.map f m in
Int.Map.Smart.map fs s
let mapi f s = let fs m = Map.Smart.mapi f m in
Int.Map.Smart.map fs s
end
let height s = Int.Map.height s
(* Not as efficient as the original version *) let filter_range f s = filter (fun x _ -> f x = 0) s
let of_list l = let fold accu (x, v) = add x v accu in List.fold_left fold empty l
let update k f m = if Int.Map.is_empty m then beginmatch f None with
| None -> m
| Some v -> singleton k v end else let aux = function
| None -> (match f None with
| None -> None
| Some v -> Some (Map.singleton k v))
| Some m -> let m = Map.update k f m in ifMap.is_empty m then None else Some m in
Int.Map.update (M.hash k) aux m
let fold f s accu = let ff _ m accu = ExtM.fold f m accu in
IntM.fold ff s accu
let mapi f s =
IntM.mapi (fun _ m -> ExtM.mapi f m) s end
let symmetric_diff_fold f lm rm acc =
Int.Map.symmetric_diff_fold
(fun _ l r -> match l, r with
| Some m, None -> Map.fold (fun k v acc -> f k (Some v) None acc) m
| None, Some m -> Map.fold (fun k v acc -> f k None (Some v) acc) m
| Some lm, Some rm -> Map.symmetric_diff_fold f lm rm
| None, None -> assert false)
lm rm acc
end
¤ Dauer der Verarbeitung: 0.2 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.