This commit is contained in:
Simon Cruanes 2021-10-11 23:19:24 -04:00
parent af901f54b1
commit 4308eba04d
No known key found for this signature in database
GPG key ID: 4AC01D0849AA62B6
2 changed files with 2 additions and 1 deletions

View file

@ -16,6 +16,7 @@ module Solver_arg = struct
let is_valid_literal _ = true let is_valid_literal _ = true
module P = Proof_stub module P = Proof_stub
type proof = P.t type proof = P.t
type proof_step = P.proof_step
end end
(** SMT solver, obtained from {!Sidekick_smt_solver} *) (** SMT solver, obtained from {!Sidekick_smt_solver} *)

View file

@ -587,7 +587,7 @@ module Make(A : ARG)
ty_st; ty_st;
cc = lazy ( cc = lazy (
(* lazily tie the knot *) (* lazily tie the knot *)
CC.create ~size:`Big self.tst; CC.create ~size:`Big self.tst self.proof;
); );
proof; proof;
th_states=Ths_nil; th_states=Ths_nil;