Hi, I think there is a small error in the reference manual in chapter 13.12 (the linear algebra example). The vector x is allocated but not freed.
Frithjof
--- doc/examples/linalglu.c 2007-01-19 22:03:10.000000000 +0100 +++ doc/examples/linalglu.c.new 2007-01-19 22:03:40.000000000 +0100 @@ -31,5 +31,6 @@ gsl_vector_fprintf (stdout, x, "%g"); gsl_permutation_free (p); + gsl_vector_free(x); return 0; }
_______________________________________________ Bug-gsl mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-gsl
