]> matita.cs.unibo.it Git - helm.git/commitdiff
fixed syntax
authorEnrico Tassi <enrico.tassi@inria.fr>
Tue, 14 Feb 2006 12:18:44 +0000 (12:18 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Tue, 14 Feb 2006 12:18:44 +0000 (12:18 +0000)
components/cic_proof_checking/cicReduction.ml

index 56e98775f31caf7276303a091dbeb22612128046..5a638b5f763dff99df786eda8413678bfa3c1c9e 100644 (file)
@@ -969,8 +969,8 @@ let are_convertible whd ?(subst=[]) ?(metasenv=[])  =
     end
   in
    debug t1 [t2] "PREWHD";
-   let t1' = whd ?delta:(Some true) ?subst:(Some subst) context t1 in
-   let t2' = whd ?delta:(Some true) ?subst:(Some subst) context t2 in
+   let t1' = whd ~delta:true ~subst context t1 in
+   let t2' = whd ~delta:true ~subst context t2 in
     debug t1' [t2'] "POSTWHD";
     aux2 test_equality_only t1' t2' ugraph
  in