package coq-serapi

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file ser_decl_kinds.ml

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
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

(************************************************************************)
(* Coq serialization API/Plugin                                         *)
(* Copyright 2016 MINES ParisTech                                       *)
(************************************************************************)
(* Status: Very Experimental                                            *)
(************************************************************************)

(**********************************************************************)
(* Decl_kinds                                                         *)
(**********************************************************************)

open Sexplib.Std

type locality = [%import: Decl_kinds.locality]
  [@@deriving sexp,yojson]

type binding_kind = [%import: Decl_kinds.binding_kind]
  [@@deriving sexp,yojson]

type polymorphic =
  [%import: Decl_kinds.polymorphic]
  [@@deriving sexp,yojson]

type private_flag =
  [%import: Decl_kinds.private_flag]
  [@@deriving sexp,yojson]

type cumulative_inductive_flag =
  [%import: Decl_kinds.cumulative_inductive_flag]
  [@@deriving sexp,yojson]

type theorem_kind =
  [%import: Decl_kinds.theorem_kind]
  [@@deriving sexp,yojson]

type definition_object_kind =
  [%import: Decl_kinds.definition_object_kind]
  [@@deriving sexp,yojson]

type assumption_object_kind =
  [%import: Decl_kinds.assumption_object_kind]
  [@@deriving sexp,yojson]

type assumption_kind =
  [%import: Decl_kinds.assumption_kind]
  [@@deriving sexp,yojson]

type definition_kind =
  [%import: Decl_kinds.definition_kind]
  [@@deriving sexp]

type goal_object_kind =
  [%import: Decl_kinds.goal_object_kind]
  [@@deriving sexp]

type goal_kind =
  [%import: Decl_kinds.goal_kind]
  [@@deriving sexp]

type logical_kind =
  [%import: Decl_kinds.logical_kind]
  [@@deriving sexp]

type discharge =
  [%import: Decl_kinds.discharge]
  [@@deriving sexp,yojson]
OCaml

Innovation. Community. Security.