This file is indexed.

/usr/lib/ocaml/reins/oracleSet.mli is in libreins-ocaml-dev 0.1a-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
(**************************************************************************)
(*  The OCaml Reins Library                                               *)
(*                                                                        *)
(*  Copyright 2007 Mike Furr.                                             *)
(*  All rights reserved.  This file is distributed under the terms of the  *)
(*  GNU Lesser General Public License version 2.1 with the linking        *)
(*  exception given in the COPYING file.                                  *)
(**************************************************************************)

(** Set ADT which captures a DUG as a side effect *)

include DugADT.S
  
module Extractor : functor(A : Types.Mono.ArbitraryComparable) -> 
sig
  
  include Sets.GenSetSig with type 'a result = 'a
			 and type elt = A.t
  
  val get_dug : unit -> 
    ((elt,Dug.Id.t) generator, 
     (elt,Dug.Id.t) mutator,
     (elt,Dug.Id.t) observer) Dug.t
      
  val clear_profile : unit -> unit
end

  
module Benchmark : 
  functor(S : Sets.GenSetSig with type 'a result = 'a) -> 
sig
  val benchmark : 
    ((S.elt,Dug.Id.t) generator, 
     (S.elt,Dug.Id.t) mutator, 
     (S.elt,Dug.Id.t) observer) Dug.t
      -> float
end