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