1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 set "baseuri" "cic:/matita/tests/discriminate".
16 include "legacy/coq.ma".
17 alias id "not" = "cic:/Coq/Init/Logic/not.con".
18 alias num (instance 0) = "natural number".
19 alias symbol "eq" (instance 0) = "Coq's leibnitz's equality".
21 inductive foo: Prop \def I_foo: foo.
24 1 = 0 \to (\forall p:Prop. p \to not p).
26 generalize in match I_foo.
30 inductive bar_list (A:Set): Set \def
32 | bar_cons: A \to bar_list A \to bar_list A.
34 alias id "False" = "cic:/Coq/Init/Logic/False.ind#xpointer(1/1)".
36 \forall A:Set.\forall x:A.\forall l:bar_list A.
37 bar_nil A = bar_cons A x l \to False.