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