summaryrefslogtreecommitdiff
path: root/plugins/funind/glob_term_to_relation.mli
diff options
context:
space:
mode:
authorGravatar Stephane Glondu <steph@glondu.net>2012-01-12 16:08:29 +0100
committerGravatar Stephane Glondu <steph@glondu.net>2012-01-12 16:08:29 +0100
commit23a6061a81ffa0c214d521287b6af0a31bfa22f0 (patch)
treef1ca9ba9240b98b8695a9f1870e56602734cf97c /plugins/funind/glob_term_to_relation.mli
parentde109d8c0c68f569b907e6e24271f259ba28888e (diff)
parent39efc41237ec906226a3a53d7396d51173495204 (diff)
Merge commit 'upstream/8.4_beta+dfsg' into experimental/master
Diffstat (limited to 'plugins/funind/glob_term_to_relation.mli')
-rw-r--r--plugins/funind/glob_term_to_relation.mli16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/funind/glob_term_to_relation.mli b/plugins/funind/glob_term_to_relation.mli
new file mode 100644
index 00000000..5c91292b
--- /dev/null
+++ b/plugins/funind/glob_term_to_relation.mli
@@ -0,0 +1,16 @@
+
+
+
+(*
+ [build_inductive parametrize funnames funargs returned_types bodies]
+ constructs and saves the graphs of the functions [funnames] taking [funargs] as arguments
+ and returning [returned_types] using bodies [bodies]
+*)
+
+val build_inductive :
+ Names.identifier list -> (* The list of function name *)
+ (Names.name*Glob_term.glob_constr*bool) list list -> (* The list of function args *)
+ Topconstr.constr_expr list -> (* The list of function returned type *)
+ Glob_term.glob_constr list -> (* the list of body *)
+ unit
+