A cache friendly and type safe expert/business rules system written in Rust.
Don't. It's not even Alpha quality, yet.
Eventually you'll be able to add a dependency ala
toml
[dependencies]
expert = "0.10"
And then write code similar to
```rust
extern crate expert;
// A fact type
pub struct Fact1 { id: usize, len: usize, }
// Another fact type
pub struct Fact2 { id: usize, height: usize }
mod example { // Creates a new expert system specifically for Fact1 and Fact2 expert!(Example; [Fact1, Fact2]); }
pub fn main() { use example::*;
// Create a custom rule builder
let mut builder = ExampleBuilder::new();
builder.
// Add a new rule named "rule"
rule("rule")
// When a Fact1 is inserted with self.id == 2 and self.len < 32
.when<Fact1>().eq("id", 2usize).lt("len", 32usize)
// And when a Fact2 is inserted with sef.id ==3 and self.height >= 64
.when<Fact2>().eq("id", 17usize).gte("height", 64usize)
.then()
// Add a new Fact1{id: 3, len: 20} to be available for return
.ret<Fact1>().field("id", 3usize).field("len", 20usize)
.end();
// Create a knowledge base to hold the read-only, in-memory representation of all of the rules let example_base = builder.build();
// Create a knowledge session/rule runtime let mut examplesession = examplebase.new_session();
let afact = Fact1{id: 2usize, len: 31usize}; let anotherfact = Fact2{id: 3usize, height: 60usize};
// Insert the facts examplesession.insert(afact); examplesession.insert(anotherfact);
// Resolve the rule consequences example_session.resolve();
let fact1returns: &[Fact1] =
```
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Serde by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.