Eric Germaneau writes: > I'm using random number generators (_gsl version_: 1.5 on a linux > cluster) and after several thousand times I've got get this error: > gsl: symmv.c:79: ERROR: ... > In fact I tried two random number generators (mt19937, taus) which have > given rise to different errors: > > *mt19937:* /gsl: symmv.c:79: ERROR: failed to allocate space for _sines_/ > *taus:* /gsl: symmv.c:65: ERROR: failed to allocate space for > _subdiagonal_/_ _ > > Does someone has any idea about how to solve this probleme?
It's probably a memory leak in your program... I don't think the random number generator has anything to do with it. Look up 'mtrace' in the GNU C Library reference manual for one way to debugging memory leaks. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ _______________________________________________ Help-gsl mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gsl
