diff options
Diffstat (limited to 'plugins/dp/dp_why.mli')
-rw-r--r-- | plugins/dp/dp_why.mli | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/dp/dp_why.mli b/plugins/dp/dp_why.mli new file mode 100644 index 00000000..0efa24a2 --- /dev/null +++ b/plugins/dp/dp_why.mli @@ -0,0 +1,17 @@ + +open Fol + +(* generation of the Why file *) + +val output_file : string -> query -> unit + +(* table to translate the proofs back to Coq (used in dp_zenon) *) + +type proof = + | Immediate of Term.constr + | Fun_def of string * (string * typ) list * typ * term + +val add_proof : proof -> string +val find_proof : string -> proof + + |