1

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?

Oliver Young
  • 578
  • 1
  • 4
  • 12

1 Answers1

2

You can assign to Send in two ways:

  1. If you instantiate it in another module, you can pass in the operator you want with WITH: Instance Foo WITH Send <- Op \*...
  2. You can assign an operator in TLC, under "What is the model?"
Hovercouch
  • 1,962
  • 12
  • 12