Fix a rename that was missed in #10878.

So that rehearsal tests pass.
This commit is contained in:
Daniël de Kok 2023-01-10 19:26:47 +01:00
parent f638195bd7
commit 5fd419caf8

View File

@ -33,7 +33,7 @@ class GreedyBatch(Batch):
self._next_states = self._moves.transition_states(self._next_states, scores) self._next_states = self._moves.transition_states(self._next_states, scores)
def advance_with_actions(self, actions): def advance_with_actions(self, actions):
self._next_states = self._moves.apply_transitions(self._next_states, actions) self._next_states = self._moves.apply_actions(self._next_states, actions)
def get_states(self): def get_states(self):
return self._states return self._states