Reputation: 585
I am reading book "Specifying Systems" recently. In Chapter 5, Leslie define constant operator Send(,,,).
I am confused about how to assign value (True/False) to this constant expression? Do we need to assign True/False to every (p, v, m, m') in the TLC model checker?
Upvotes: 1
Views: 98
Reputation: 2314
You can assign to Send
in two ways:
WITH
: Instance Foo WITH Send <- Op \*...
Upvotes: 2