]> matita.cs.unibo.it Git - fireball-separation.git/blob - ocaml/lambda4.mli
Added label to problem
[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: div:(string option) -> conv:string list -> nums:string list -> problem\r
11 (* the following will soon replace the one above *)\r
12 val tmp: (string (* problem label *)\r
13 * Num.i_var option (* div *)\r
14 * Num.i_n_var list (* conv *)\r
15 * Num.i_n_var list (* ps *)\r
16 * string list (* names of free variables *)) -> problem\r
17 val solve: problem -> result\r