]> matita.cs.unibo.it Git - helm.git/commitdiff
Commented a few assertions.
authorAndrea Asperti <andrea.asperti@unibo.it>
Mon, 27 Nov 2006 12:42:03 +0000 (12:42 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Mon, 27 Nov 2006 12:42:03 +0000 (12:42 +0000)
components/tactics/paramodulation/indexing.ml

index 28c22a64e34b8fd7ccf99d34ba4903f7f526aa0f..b535119ed2df5702e9c8a3f2f0a99ce4d0bd7b80 100644 (file)
@@ -655,7 +655,7 @@ let rec demodulation_equality bag ?from eq_uri newmeta env table target =
     match res with
     | Some t ->
         let newmeta, newtarget = build_newtarget true t in
-          assert (not (Equality.meta_convertibility_eq target newtarget));
+          (* assert (not (Equality.meta_convertibility_eq target newtarget)); *)
           if (Equality.is_weak_identity newtarget) (* || *)
             (*Equality.meta_convertibility_eq target newtarget*) then
               newmeta, newtarget
@@ -959,7 +959,7 @@ let rec demodulation_theorem bag newmeta env table theorem =
 let open_goal g =
   match g with
   | (proof,menv,Cic.Appl[(Cic.MutInd(uri,0,_)) as eq;ty;l;r]) -> 
-      assert (LibraryObjects.is_eq_URI uri);
+      (* assert (LibraryObjects.is_eq_URI uri); *)
       proof,menv,eq,ty,l,r
   | _ -> assert false
 ;;