Skip to Content.
Sympa Menu

maude-help - Re: [[Maude-help] ] ambiguity in lists of integers

maude-help AT lists.cs.illinois.edu

Subject: Maude-help mailing list

List archive

Re: [[Maude-help] ] ambiguity in lists of integers


Chronological Thread 
  • From: Razvan Diaconescu <Razvan.Diaconescu AT ymail.com>
  • To: Santiago Escobar <sescobar AT dsic.upv.es>
  • Cc: maude-help AT lists.cs.illinois.edu
  • Subject: Re: [[Maude-help] ] ambiguity in lists of integers
  • Date: Sun, 6 May 2018 14:16:25 +0300
  • Authentication-results: illinois.edu; spf=pass smtp.mailfrom=Razvan.Diaconescu AT ymail.com; dkim=pass header.d=ymail.com header.s=s2048; dmarc=pass header.from=ymail.com

Does not seems to work?

Best,
Razvan
------------------

Maude> mod LISTINT is protecting LIST{Int} . endm
Advisory: redefining module LISTINT.
Maude> parse 1 - 2 .
Warning: <standard input>, line 45: ambiguous term, two parses are:
1 - 2
-versus-
1 -2

Arbitrarily taking the first as correct.
Int: 1 - 2
Maude> parse 1 (-) 2 .
Warning: <standard input>, line 46: didn't expect token ):
1 ( - ) <---*HERE*
Warning: <standard input>, line 46: no parse for term.


On 6 May 2018, at 14:00, Santiago Escobar <sescobar AT dsic.upv.es> wrote:

A very simple solution is m (- n) for list and m (-) n for integer.

--Santiago

On 6 May 2018, at 12:54, Razvan Diaconescu <Razvan.Diaconescu AT ymail.com> wrote:

Thanks a lot Santiago,

I knew this solution, but I wondered whether there is an
alternative to this such as sort disambiguation or just something else.
And I do not understand why (m - n).Int does not work.

Best,
Razvan

On 6 May 2018, at 13:40, Santiago Escobar <sescobar AT dsic.upv.es> wrote:

Best thing is to rename __ from LIST{Int} into another symbol, eg _._ or _:_.

--Santiago

On 6 May 2018, at 11:40, <razvan.diaconescu AT ymail.com> <razvan.diaconescu AT ymail.com> wrote:

Hi,

How do you solve the following ambiguity problem:

When working with LIST{Int} list of integers (which may
be a very common module to work with) I cannot find a way
to disambiguate m - n, where m and n are integers.
The system considers two parses of this,
as the list m (- n) and as the integer number m - n.

I have tried (m - n).Int and it does not work.

Any help is greatly appreciated.

Thanks,
Razvan Diaconescu







Archive powered by MHonArc 2.6.19.

Top of Page