Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type token =
| WILDCARD
| TRUE
| RIGHT_PAREN
| QUOTED of string
| PROD
| PAR
| OR
| NOT
| MINUS
| MATCH
| LT
| LET
| LEQ
| LEFT_PAREN
| IS
| IF
| IDENT of string
| GT
| GET_VALUE
| GEQ
| FUN
| FORALL
| FALSE
| EXISTS
| EQ
| EOI
| DIV
| DISTINCT
| DEFINE_FUN_REC
| DEFINE_FUNS_REC
| DEFINE_FUN
| DEFAULT
| DECLARE_SORT
| DECLARE_FUN
| DECLARE_CONST
| DATA
| CHECK_SAT_ASSUMING
| CHECK_SAT
| CASE
| BANG
| AT
| ASSERT
| AS
| ARROW
| AND
| ADD
val parse_ty :
(Lexing.lexbuf -> token) ->
Lexing.lexbuf ->
Smtlib_utils__.Ast.ty
val parse_term :
(Lexing.lexbuf -> token) ->
Lexing.lexbuf ->
Smtlib_utils__.Ast.term
val parse_list :
(Lexing.lexbuf -> token) ->
Lexing.lexbuf ->
Smtlib_utils__.Ast.statement list
val parse :
(Lexing.lexbuf -> token) ->
Lexing.lexbuf ->
Smtlib_utils__.Ast.statement