aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/command.mli
blob: 8c34a3eb1673b85f22b2bfcc52c2f7139c1f2652 (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

(* $Id$ *)

(*i*)
open Names
open Term
open Declare
(*i*)

(* Declaration functions. The following functions take ASTs, transform them
   into [constr] and then call the corresponding functions of [Declare]. *)

val definition_body : identifier -> bool * strength -> 
  Coqast.t -> Coqast.t option -> unit

val definition_body_red : Tacred.red_expr option ->  
  identifier -> bool * strength -> Coqast.t -> Coqast.t option -> unit

val syntax_definition : identifier -> Coqast.t -> unit

(*i
val abstraction_definition : identifier -> int array -> Coqast.t -> unit
i*)

val hypothesis_def_var : bool -> string -> strength -> Coqast.t -> unit

val parameter_def_var : string -> Coqast.t -> unit

val build_mutual : 
  (identifier * Coqast.t) list -> 
    (identifier * Coqast.t * (identifier * Coqast.t) list) list -> bool -> unit

val build_recursive :
  (identifier * ((identifier * Coqast.t) list) * Coqast.t * Coqast.t) list 
  -> unit

val build_corecursive :  (identifier * Coqast.t * Coqast.t) list -> unit

val build_scheme : (identifier * bool * identifier * Coqast.t) list -> unit

val start_proof_com : identifier option -> strength -> Coqast.t -> unit

(*s [save_named b] saves the current completed proof under the name it
was started; boolean [b] tells if the theorem is declared opaque; it
fails if the proof is not completed *)

val save_named : bool -> unit

(* [save_anonymous_thm b name] behaves as [save_named] but declares the
theorem under the name [name] and gives it the strength of a theorem *)

val save_anonymous_thm : bool -> string -> unit

(* [save_anonymous_remark b name] behaves as [save_named] but declares the
theorem under the name [name] and gives it the strength of a remark *)

val save_anonymous_remark : bool -> string -> unit

val get_current_context : unit -> Proof_type.enamed_declarations * Environ.env