mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
[feature] Allow arbitrary proof types in DummyTheory
This commit is contained in:
parent
2e6ff522e5
commit
1ce3973f9e
1 changed files with 2 additions and 2 deletions
|
|
@ -12,12 +12,12 @@
|
||||||
|
|
||||||
module type S = Solver_intf.S
|
module type S = Solver_intf.S
|
||||||
|
|
||||||
module DummyTheory(F : Formula_intf.S with type proof = unit) = struct
|
module DummyTheory(F : Formula_intf.S) = struct
|
||||||
(* We don't have anything to do since the SAT Solver already
|
(* We don't have anything to do since the SAT Solver already
|
||||||
* does propagation and conflict detection *)
|
* does propagation and conflict detection *)
|
||||||
|
|
||||||
type formula = F.t
|
type formula = F.t
|
||||||
type proof = unit
|
type proof = F.proof
|
||||||
type level = unit
|
type level = unit
|
||||||
|
|
||||||
type slice = {
|
type slice = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue