You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UnsupportedOperationException is thrown when executing the following Alloy specification: sig A { id: Int } pred P1 [p : set A] { one a: p | a.id = 1 } pred P2[p : set A] { P1[ { x : p | x.id > 0 } ] } run { some a : set A | P2[a] }
If one is replaced by lone then the exception is also thrown.
If one is replaced by no/some/all then no exception is thrown.
The text was updated successfully, but these errors were encountered:
UnsupportedOperationException
is thrown when executing the following Alloy specification:sig A { id: Int }
pred P1 [p : set A]
{
one a: p | a.id = 1
}
pred P2[p : set A] {
P1[ { x : p | x.id > 0 } ]
}
run {
some a : set A | P2[a]
}
If
one
is replaced bylone
then the exception is also thrown.If
one
is replaced byno
/some
/all
then no exception is thrown.The text was updated successfully, but these errors were encountered: