| 89 | } |
| 90 | |
| 91 | friend void serialize (const regression_tree& item, std::ostream& out) |
| 92 | { |
| 93 | dlib::serialize(item.splits, out); |
| 94 | dlib::serialize(item.leaf_values, out); |
| 95 | } |
| 96 | friend void deserialize (regression_tree& item, std::istream& in) |
| 97 | { |
| 98 | dlib::deserialize(item.splits, in); |
nothing calls this directly
no test coverage detected