4ba097a141
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
17 lines
297 B
Text
17 lines
297 B
Text
variables x1 x2 x3 : Bool
|
|
definition F : Bool := x1 /\ (x2 \/ x3)
|
|
|
|
(*
|
|
local env = get_environment()
|
|
local F = env:find_object("F"):get_value()
|
|
print(F)
|
|
|
|
function expr_size(e)
|
|
local r = 0
|
|
e:for_each(function(e, offset) r = r + 1 end)
|
|
return r
|
|
end
|
|
|
|
print(expr_size(F))
|
|
|
|
*)
|