]> matita.cs.unibo.it Git - fireball-separation.git/blobdiff - ocaml/lambda4.mli
Failing case found
[fireball-separation.git] / ocaml / lambda4.mli
index c8a571ea825781a0e9db687b3c9c8e868cf54270..d6e42027db5c9545d6dcb1f7003933f897f13b2a 100644 (file)
@@ -1,4 +1,23 @@
-type t\r
-val magic: string list -> string list -> t\r
-val magic_conv: div:(string option) -> conv:string list -> nums:string list -> string list -> t\r
-val main: t list -> unit\r
+type problem\r
+\r
+val label_of_problem : problem -> string\r
+\r
+type response = [\r
+ | `CompleteSeparable of string\r
+ | `CompleteUnseparable of string\r
+ | `Uncomplete\r
+]\r
+\r
+type result = [\r
+ `Complete | `Uncomplete\r
+] * [\r
+ | `Separable of (int * Num.nf) list\r
+ | `Unseparable of string\r
+]\r
+\r
+val problem_of: (string (* problem label *)\r
+* Num.i_var option (* div *)\r
+* Num.i_n_var list (* conv *)\r
+* Num.i_n_var list (* ps *)\r
+* string list (* names of free variables *)) -> problem * response\r
+val solve: problem * response -> result\r