]> matita.cs.unibo.it Git - fireball-separation.git/blobdiff - ocaml/parser.mli
Copied old code back in parser, to make andrea8 great again
[fireball-separation.git] / ocaml / parser.mli
index d131edbf79b65b46315d19510ec9e96583b9f58e..8dba8542ca4548e5f64201a1b80dcc7d88c3d202 100644 (file)
@@ -1,6 +1,11 @@
+type term =\r
+  | Var of int\r
+  | App of term * term\r
+  | Lam of term\r
+\r
 exception ParsingError of string\r
 \r
-val problem_of_string:\r
+(* val problem_of_string:\r
  string ->\r
   string (* problem label *)\r
   * Num.i_var option (* div *)\r
@@ -12,4 +17,9 @@ val from_file : string ->
  * Num.i_var option (* div *)\r
  * Num.i_n_var list (* conv *)\r
  * Num.i_n_var list (* ps *)\r
- * string list (* names of free variables *)) list\r
+ * string list (* names of free variables *)) list *)\r
+\r
+ (* parses a string to a term *)\r
+ val parse: string -> term\r
+ (* parse many strings/terms, and returns the list of parsed terms + the list of free variables; variable 0 is not used *)\r
+ val parse_many: string list -> term list * string list\r