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
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq 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) *)
(************************************************************************)
open Util
module NoDupArray : sig
(** Like a Parray, but the old pointers are invalidated instead of updated *)
type 'a t
val make : int -> 'a t
val add : int -> 'a -> 'a t -> 'a t
val to_array : 'a t -> 'a array
val pr : ('a -> Pp.t) -> 'a t -> Pp.t
end = struct
type 'a t = 'a option array * bool ref
let make n = Array.make n None, ref true
let invalidate b =
if not !b then
CErrors.anomaly Pp.(str "Tried to reuse invalidated NoDupArray.");
b := false
let add i e (a, b) =
invalidate b;
begin match a.(i) with
| None -> a.(i) <- Some e
| Some _ -> CErrors.anomaly Pp.(str "Tried to add duplicate in NoDupArray.")
end;
a, ref true
let to_array (a, b) =
invalidate b;
Array.map (function Some e -> e | None -> CErrors.anomaly Pp.(str "Tried to cast non-full NoDupArray.")) a
let pr pre (a, _) =
Pp.(str"[|"++prvect_with_sep pr_semicolon (function None -> str "\u{2205}" (* Empty set *) | Some e -> pre e) a++str"|]")
end
type ('term, 'quality, 'univ) t =
'term NoDupArray.t * 'quality NoDupArray.t * 'univ NoDupArray.t
let make (m, n, p) =
(NoDupArray.make m, NoDupArray.make n, NoDupArray.make p)
let add_term i t tqus : ('t, 'q, 'u) t =
on_pi1 (NoDupArray.add (i-1) t) tqus
let maybe_add_term io t tqus : ('t, 'q, 'u) t =
Option.fold_right (fun i -> add_term i t) io tqus
let add_quality i q tqus : ('t, 'q, 'u) t =
on_pi2 (NoDupArray.add i q) tqus
let maybe_add_quality io q tqus : ('t, 'q, 'u) t =
Option.fold_right (fun i -> add_quality i q) io tqus
let add_univ i u tqus : ('t, 'q, 'u) t =
on_pi3 (NoDupArray.add i u) tqus
let maybe_add_univ io u tqus : ('t, 'q, 'u) t =
Option.fold_right (fun i -> add_univ i u) io tqus
let to_arrays (ts, qs, us : _ t) =
(NoDupArray.to_array ts, NoDupArray.to_array qs, NoDupArray.to_array us)
let pr prt prq pru (ts, qas, us) =
Pp.(NoDupArray.pr prt ts ++ pr_comma () ++ NoDupArray.pr prq qas ++ pr_comma () ++ NoDupArray.pr pru us)
|