merge latest changes

This commit is contained in:
Hui Liu
2024-01-24 13:30:08 -08:00
83 changed files with 1408 additions and 1273 deletions

View File

@@ -398,8 +398,8 @@ class RegTree : public Model {
if (!func(nidx)) {
return;
}
auto left = self[nidx].LeftChild();
auto right = self[nidx].RightChild();
auto left = self.LeftChild(nidx);
auto right = self.RightChild(nidx);
if (left != RegTree::kInvalidNodeId) {
nodes.push(left);
}