]> matita.cs.unibo.it Git - fireball-separation.git/blob - ocaml/lambda4.mli
af249e34972fb5cfa028dad87af48590757d5062
[fireball-separation.git] / ocaml / lambda4.mli
1 type problem\r
2 \r
3 type result = [\r
4  | `Separable of (int * Num.nf) list\r
5  | `Unseparable of string\r
6 ]\r
7 \r
8 val problem_of: div:(string option) -> conv:string list -> nums:string list -> problem\r
9 (* the following will soon replace the one above *)\r
10 val tmp: (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