Rust bindings to the clingo library. Clingo version 5.3.0.
cargo build
cargo test
cargo run --example=ast 0
cargo run --example=backend 0
cargo run --example=configuration
cargo run --example=control 0
cargo run --example=model 0
cargo run --example=propagator 0
cargo run --example=solve-async 0
cargo run --example=statistics 0
cargo run --example=symbol 0
cargo run --example=symbolic-atoms 0
cargo run --example=theory-atoms 0
cargo run --example=inject-terms 0
cargo run --example=version
clingo_derive
crateThe clingo_derive
crate helps easing the use of rust data types as facts.
In your Cargo.toml
add:
[dependencies]
clingo-rs = "0.4.3"
clingo-derive = "*"
In your source write:
use clingo_derive::*;
use clingo::FactBase;
#[derive(ToSymbol)]
struct Point {
x: i32,
y: i32,
}
let p = Point{ x:4, y:2 };
let fb = FactBase::new();
fb.insert(p);
The crate defines a [Cargo feature] that allows to use the clingo library via dynamic linking.
With dynamic linking enabled the clingo library is not build for static linking but it is assumed that a clingo dynamic library is installed on the system.
The recommended way to use the optional dynamic linking support is as follows.
toml
[dependencies]
clingo = { version = "0.4.3", features = ["dynamic_linking"] }
Any contribution intentionally submitted for inclusion in the work by you, shall be licensed under the terms of the MIT license without any additional terms or conditions.