]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/paramodulation.ma
added optional "paramodulation" parameter to auto to turn on paramodulation
[helm.git] / helm / matita / tests / paramodulation.ma
index af8d59be6d053b60e424a675824d07f942c60399..b56c0da27d1672cf11046bb0bee882048c8997b3 100644 (file)
@@ -22,10 +22,10 @@ alias symbol "times" (instance 0) = "natural times".
 theorem para1:
   \forall n,m,n1,m1:nat.
     n=m \to n1 = m1 \to (n + n1) = (m + m1).
-intros. auto.
+intros. auto paramodulation.
 qed.
 
 theorem para2:
   \forall n:nat. n + n = 2 * n.
-intros. auto.
-qed.
\ No newline at end of file
+intros. auto paramodulation.
+qed.