Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Porting to Coq 8.5beta : regaining old pairing and dot notation ?

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Porting to Coq 8.5beta : regaining old pairing and dot notation ?


Chronological Thread 
  • From: Erik Palmgren <palmgren AT math.su.se>
  • To: Coq Club <coq-club AT inria.fr>
  • Subject: [Coq-Club] Porting to Coq 8.5beta : regaining old pairing and dot notation ?
  • Date: Sat, 11 Jul 2015 17:18:59 +0200


I am porting a rather large development from Hcoq/HoTT to Coq 8.5beta and try to regain the old dot (.1, .2) and pairing notation ( ; ) for existT as below. However this seems to interfere with other notation (either records or sigT). Is ( ; ) dealt with in some special way in 8.4?

----
Notation "x .1" := (projT1 x) (at level 0).
Notation "x .2" := (projT2 x) (at level 0).
Notation "( x ; y )" := (existT _ x y) (at level 99).
----

Grateful for any hints.

Erik Palmgren



Archive powered by MHonArc 2.6.18.

Top of Page