module FML_parser:sig..end
Parser for mapping formula strings to objects of type FML_types.t_fml.
Generated from FML_parser.mly with ocamlyacc.
type token =
| |
VAR of |
| |
PREFIX_PRED of |
| |
INFIX_PRED of |
| |
NEG_INFIX_PRED of |
| |
PREFIX_FUNC of |
| |
INFIX_FUNC of |
| |
POSTFIX_FUNC of |
| |
UNOP of |
| |
BINOP1 of |
| |
BINOP2 of |
| |
QUANT of |
| |
LPAR |
| |
RPAR |
| |
LBR |
| |
RBR |
| |
COMMA |
| |
EOF |
val main : (Stdlib.Lexing.lexbuf -> token) ->
Stdlib.Lexing.lexbuf -> FML_types.t_fml