Source file dolmen_icnf.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module type Term = Ast_iCNF.Term
module type Statement = Ast_iCNF.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_iCNF.token
type statement = S.t
let env = []
end)(LexiCNF)(ParseiCNF.Make(L)(T)(S))