On Sat, 2010-02-27 at 23:57 -0600, Elmer Fittery wrote: > On Sat, 2010-02-27 at 09:45 +0100, Johan Euphrosine wrote: > > Recently a bug get reported on 64 arch: > > https://gna.org/bugs/?func=detailitem&item_id=15273 > > I read this bug report and changed the code to reflect what I thought > it should be changed to. > > The bug report indicates changes that when I installed them caused > compile warnings/errors. The following is my differences. > > diff enumerate.h.backup enumerate.h > 622,623c622,623 > < _ncombo = (int *) malloc(num_sets * sizeof(int)); \ > < _curIndex = (int *) malloc(num_sets * sizeof(int)); \ > --- > > _ncombo = (int *) malloc(num_sets * sizeof(intptr_t)); \ > > _curIndex = (int *) malloc(num_sets * sizeof(intptr_t)); \ > 629c629 > < _curElem[_i] = (int *) malloc(set_sizes[_i] * sizeof(int)); \ > --- > > _curElem[_i] = (int *) malloc(set_sizes[_i] * sizeof(intptr_t)); \ > > I ran tests on this code and verified it works > > When I ran the "python test.py" I still crashed on my machine. Probably > something to do with 64 bit architecture.
Yes it would be usefull to isolate which, line of test.py trigger the crash. > > The test you ran on 27th of Feb 2010 08:35:12 AM didn't fail. What > arcitecture are you using? x86 > This is all curious because as I said, I got the poker-web-service > running on my machine (which uses poker-eval) and it works fine. I guess this is because test.py, run some evaluation, that you haven't tried (yet) on poker-eval-webservice. PS: please Cc: [email protected], when answering. -- Johan Euphrosine <[email protected]> Development and services around Free Software http://www.aminche.com/
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Pokersource-users mailing list [email protected] https://mail.gna.org/listinfo/pokersource-users
