Skip to content

Commit

Permalink
Fix dummy z3 backend with compatible IO interface
Browse files Browse the repository at this point in the history
  • Loading branch information
rmonat committed Dec 8, 2023
1 parent 4413af3 commit 1d2d7a6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions compiler/verification/z3backend.dummy.ml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ module Backend = struct

type vc_encoding = unit

let print_encoding _ _ = dummy ()

type model = unit
type solver_result = ProvenTrue | ProvenFalse of model option | Unknown

let solve_vc_encoding _ _ = dummy ()
let print_model _ _ = dummy ()
let is_model_empty _ = dummy ()

let translate_expr _ _ _ = dummy ()
let encode_asserts _ _ _ = dummy ()
end
Expand Down

0 comments on commit 1d2d7a6

Please sign in to comment.