Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Intro in Ltac

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Intro in Ltac


chronological Thread 
  • From: Marko Malikovi� <marko AT ffri.hr>
  • To: coq-club AT pauillac.inria.fr
  • Subject: [Coq-Club] Intro in Ltac
  • Date: Thu, 6 Dec 2007 19:51:40 +0100 (CET)
  • Importance: Normal
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

Greetings,

can somebody give me a reason why first example work, but second not:

Ltac test :=
intro H1;
compute in H1;
assumption.
Goal 2+3=5 -> 5=5.
test.


Ltac test :=
try intro H1;
compute in H1;
assumption.
Goal 2+3=5 -> 5=5.
test.

I need to build Ltac but I don't know how many intros are possible to do
in particular subgoal. Is it some solution?

Thank you very much,

Marko Malikoviæ





Archive powered by MhonArc 2.6.16.

Top of Page