Open unhandyandy opened 10 months ago
I will try and run this problem and see what happens
It's happening for all the problems which involves proving cyclic points (i.e. ? cyclic a b c d). Any work around for this?
@DataStunner That's an interesting lead, thanks.
OK, it seems there's a mistake in line 705 of alphageometry.py. Try changing
(a, b, c), *ps = points
to
a, b, c, *ps = points
That seems to work for me.
@unhandyandy Its working now. Thanks!
I'm leaving this open till the devs fix it in the repo.
@unhandyandy I found the "mistake" in the numericals.py file, not alphageometry.py, and its working for me now.
OK, it seems there's a mistake in line 705 of alphageometry.py. Try changing
(a, b, c), *ps = points
toa, b, c, *ps = points
That seems to work for me.
When running AG on imo_2005_p5, got this error.
TypeError: cannot unpack non-iterable Point object: