Source file dolmen_dimacs.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module type Term = Ast_dimacs.Term
module type Statement = Ast_dimacs.Statement
module Make
(L : Dolmen_intf.Location.S)
(T : Term with type location := L.t)
(S : Statement with type location := L.t and type term := T.t) =
Dolmen_std.Transformer.Make(L)(struct
type token = Tokens_dimacs.token
type statement = S.t
let env = []
end)(LexDimacs)(ParseDimacs.Make(L)(T)(S))