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
This would involve filtering the results in the three pick_algorithm methods for only ones that are marked as deterministic.
Since I don't want this to be a breaking change, let's add a 2nd method alongside pick_algorithm that looks like:
pubfnpick_algorithm(&self) -> ... {self.pick_algorithm_ex(false)}pubfnpick_algorithm_ex(&self,force_deterministic:bool) -> ... {// existing pick_algorithm code, but with the filtering based on force_deterministic passed in
....
}
The text was updated successfully, but these errors were encountered:
This would involve filtering the results in the three
pick_algorithm
methods for only ones that are marked as deterministic.Since I don't want this to be a breaking change, let's add a 2nd method alongside
pick_algorithm
that looks like:The text was updated successfully, but these errors were encountered: