]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/tests/ng_commands.ma
It is now possible to declare new aliases using the old syntax
[helm.git] / helm / software / matita / tests / ng_commands.ma
index 6a65ea039a68774d0ec0e759b04e1cdf36e7c3a6..d6f97499e10d582d9d119685f1edd472a5a91ffd 100644 (file)
@@ -16,25 +16,25 @@ include "nat/plus.ma".
 
 ndefinition thesis0: ∀A:Type.Type ≝ λA. A → A.
 
-alias id "thesis0" = "cic:/matita/tests/ng_commands/thesis0.con".
+alias id "thesis0" = "cic:/matita/tests/ng_commands/thesis0.def(0)".
 
 ndefinition thesis: ∀A:Type.Type ≝ λA. ?.
  napply (A → A);
 nqed.
 
-alias id "thesis" = "cic:/matita/tests/ng_commands/thesis.con".
+alias id "thesis" = "cic:/matita/tests/ng_commands/thesis.def(0)".
 
 ntheorem foo: ∀A:Type.thesis A.#A;#x;napply x;
 nqed.
 
-alias id "foo" = "cic:/matita/tests/ng_commands/foo.con".
+alias id "foo" = "cic:/matita/tests/ng_commands/foo.def(0)".
 
 ntheorem goo: ∀A:Type.A → A. #A; napply (foo ?);
 nqed.
 
 naxiom P: Prop.
 
-alias id "P" = "cic:/matita/tests/ng_commands/P.con".
+alias id "P" = "cic:/matita/tests/ng_commands/P.decl".
 
 ndefinition Q: Prop ≝ P.
 
@@ -43,7 +43,7 @@ nlet rec nzero (n:nat) : nat ≝
   [ O ⇒ O
   | S m ⇒ nzero m].
 
-alias id "nzero" = "cic:/matita/tests/ng_commands/nzero.con".
+alias id "nzero" = "cic:/matita/tests/ng_commands/nzero.fix(0,0,0)".
 
 ntheorem nzero_ok: nzero (S (S O)) = O.
  napply (refl_eq ? O);