package lambdapi
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=221dff97ab245c49b7e6480fa2a3a331ab70eb86dd5d521e2c73151029bbb787
sha512=a39961bb7f04f739660a98a52981d4793709619cd21310ca6982ba78af81ef09e01c7517ee3b8b2687b09f7d2614d878c1d69494ca6ab8ef8205d240c216ce8a
doc/lambdapi.tool/Tool/External/index.html
Module Tool.External
Source
Provides a function for calling external checkers using a Unix command.
run prop pp cmd sign
runs the external checker given by the Unix command cmd
on the signature sign
. The signature is processed and written to a Unix pipe using the formatter pp
, and the produced output is fed to the command on its standard output. The return value is Some true
in case of a successful check, Some false
in the case of a failed check, and None
if the external tool cannot conclude. Note that the command cmd
should write either "YES"
, "NO"
or "MAYBE"
as its first line of (standard) output. The exception Fatal
may be raised if cmd
exhibits a different behavior. The name prop
is used to refer to the checked property when an error message is displayed.
NOTE that for any given property being checked, the simplest possible valid command is "echo MAYBE"
. Moreover, "cat > file; echo MAYBE"
can conveniently be used to write generated data to the file "file"
. This is useful for debugging purposes.