Greetings!
I'm trying to use the Bidder module (z3b version) in your repository, but encountered the following problem.
I first created a bidder using a BidderFactory
self.bidder = BidderFactory.default_bidder()
then
self.bidder.find_call_for(hand, call_history)
which raised the following exception
File "C:\saycbridge-master\src\z3b\bidder.py", line 207, in __exit__
_solver_pool.restore(previous_history._solver.take())
AttributeError: 'functools._lru_cache_wrapper' object has no attribute 'take'
It seems that the _solver is missing a take() method. I'm wondering what's the expected behavior of take() here. Is there a possible workaround? Thanks.
Greetings!
I'm trying to use the Bidder module (z3b version) in your repository, but encountered the following problem.
I first created a bidder using a BidderFactory
then
which raised the following exception
It seems that the _solver is missing a take() method. I'm wondering what's the expected behavior of take() here. Is there a possible workaround? Thanks.