X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=ocaml%2Flambda4.mli;h=d6e42027db5c9545d6dcb1f7003933f897f13b2a;hb=704fd9d9db0c01619264527d4174afe74bdff53d;hp=ad6ca7e0643df12f94fa50968e3da935f7fa5920;hpb=8b69a4c59242b64294c7065a4e85437ce3cbc32d;p=fireball-separation.git diff --git a/ocaml/lambda4.mli b/ocaml/lambda4.mli index ad6ca7e..d6e4202 100644 --- a/ocaml/lambda4.mli +++ b/ocaml/lambda4.mli @@ -1,5 +1,7 @@ type problem +val label_of_problem : problem -> string + type response = [ | `CompleteSeparable of string | `CompleteUnseparable of string @@ -13,7 +15,9 @@ type result = [ | `Unseparable of string ] -val problem_of: div:(string option) -> conv:string list -> nums:string list -> problem * response -(* the following will soon replace the one above *) -val problem_of_string_tmp: string -> problem * response +val problem_of: (string (* problem label *) +* Num.i_var option (* div *) +* Num.i_n_var list (* conv *) +* Num.i_n_var list (* ps *) +* string list (* names of free variables *)) -> problem * response val solve: problem * response -> result