dimacs 0.2.0

Utilities to parse files in DIMACS .cnf or .sat format which is useful for participating in the DIMACS SAT solver competitions.
Documentation
  • Coverage
  • 100%
    43 out of 43 items documented0 out of 0 items with examples
  • Size
  • Source code size: 108.76 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 8.48 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Robbepop/dimacs-parser
    8 3 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Robbepop

Build Status MIT licensed Crates.io Version Doc.rs Badge

DIMACS Parser

Utilities to parse files in DIMACS .cnf or .sat SAT format which is useful in participating in the DIMACS SAT solver competition.

Basically provides the following API:

fn parse_dimacs(input: &str) -> Result<Instance> { .. }