Skip to Content.
Sympa Menu

maude-help - [Maude-help] Full Maude, operators defined at kind level and 'id' attribute

maude-help AT lists.cs.illinois.edu

Subject: Maude-help mailing list

List archive

[Maude-help] Full Maude, operators defined at kind level and 'id' attribute


Chronological Thread 
  • From: Pierre-Yves Strub <strub AT lix.polytechnique.fr>
  • To: maude-help AT banyan.cs.uiuc.edu
  • Subject: [Maude-help] Full Maude, operators defined at kind level and 'id' attribute
  • Date: Mon, 21 Jul 2003 14:58:06 +0200
  • List-archive: <http://maude.cs.uiuc.edu/pipermail/maude-help/>
  • List-id: Maude help list <maude-help.maude.cs.uiuc.edu>
  • Organization: LIX

Dear Maude mailing list,

Given the following (dummy) module in Core Maude:

fmod FOO is
sort Struct .

op empty : -> Struct .
op __ : Struct Struct ~> Struct [assoc comm id: empty] .
endfm

I want to translate it in Full Maude. I wrote:

(fmod FOO is
sort Struct .

op empty : -> Struct .
op __ : Struct Struct ~> Struct [assoc comm id: empty] .
endfm)

But Full Maude is not happy with that. I don't have any message
at all except "rewrites: XXX in XXX..." and the module FOO is not
introduced. What I observe is that, if I remove the 'id' attribute or
defined 'op __' at sort level, all works (modulo this is not what I
want).

Yours sincerely,
Pierre-Yves Strub.




  • [Maude-help] Full Maude, operators defined at kind level and 'id' attribute, Pierre-Yves Strub, 07/21/2003

Archive powered by MHonArc 2.6.16.

Top of Page