mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
6 lines
169 B
OCaml
6 lines
169 B
OCaml
open Types_
|
|
|
|
type t = { lits: Lit.t list; pr: Proof.Pterm.delayed }
|
|
|
|
let pp out (self : t) =
|
|
Fmt.fprintf out "(@[resolved-expl@ %a@])" (Util.pp_list Lit.pp) self.lits
|