conjure_oxide/
defaults.rs

1
2
3
4
5
6
7
8
/// Returns the default rule sets, excluding solver specific ones.
pub fn get_default_rule_sets() -> Vec<String> {
    vec![
        "Base".to_string(),
        "Constant".to_string(),
        "Bubble".to_string(),
    ]
}