X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=ocaml%2Flambda4.mli;h=8e89903e92a1c322b890e94538f367f7f35f722b;hb=4674dd787b5141c8aa22339d497ba671f4435da5;hp=d8148d5399aea9ba3d3ac582506f0dea47eace94;hpb=5991691df6dc3d096a08397712040c93d7f873b5;p=fireball-separation.git diff --git a/ocaml/lambda4.mli b/ocaml/lambda4.mli index d8148d5..8e89903 100644 --- a/ocaml/lambda4.mli +++ b/ocaml/lambda4.mli @@ -1,9 +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 +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