Module Smtzilla_utils.Regression_model
val score_of_float : float -> scoretype tree = | Leaf of score| Node of {feature : string;threshold : score;left : tree;right : tree;
}
type gb_model = {init_value : score;trees : tree list;
}val read_models_from_file : string -> (string * t) listval choose_best : (score * 'a) list -> 'a