A parser for the FlatZinc modelling language.
text
❯ cargo build --release
rust
match flatzinc::model::<VerboseError<&str>>(&buf) {
Ok((_, result)) => println!("{:#?}", result),
Err(Err::Error(e)) | Err(Err::Failure(e)) => {
println!("Failed to parse flatzinc!\n{}", convert_error(&buf, e))
}
Err(e) => println!("Failed to parse flatzinc: {:?}", e),
}
An example parser can be found in the examples/fz-parser.rs
To run the parser call:
text
❯ cargo run --example fz-parser -- -i jobshop.fzn
The binary can be found under target/release/examples/fz-parser