Logic and Program modes¶
Imandra has two modes: logic mode and program mode. When we launch Imandra Terminal (or an Imandra Jupyter Notebook session), we start off in logic mode.
In the terminal, we can identify that Imandra is in logic mode by the pound sign prompt (#
).
In a notebook, we can inspect Imandra's current mode using the #config
directive.
While in logic mode, we have access to Imandra's reasoning tools, such as verify
and theorem
.
A future notebook will summarize the various reasoning tools, and explain when to use which one.
In logic mode, all definitions -- types, values and functions -- are entered into the logic. We can see all previous events in logic mode by inspecting the #history
(aliased to #h
).
While in logic mode, we are restricted to a purely functional subset of OCaml, and our recursive functions must terminate.
If we try to define a non-terminating function, for example, Imandra will reject it.
For more complex recursive functions, we may need to convince Imandra that the function terminates, for example by defining a "measure". See the notebook Proving Program Termination with Imandra for more details.
Our logic-mode definitions are allowed to call other definitions only if those other definitions have been admitted into the logic.
In order to define such a side-effecting function, we switch to program mode. We do this using the #program
directive.
In the terminal, we can identify that Imandra is in program mode by the angle bracket prompt (>
).
Now that we are in program mode, we have the full power of OCaml at our fingertips!
When we switch back to logic mode (using the #logic
directive), we can still refer to our program-mode definitions at the top level.
But we are forbidden from using them in our logic-mode definitions.
Often, we want to define a type in logic mode and then a related function in program mode, for example a pretty-printer. For this case we can use the [@@program]
annotation to define a one-off program-mode function while in logic mode.
type person = { name : string; favorite_color : string };;
let print_person (person : person) : string =
Printf.sprintf "%s prefers %s things" person.name person.favorite_color
[@@program];;
print_person { name = "Matt"; favorite_color = "green" };;
Sometimes we also need to use program-mode functions in order to generate logic-mode values, this can be done using the [@@reflect]
annotation:
This can be useful for several reasons, one of the most common ones is reading logic-mode values from files. Imandra also offers the lower-level facility Imandra.port
to port program-mode values into logic-mode locals:
let x = print_endline "debug"; 1 [@@program];;
Imandra.port "y" "x";;
y;;
That concludes our overview of Imandra's logic and program modes!