| Crates.io | satellite-format |
| lib.rs | satellite-format |
| version | 0.1.0 |
| created_at | 2026-01-18 03:26:27.838429+00 |
| updated_at | 2026-01-18 03:26:27.838429+00 |
| description | File format parsing and serialization for Satellite |
| homepage | |
| repository | https://github.com/rand0mdevel0per/satellite |
| max_upload_size | |
| id | 2051705 |
| size | 48,423 |
File format parsing and serialization for Satellite SAT solver.
.cnf, .dimacs)use satellite_format::{DimacsParser, SatelliteJson};
// Parse DIMACS file
let problem = DimacsParser::parse_file("problem.cnf")?;
// Export to JSON
let json = SatelliteJson::export(&problem)?;
MIT