-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
|
||
(* This file is free software, part of dolmen. See file "LICENSE" formore information *) | ||
|
||
(** Dimacs language input *) | ||
(** iCNF language input *) | ||
|
||
module type Term = Ast_iCNF.Term | ||
module type Statement = Ast_iCNF.Statement | ||
(** Implementation requirement for the Dimacs format. *) | ||
(** Implementation requirement for the iCNF format. *) | ||
|
||
module Make | ||
(L : ParseLocation.S) | ||
(T : Term with type location := L.t) | ||
(S : Statement with type location := L.t and type term := T.t) : | ||
Language_intf.S with type statement = S.t | ||
(** Functor to generate a parser for the dimacs format. *) | ||
(** Functor to generate a parser for the iCNF format. *) |