diff options
Diffstat (limited to 'pokemontools/lz.py')
-rw-r--r-- | pokemontools/lz.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pokemontools/lz.py b/pokemontools/lz.py index f9d1dfe..aef5c64 100644 --- a/pokemontools/lz.py +++ b/pokemontools/lz.py @@ -210,6 +210,10 @@ class Compressed: self.find_lookback(method, address) def find_lookback(self, method, address=None): + """Temporarily stubbed, because the real function doesn't run in polynomial time.""" + return 0, None + + def broken_find_lookback(self, method, address=None): if address is None: address = self.address |