]> matita.cs.unibo.it Git - fireball-separation.git/blob - ocaml/lambda4.mli
Important: added special variable "Z" for zero.
[fireball-separation.git] / ocaml / lambda4.mli
1 type problem\r
2 \r
3 val label_of_problem : problem -> string\r
4 \r
5 type result = [\r
6  | `Separable of (int * Num.nf) list\r
7  | `Unseparable of string\r
8 ]\r
9 \r
10 val problem_of: (string (* problem label *)\r
11 * Num.i_var option (* div *)\r
12 * Num.i_n_var list (* conv *)\r
13 * Num.i_n_var list (* ps *)\r
14 * string list (* names of free variables *)) -> problem\r
15 val solve: problem -> result\r