Consider a upgrades relationship:

Incomplete order relationship

I need to make sure that upgrades cannot be circular. How can I do that in Alloy?

link|improve this question

80% accept rate
To fellow readers, there is a question as to which site this belongs on. Feel free to offer advice on that too. – jcolebrand Nov 17 '10 at 16:50
feedback

1 Answer

up vote 2 down vote accepted

It is sufficient to enforce transitivity and antireflexivity.

fact {
  no a: Item | a in a.upgrades
}

fact{
  all a,b,c: Item |
  a in b.upgrades and b in c.upgrades implies
  a in c.upgrades
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.