Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to disable a specific notation in Coq?

Tags:

notation

coq

I'd like, in Coqide, to have the proof state not use a certain notation (but still use all others).

Is this possible?

like image 754
Atsby Avatar asked May 14 '15 21:05

Atsby


2 Answers

From what I understand in the documentation, it is not possible. You might be able to play with opening/closing scopes but I'm not sure it will work, since it is stated explicitly that notations will be used for printing whenever possible.

like image 145
Vinz Avatar answered Dec 05 '22 01:12

Vinz


Some tricks that might be sufficient are described here: How to disable my custom notation in Coq?

I wanted to add pointer to that answer because this question comes up first on Google.

like image 43
larsr Avatar answered Dec 05 '22 01:12

larsr