| 1605 | } |
| 1606 | |
| 1607 | int LGBM_BoosterSetLeafValue(BoosterHandle handle, |
| 1608 | int tree_idx, |
| 1609 | int leaf_idx, |
| 1610 | double val) { |
| 1611 | API_BEGIN(); |
| 1612 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1613 | ref_booster->SetLeafValue(tree_idx, leaf_idx, val); |
| 1614 | API_END(); |
| 1615 | } |
| 1616 | |
| 1617 | int LGBM_BoosterFeatureImportance(BoosterHandle handle, |
| 1618 | int num_iteration, |
nothing calls this directly
no test coverage detected