Skip to content

Commit 1a0fc95

Browse files
committed
Fixed functor syntax for ocaml 4.00.1 in solver_types
1 parent 22ebead commit 1a0fc95

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

solver/solver_types.mli

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@
1414
module type S = Solver_types_intf.S
1515

1616
module McMake :
17-
functor (E : Expr_intf.S)(Dummy : sig end) ->
17+
functor (E : Expr_intf.S) ->
18+
functor (Dummy : sig end) ->
1819
S with type term = E.Term.t and type formula = E.Formula.t and type proof = E.proof
1920
(** Functor to instantiate the types of clauses for a solver. *)
2021

2122
module SatMake :
22-
functor (E : Formula_intf.S)(Dummy : sig end) ->
23+
functor (E : Formula_intf.S) ->
24+
functor (Dummy : sig end) ->
2325
S with type term = E.t and type formula = E.t and type proof = E.proof
2426
(** Functor to instantiate the types of clauses for a solver. *)
2527

0 commit comments

Comments
 (0)