12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273(************************************************************************)(* * The Coq Proof Assistant / The Coq Development Team *)(* v * Copyright INRIA, CNRS and contributors *)(* <O___,, * (see version control and CREDITS file for authors & dates) *)(* VV/ **************************************************************)(* // * This file is distributed under the terms of the *)(* * GNU Lesser General Public License Version 2.1 *)(* * (see LICENSE file for the text of the license) *)(************************************************************************)(************************************************************************)(* SerAPI: Coq interaction protocol with bidirectional serialization *)(************************************************************************)(* Copyright 2016-2019 MINES ParisTech -- License LGPL 2.1+ *)(* Copyright 2019-2023 Inria -- License LGPL 2.1+ *)(* Written by: Emilio J. Gallego Arias and others *)(************************************************************************)(* open Sexplib *)(* open Sexplib.Std *)(* open Ppx_hash_lib.Std.Hash.Builtin *)(* open Ppx_compare_lib.Builtin *)moduleUVars=Ser_uvarstypet=[%import:CPrimitives.t][@@derivingsexp,yojson,hash,compare]typeconst =[%import:CPrimitives.const][@@derivingsexp,yojson,hash,compare](* GADTs ... *)modulePTP=structtype'at='aCPrimitives.prim_type[@@@ocaml.warning"-27"](* Non-GADT version *)type'a_t=|PT_int63|PT_float64|PT_array[@@derivingsexp,yojson,hash,compare]endmodulePrim_type_=SerType.Pierce1(PTP)type'aprim_type='aPrim_type_.t[@@derivingsexp,yojson,hash,compare]moduleOOTP=structtypeptype=|PT_int63|PT_float64|PT_array[@@derivingsexp,yojson,hash,compare](* op_or_type *)type_t=|OT_opoft|OT_typeofptype|OT_constofconst[@@derivingsexp,yojson,hash,compare]typet=CPrimitives.op_or_typeendmoduleOp_or_type_=SerType.Pierce(OOTP)typeop_or_type=Op_or_type_.t[@@derivingsexp,yojson,hash,compare]