CA rules parsers

Travis (.org) Crates.io Docs.rs 中文

Parsing rule strings of life-like and other cellular automata.

Currently the following rules are supported:

For non-Generations rules, four different notations are supported: * B/S notation (B3/S23) * S/B notation (23/3) * MAP strings for non-isotropic rules (MAPARYXfhZofugWaH7oaIDogBZofuhogOiAaIDogIAAgAAWaH7oaIDogGiA6ICAAIAAaIDogIAAgACAAIAAAAAAAA)

For Generations rules, four different notations are supported:

Please refer to Life Wiki for detailed definitions and notations of these rule strings.

Example:

```rust use ca_rules::ParseLife;

// Define a struct for your rule:

[derive(Debug, Eq, PartialEq)]

struct Rule { b: Vec, s: Vec, }

// Implement a parser trait for your rule: // The choice of the trait depends on the type of rules you want to parse. impl ParseLife for Rule { // Implement a function to construct the rule from b and s data: fn from_bs(b: Vec, s: Vec) -> Self { Rule { b, s } } }

// Then you can parse a rule string: let life = Rule::parserule("B3/S23").unwrap(); asserteq!( life, Rule { b: vec![3], s: vec![2, 3], } ) ```

For details, please refer to the doc.