aboutsummaryrefslogtreecommitdiffstats
path: root/src/smtlib2/sExpr.mli
blob: 12a0b1f08a4d01403efd99b1d72b66fb6e023be9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(**************************************************************************)
(*                                                                        *)
(*     SMTCoq                                                             *)
(*     Copyright (C) 2011 - 2022                                          *)
(*                                                                        *)
(*     See file "AUTHORS" for the list of authors                         *)
(*                                                                        *)
(*   This file is distributed under the terms of the CeCILL-C licence     *)
(*                                                                        *)
(**************************************************************************)


(** Type of S-expressions *)
type t = Atom of string | List of t list

val print : Format.formatter -> t -> unit