mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-12 14:00:42 -05:00
13 lines
171 B
OCaml
13 lines
171 B
OCaml
(** {1 DIMACS parser} *)
|
|
|
|
type t
|
|
|
|
val create : in_channel -> t
|
|
|
|
val parse_header : t -> int*int
|
|
|
|
val next_clause : t -> int list option
|
|
|
|
val iter : t -> int list Iter.t
|
|
|
|
|