We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22ebead commit 1a0fc95Copy full SHA for 1a0fc95
solver/solver_types.mli
@@ -14,12 +14,14 @@
14
module type S = Solver_types_intf.S
15
16
module McMake :
17
- functor (E : Expr_intf.S)(Dummy : sig end) ->
+ functor (E : Expr_intf.S) ->
18
+ functor (Dummy : sig end) ->
19
S with type term = E.Term.t and type formula = E.Formula.t and type proof = E.proof
20
(** Functor to instantiate the types of clauses for a solver. *)
21
22
module SatMake :
- functor (E : Formula_intf.S)(Dummy : sig end) ->
23
+ functor (E : Formula_intf.S) ->
24
25
S with type term = E.t and type formula = E.t and type proof = E.proof
26
27
0 commit comments