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