mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-10 21:24:06 -05:00
- getting closer to having the SMT solver compile again - dummy proof implementation - DRUP proof implementation for pure SAT solver
15 lines
383 B
OCaml
15 lines
383 B
OCaml
|
|
(** Concrete implementation of {!Sidekick_core.TERM}
|
|
|
|
this module gathers most definitions above in a form
|
|
that is compatible with what Sidekick expects for terms, functions, etc.
|
|
*)
|
|
|
|
open Base_types
|
|
|
|
include Sidekick_core.TERM
|
|
with type Term.t = Term.t
|
|
and type Fun.t = Fun.t
|
|
and type Ty.t = Ty.t
|
|
and type Term.store = Term.store
|
|
and type Ty.store = Ty.store
|