MURPHI2UCLID(1) | General Commands Manual | MURPHI2UCLID(1) |
murphi2uclid - translate a Murphi model to Uclid5
murphi2uclid [--output FILE | -o FILE] FILE
The utility murphi2uclid is bundled with the model checker Rumur and can be used to translate a Murphi model into a Uclid5 model. See rumur(1) for more information about Rumur or Murphi.
--help or -?
--module NAME or -m NAME
--numeric-type TYPER or -n TYPE
--output FILE or -o FILE
--quiet or -q
--verbose or -v
--version
Translation to Uclid5 is imprecise in the case where there is no direct Uclid5 equivalent for a Murphi concept. For example, an undefine statement in Murphi has no equivalent in Uclid5. This is translated to a havoc statement. Obviously this is not exactly equivalent. However the hope is that in real world models this achieves a similar effect. Namely, any read of an undefined variable results in the verifier exploring unintended behavior. To get reasonable utility out of translation of a model using undefine, you will likely need an assertion-heavy model. Or, put another way, defensive programming is advised.
The following Murphi concepts have no translation to Uclid5 and are rejected by murphi2uclid:
Function calls within expressions are translated as if they were calls to uninterpreted functions. Uclid5 does not support calling interpreted functions (procedures, in Uclid5 terminology) this way. The desirable mapping (uninterpreted function vs rephrasing the call site) cannot be determined automatically. So it is left to the user to tweak or post-process the output, as it will not be accepted by Uclid5 as-is.