A parser for the FlatZinc modelling language version 2.4.3.
text
❯ cargo build --release
In your Cargo.toml
toml
[dependencies]
flatzinc = "0.2"
In your code:
```rust use nom::error::{convert_error, VerboseError}; use nom::Err; use flatzinc
match flatzinc::model::
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