wip: adapt CC to new proofs

This commit is contained in:
Simon Cruanes 2021-09-29 22:19:16 -04:00
parent df40b5a5c1
commit 04f1ba063d
No known key found for this signature in database
GPG key ID: 4AC01D0849AA62B6
2 changed files with 4 additions and 1 deletions

View file

@ -16,6 +16,7 @@ module Make (A: CC_ARG)
: S with module T = A.T
and module Lit = A.Lit
and type proof = A.proof
and type step_id = A.step_id
and module Actions = A.Actions
= struct
module T = A.T
@ -27,7 +28,8 @@ module Make (A: CC_ARG)
type lit = Lit.t
type fun_ = T.Fun.t
type proof = A.proof
type dproof = proof -> unit
type step_id = A.step_id
type pstep = proof -> step_id
type actions = Actions.t
module Term = T.Term

View file

@ -7,4 +7,5 @@ module Make (A: CC_ARG)
: S with module T = A.T
and module Lit = A.Lit
and type proof = A.proof
and type step_id = A.step_id
and module Actions = A.Actions