Skip to content

Commit

Permalink
fixed criterion.pxd with new signature
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Daiha <[email protected]>
  • Loading branch information
gdaiha committed May 10, 2024
1 parent c0c5e6d commit fc6bb84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion econml/tree/_criterion.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ cdef class Criterion:
cdef void node_value(self, double* dest) nogil
cdef void node_jacobian(self, double* dest) nogil
cdef void node_precond(self, double* dest) nogil
cdef double impurity_improvement(self, double impurity) nogil
cdef double impurity_improvement(self, double impurity_parent,
double impurity_left,
double impurity_right) nogil
cdef double proxy_impurity_improvement(self) nogil
cdef double min_eig_left(self) nogil
cdef double min_eig_right(self) nogil
Expand Down

0 comments on commit fc6bb84

Please sign in to comment.