Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] "simpl" question

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] "simpl" question


Chronological Thread 
  • From: Jonathan <jonikelee AT gmail.com>
  • To: coq-club AT inria.fr
  • Subject: Re: [Coq-Club] "simpl" question
  • Date: Thu, 08 May 2014 21:49:29 -0400

On 05/08/2014 11:05 AM, Marcus Ramos wrote:
Dear All,

When I use the "simpl" tactic in a goal, it changes a subterm of the form
"c ++ s", with c: ascii and s: string, into "String c s" (String is a
constructor of the type string). How can I prevent simpl from doing this?

Thanks in advance,
Marcus.


You can make the string append function "++" be opaque to simpl with the declaration: Opaque append.

-- Jonathan




Archive powered by MHonArc 2.6.18.

Top of Page