summaryrefslogtreecommitdiff
path: root/proofs/logic.ml
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2006-06-16 14:41:51 +0000
committerGravatar Samuel Mimram <smimram@debian.org>2006-06-16 14:41:51 +0000
commite978da8c41d8a3c19a29036d9c569fbe2a4616b0 (patch)
tree0de2a907ee93c795978f3c843155bee91c11ed60 /proofs/logic.ml
parent3ef7797ef6fc605dfafb32523261fe1b023aeecb (diff)
Imported Upstream version 8.0pl3+8.1betaupstream/8.0pl3+8.1beta
Diffstat (limited to 'proofs/logic.ml')
-rw-r--r--proofs/logic.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/proofs/logic.ml b/proofs/logic.ml
index 1f79d73c..ffbc0d56 100644
--- a/proofs/logic.ml
+++ b/proofs/logic.ml
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* $Id: logic.ml 8696 2006-04-11 07:05:50Z herbelin $ *)
+(* $Id: logic.ml 8871 2006-05-28 16:46:48Z herbelin $ *)
open Pp
open Util
@@ -285,7 +285,7 @@ let rec mk_refgoals sigma goal goalacc conclty trm =
| App (f,l) ->
let (acc',hdty) =
if isInd f & not (array_exists occur_meta l) (* we could be finer *)
- then (goalacc,type_of_applied_inductive env sigma (destInd f) l)
+ then (goalacc,type_of_inductive_knowing_parameters env sigma (destInd f) l)
else mk_hdgoals sigma goal goalacc f
in
let (acc'',conclty') =
@@ -327,7 +327,7 @@ and mk_hdgoals sigma goal goalacc trm =
| App (f,l) ->
let (acc',hdty) =
if isInd f & not (array_exists occur_meta l) (* we could be finer *)
- then (goalacc,type_of_applied_inductive env sigma (destInd f) l)
+ then (goalacc,type_of_inductive_knowing_parameters env sigma (destInd f) l)
else mk_hdgoals sigma goal goalacc f
in
mk_arggoals sigma goal acc' hdty (Array.to_list l)