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