X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=ocaml%2Flambda4.mli;h=8e89903e92a1c322b890e94538f367f7f35f722b;hb=6d3ee54fd076f61ced0eabb0f5f31f519b186931;hp=4af50606788f0f79e8f54b9b6742fc2e2ef35b0c;hpb=1b3b3eb5c68d4b1ca28ef911b81e6757db080187;p=fireball-separation.git diff --git a/ocaml/lambda4.mli b/ocaml/lambda4.mli index 4af5060..8e89903 100644 --- a/ocaml/lambda4.mli +++ b/ocaml/lambda4.mli @@ -1,11 +1,15 @@ type problem +val label_of_problem : problem -> string + type result = [ | `Separable of (int * Num.nf) list | `Unseparable of string ] -val problem_of: div:(string option) -> conv:string list -> nums:string list -> problem -(* the following will soon replace the one above *) -val problem_of_string_tmp: string -> problem +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 val solve: problem -> result