aboutsummaryrefslogtreecommitdiff
path: root/contrib/first-order/formula.mli
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/first-order/formula.mli')
-rw-r--r--contrib/first-order/formula.mli5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/first-order/formula.mli b/contrib/first-order/formula.mli
index 9e027e2403..5fa1323c8d 100644
--- a/contrib/first-order/formula.mli
+++ b/contrib/first-order/formula.mli
@@ -26,9 +26,10 @@ type ('a,'b) sum = Left of 'a | Right of 'b
type counter = bool -> metavariable
-val construct_nhyps : inductive -> int array
+val construct_nhyps : inductive -> Proof_type.goal Tacmach.sigma -> int array
-val ind_hyps : int -> inductive -> constr list -> Sign.rel_context array
+val ind_hyps : int -> inductive -> constr list ->
+ Proof_type.goal Tacmach.sigma -> Sign.rel_context array
type atoms = {positive:constr list;negative:constr list}