aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/coq.mli
blob: f04dfeede48b9aca36a35b001dc7063fb2cabaae (plain)
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
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

val short_version : unit -> string
val version : unit -> string
val filter_coq_opts : string list -> bool * string list
(* A mock coqtop launch, checking in particular that initial.coq is found *)
val check_connection : string list -> unit
(* Same, with less checks, but returning coqlib *)
val check_coqlib : string list -> string

type coqtop

val spawn_coqtop : string list -> coqtop

val kill_coqtop : coqtop -> unit

val break_coqtop : coqtop -> unit

val coqtop_zombies : unit -> int

val reset_coqtop : coqtop -> unit

val process_exn : exn -> Ide_intf.location * string

module PrintOpt :
sig
  type t
  val implicit : t
  val coercions : t
  val raw_matching : t
  val notations : t
  val all_basic : t
  val existential : t
  val universes : t

  val set : coqtop -> t -> bool -> unit Ide_intf.value
end

val raw_interp : coqtop -> string -> unit Ide_intf.value

val interp : coqtop -> bool -> string -> int Ide_intf.value

val rewind : coqtop -> int -> int Ide_intf.value

val read_stdout : coqtop -> string Ide_intf.value

val is_in_loadpath : coqtop -> string -> bool Ide_intf.value

val make_cases : coqtop -> string -> string list list Ide_intf.value

(* Message to display in lower status bar. *)

val current_status : coqtop -> string Ide_intf.value

val goals : coqtop -> Ide_intf.goals Ide_intf.value