You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In reduce_info algorithm the call to get_bindings() is made in __init__, __call__ and __del__ methods.
In merge_sort it is made in __init__, saved to self.bindings, reused in __call__ but made again in __del__.
Similar patterns repeats across algorithms.
This issue is to track work to only make the call to get_bindings() in __init__ method, and reuse self.bingings in all others across algorithms.
The text was updated successfully, but these errors were encountered:
In
reduce_info
algorithm the call toget_bindings()
is made in__init__
,__call__
and__del__
methods.In
merge_sort
it is made in__init__
, saved toself.bindings
, reused in__call__
but made again in__del__
.Similar patterns repeats across algorithms.
This issue is to track work to only make the call to
get_bindings()
in__init__
method, and reuseself.bingings
in all others across algorithms.The text was updated successfully, but these errors were encountered: