mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-13 14:30:33 -05:00
10 lines
231 B
OCaml
10 lines
231 B
OCaml
(** {2 Congruence Closure} *)
|
|
|
|
open Sidekick_core
|
|
module type S = Sidekick_core.CC_S
|
|
|
|
module Make (A: CC_ARG)
|
|
: S with module T = A.T
|
|
and module Lit = A.Lit
|
|
and module P = A.P
|
|
and module Actions = A.Actions
|