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