Hello, the specification from module BoundedFIFO is defined as \EE q : Inner(q)!Init /\ [][BNext(q)]_<<in,out,q>> and TLC does not support \EE, i.e. quantification over state variables. (I agree that the error message is not ideal.) You'd typically launch TLC from module InnerFIFO and add a state constraint (see Model -> Advanced Options) in order to restrict the length of the queue in the states that TLC considers. To do this, add a predicate such as Len(q) < 5 in the "State Constraint" field. Regards, Stephan
You received this message because you are subscribed to the Google Groups "tlaplus" group. To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx. To post to this group, send email to tlaplus@xxxxxxxxxxxxxxxx. Visit this group at https://groups.google.com/group/tlaplus. To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/A0D86063-F66A-44A3-A7B0-E8BF79BDC4BF%40gmail.com. For more options, visit https://groups.google.com/d/optout. |