aboutsummaryrefslogtreecommitdiffstats
path: root/src/smtlib2/sExpr.mli
diff options
context:
space:
mode:
Diffstat (limited to 'src/smtlib2/sExpr.mli')
-rw-r--r--src/smtlib2/sExpr.mli16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/smtlib2/sExpr.mli b/src/smtlib2/sExpr.mli
new file mode 100644
index 0000000..26ea9fb
--- /dev/null
+++ b/src/smtlib2/sExpr.mli
@@ -0,0 +1,16 @@
+(**************************************************************************)
+(* *)
+(* SMTCoq *)
+(* Copyright (C) 2011 - 2019 *)
+(* *)
+(* 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