pub fn parse_cnf<I, O>(
input: &mut I,
output: &mut O,
) -> Result<(), Error<<O as Output>::Error>>Expand description
Parses a CNF formatted input stream into the given output.
ยงErrors
- If the CNF input is malformed.
- If the output triggers a custom error.