| 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); |
| 99 | dlib::deserialize(item.leaf_values, in); |
| 100 | } |
| 101 | }; |
| 102 | |
| 103 | // ------------------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected