mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-09 04:35:35 -05:00
13 lines
265 B
OCaml
13 lines
265 B
OCaml
(* Copyright 2014 Guillaume Bury *)
|
|
|
|
module type S = sig
|
|
type clause
|
|
type lemma
|
|
|
|
val proven : clause -> bool
|
|
|
|
val add_assumption : clause -> unit
|
|
val add_th_lemma : clause -> lemma -> unit
|
|
val add_clause : clause -> clause list -> unit
|
|
|
|
end
|