Skip to Content.
Sympa Menu

maude-help - Re: [Maude-help] maude and Knuth Bendix

maude-help AT lists.cs.illinois.edu

Subject: Maude-help mailing list

List archive

Re: [Maude-help] maude and Knuth Bendix


Chronological Thread 
  • From: Francisco Duran <duran AT lcc.uma.es>
  • To: Aurelie Hurault <Aurelie.Hurault AT enseeiht.fr>
  • Cc: maude-help AT peepal.cs.uiuc.edu
  • Subject: Re: [Maude-help] maude and Knuth Bendix
  • Date: Fri, 14 May 2004 17:23:06 +0200
  • List-archive: <http://maude.cs.uiuc.edu/pipermail/maude-help>
  • List-id: Maude help list <maude-help.maude.cs.uiuc.edu>

- Where can I find this files?

You can find them attached to this email.

- Is there a compatible version of the Knuth Bendix completion with maude2?

It hasn't been updated yet.

F. DurĂ¡n
(fmod EXT-BOOL is
op _andThen_ : Bool Bool -> Bool [assoc strat (1 0 2 0) prec 55] .
op _orElse_ : Bool Bool -> Bool [assoc strat (1 0 2 0) prec 59] .
var B : Bool .
eq false andThen B = false .
eq true andThen B = B .
eq true orElse B = true .
eq false orElse B = B .
endfm)
(fth STRICT-ORDER is
*** A strict order is a transitive and irreflexive relation.
pr QID .
op _>>_ : Qid Qid -> Bool .
vars A B C : Qid .
ceq A >> B = false if B >> A .
ceq A >> C = true if A >> B and B >> C .
endfth)




Archive powered by MHonArc 2.6.16.

Top of Page