aboutsummaryrefslogtreecommitdiff
path: root/doc/Omega.tex
diff options
context:
space:
mode:
authorfilliatr2003-09-26 09:01:01 +0000
committerfilliatr2003-09-26 09:01:01 +0000
commite35fd10c4ef3c257e91156e07e65234e81672036 (patch)
treeb915c91bd2e2aa972007cfa8cfd33ff60baa480e /doc/Omega.tex
parent5dc7b25578b16a8508b3317b2c240d7b322629e0 (diff)
passage V8
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8343 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'doc/Omega.tex')
-rwxr-xr-xdoc/Omega.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/Omega.tex b/doc/Omega.tex
index 2d73a07ba1..14bafc2a08 100755
--- a/doc/Omega.tex
+++ b/doc/Omega.tex
@@ -123,14 +123,14 @@ The tactic {\tt Omega}~does not belong to the core system. It should be
loaded by
\begin{coq_example*}
-Require Omega.
+Require Import Omega.
\end{coq_example*}
\example{}
\begin{coq_example}
-Goal (m,n:Z) ~ `1+2*m = 2*n`.
-Intros; Omega.
+Goal forall m n:Z, 1 + 2 * m <> 2 * n.
+intros; omega.
\end{coq_example}
\begin{coq_eval}
Abort.
@@ -139,8 +139,8 @@ Abort.
\example{}
\begin{coq_example}
-Goal (z:Z)`z>0` -> `2*z + 1 > z`.
-Intro; Omega.
+Goal forall z:Z, z > 0 -> 2 * z + 1 > z.
+intro; omega.
\end{coq_example}
% Other examples can be found in \verb+$COQLIB/theories/DEMOS/OMEGA+.