Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] preventing simpl

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] preventing simpl


Chronological Thread 
  • From: Guillaume Melquiond <guillaume.melquiond AT inria.fr>
  • To: coq-club AT inria.fr
  • Subject: Re: [Coq-Club] preventing simpl
  • Date: Fri, 11 Apr 2014 19:28:23 +0200

On 11/04/2014 18:41, Nuno Gaspar wrote:

Example redtest:
5 + 3 - 1 = 9.
Proof.
simpl.

simpl will fully reduce the expression. What if I didn't want the minus
function to reduce?

If you want the change to be global, you can use the following command:

Arguments minus n m : simpl never.

Best regards,

Guillaume



Archive powered by MHonArc 2.6.18.

Top of Page