summaryrefslogtreecommitdiff
path: root/lib/options.mli
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2008-07-25 15:12:53 +0200
committerGravatar Samuel Mimram <smimram@debian.org>2008-07-25 15:12:53 +0200
commita0cfa4f118023d35b767a999d5a2ac4b082857b4 (patch)
treedabcac548e299fee1da464c93b3dba98484f45b1 /lib/options.mli
parent2281410e38ef99d025ea77194585a9bc019fdaa9 (diff)
Imported Upstream version 8.2~beta3+dfsgupstream/8.2.beta3+dfsg
Diffstat (limited to 'lib/options.mli')
-rw-r--r--lib/options.mli71
1 files changed, 0 insertions, 71 deletions
diff --git a/lib/options.mli b/lib/options.mli
deleted file mode 100644
index 30d585fb..00000000
--- a/lib/options.mli
+++ /dev/null
@@ -1,71 +0,0 @@
-(************************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(************************************************************************)
-
-(*i $Id: options.mli 9191 2006-09-29 15:45:42Z courtieu $ i*)
-
-(* Global options of the system. *)
-
-val boot : bool ref
-
-val batch_mode : bool ref
-
-val debug : bool ref
-
-val print_emacs : bool ref
-val print_emacs_safechar : bool ref
-
-val term_quality : bool ref
-
-val xml_export : bool ref
-
-val dont_load_proofs : bool ref
-
-val raw_print : bool ref
-
-val translate : bool ref
-val make_translate : bool -> unit
-val do_translate : unit -> bool
-val translate_file : bool ref
-val translate_syntax : bool ref
-
-val make_silent : bool -> unit
-val is_silent : unit -> bool
-val is_verbose : unit -> bool
-val silently : ('a -> 'b) -> 'a -> 'b
-val if_silent : ('a -> unit) -> 'a -> unit
-val if_verbose : ('a -> unit) -> 'a -> unit
-
-val hash_cons_proofs : bool ref
-
-(* Temporary activate an option ('c must be an atomic type) *)
-val with_option : bool ref -> ('a -> 'b) -> 'a -> 'b
-
-(* If [None], no limit *)
-val set_print_hyps_limit : int option -> unit
-val print_hyps_limit : unit -> int option
-
-val add_unsafe : string -> unit
-val is_unsafe : string -> bool
-
-(* Dump of globalization (to be used by coqdoc) *)
-
-val dump : bool ref
-val dump_into_file : string -> unit
-val dump_string : string -> unit
-
-(* Options for the virtual machine *)
-
-val set_boxed_definitions : bool -> unit
-val boxed_definitions : unit -> bool
-
-(* Options for external tools *)
-
-(* Returns head and tail of printf string format *)
-(* ocaml doesn't allow not applied formats *)
-val browser_cmd_fmt : string * string
-