-
Notifications
You must be signed in to change notification settings - Fork 9
/
parser.mli
21 lines (15 loc) · 1.03 KB
/
parser.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(* ========================================================================== *)
(* FPTaylor: A Tool for Rigorous Estimation of Round-off Errors *)
(* *)
(* Author: Alexey Solovyev, University of Utah *)
(* *)
(* This file is distributed under the terms of the MIT license *)
(* ========================================================================== *)
(* -------------------------------------------------------------------------- *)
(* Auxiliary parser functions *)
(* -------------------------------------------------------------------------- *)
val create_env_from_task : Task.task -> unit
val parse_raw_expr : string -> Input_parser_env.raw_expr
val parse_expr : string -> Expr.expr
val parse_string : ?fname:string -> string -> Task.task list
val parse_file : string -> Task.task list