gnugo-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnugo-devel] The OS X Problem...


From: Allan Crossman
Subject: [gnugo-devel] The OS X Problem...
Date: Wed, 9 Jan 2002 00:39:37 +0000

Hi,

Regarding the pessimism, I think we can be fairly certain the large array is to blame - it seems an array of 361x361 is slightly over the limit of what can be tolerated. For example:

#include <stdio.h>

int main(void) {
int thearray[361][361];
printf("Yo!\n");
return 0;
}

The above crashes. But:

#include <stdio.h>

int main(void) {
int thearray[361][360];
printf("Yo!\n");
return 0;
}

This doesn't. It's just a coincidence that the boundary is so close to what was being used.

Allan Crossman




reply via email to

[Prev in Thread] Current Thread [Next in Thread]