aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorherbelin2001-09-07 14:57:04 +0000
committerherbelin2001-09-07 14:57:04 +0000
commit6ef9cd21b41fe34e4803778a783f47c84c9e04aa (patch)
treef0ffe3085c720e366cd98dad87a5d39a92ee2ee8 /kernel
parent47d1e4d9d09dee1fccce3e2d7b1c7330440bd318 (diff)
Extension à Cases et Fix de la réduction pas à pas vers un produit (Red)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1928 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel')
-rw-r--r--kernel/reduction.ml12
1 files changed, 5 insertions, 7 deletions
diff --git a/kernel/reduction.ml b/kernel/reduction.ml
index 4832cdd8a4..5c0a4fa634 100644
--- a/kernel/reduction.ml
+++ b/kernel/reduction.ml
@@ -219,13 +219,11 @@ let contract_fix ((recindices,bodynum),(types,names,bodies as typedbodies)) =
substl (list_tabulate make_Fi nbodies) bodies.(bodynum)
let fix_recarg ((recindices,bodynum),_) stack =
- if 0 <= bodynum & bodynum < Array.length recindices then
- let recargnum = Array.get recindices bodynum in
- (try
- Some (recargnum, stack_nth stack recargnum)
- with Not_found ->
- None)
- else
+ assert (0 <= bodynum & bodynum < Array.length recindices);
+ let recargnum = Array.get recindices bodynum in
+ try
+ Some (recargnum, stack_nth stack recargnum)
+ with Not_found ->
None
type fix_reduction_result = NotReducible | Reduced of state